Skip to content

Instantly share code, notes, and snippets.

@bixu
Created November 11, 2015 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bixu/863f43e2329c72e61b92 to your computer and use it in GitHub Desktop.
Save bixu/863f43e2329c72e61b92 to your computer and use it in GitHub Desktop.
Report your deployments to Circonus
#!/bin/bash
APP_NAME="<app name>"
API_TOKEN="<api token>"
TIME=$(date +%s)
curl --user $APP_NAME:$API_TOKEN \
-H "Accept: application/json" \
-X POST \
--data-binary "{\"category\": \"Deployment\",\"title\":\"Deployed $APP_NAME\",\"description\":\"Deployed revision X.X.X\",\"start\": $TIME,\"stop\":$TIME}" \
https://api.circonus.com/annotation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment