Created
October 4, 2024 03:39
-
-
Save jessitron/7d9366910e4f035fb2dfddaae5dce4d4 to your computer and use it in GitHub Desktop.
Add a column for dataset name. Requires 'jq' and 'curl', and HONEYCOMB_API_KEY set to a configuration key with 'Manage columns' perm
This file contains 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
#!/bin/bash | |
# create a derived column called 'dc.dataset' in each dataset, containing the name of the dataset. | |
# Then, query in Honeycomb: all datasets, count, group by dc.dataset | |
# and find out where they are! | |
# set -x | |
# Check if HONEYCOMB_API_KEY is set | |
if [ -z "$HONEYCOMB_API_KEY" ]; then | |
echo "no HONEYCOMB_API_KEY environment variable" | |
exit 0 # this is not an error, just the state of things | |
fi | |
# Honeycomb API base URL | |
BASE_URL="https://api.honeycomb.io/1" | |
# Fetch all datasets in the environment | |
datasets=$(curl -s -H "X-Honeycomb-Team: $HONEYCOMB_API_KEY" \ | |
-H "Content-Type: application/json" \ | |
"$BASE_URL/datasets" | jq -r '.[].slug') | |
# Check if the curl command executed at all | |
if [ $? -ne 0 ]; then | |
echo "Error: Failed to fetch data from Honeycomb API." | |
exit 1 | |
fi | |
echo "Datasets found: " | |
echo $datasets | |
# Loop through each dataset | |
for dataset in $datasets; do | |
echo "Processing dataset: $dataset" | |
# Derived column data | |
derived_column_data=$(cat <<EOF | |
{ | |
"alias": "dc.dataset", | |
"expression": "COALESCE(\"$dataset\")", | |
"description": "Where is this event?" | |
} | |
EOF | |
) | |
# Create derived column for the dataset | |
response=$(curl -s -X POST "$BASE_URL/derived_columns/$dataset" \ | |
-H "X-Honeycomb-Team: $HONEYCOMB_API_KEY" \ | |
-H "Content-Type: application/json" \ | |
-d "$derived_column_data") | |
echo "result: $?" | |
# Check if the derived column was created successfully | |
if echo "$response" | grep -q '"id"'; then | |
echo "Derived column created successfully for dataset: $dataset" | |
else | |
echo "Failed to create derived column for dataset: $dataset. Response: $response" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment