mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
14 lines
312 B
Bash
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' \
|
|
"
|