๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/opt/homebrew/bin/bash | |
| export QT_QPA_FONTDIR=/System/Library/Fonts | |
| COMPONENTS=$(jq -r 'select (.message == "Non-zero metrics in the last 30s") | .component.id' *.ndjson | sort -u) | |
| SAFE_COMPONENTS=() | |
| for COMPONENT in $COMPONENTS | |
| do | |
| SAFE_COMPONENT=$(echo "$COMPONENT" | tr '/' '_') | |
| SAFE_COMPONENTS+=($SAFE_COMPONENT) |