Files
oam/snippets/grafana.sh
2025-01-06 17:37:39 +01:00

14 lines
312 B
Bash

#!/usr/bin/env sh
# Export all existing dashboards by ID
curl -sS \
-H 'Authorization: Basic YWRtaW46YWRtaW4=' \
'http://grafana:3000/api/search' \
| jq -r '.[].uid' - \
| parallel " \
curl -sS \
-H 'Authorization: Basic YWRtaW46YWRtaW4=' \
'http://grafana:3000/api/dashboards/uid/{}' \
> '{}.json' \
"