8.4k★by mrgoodb
grafana – OpenClaw Skill
grafana is an OpenClaw Skills integration for coding workflows. Manage Grafana dashboards, data sources, and alerts via API. Visualize metrics and logs.
8.4k stars1.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | grafana |
| description | Manage Grafana dashboards, data sources, and alerts via API. Visualize metrics and logs. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/grafana |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/grafana |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
1.0 KBSKILL.md
name: grafana description: Manage Grafana dashboards, data sources, and alerts via API. Visualize metrics and logs. metadata: {"clawdbot":{"emoji":"📉","requires":{"env":["GRAFANA_URL","GRAFANA_API_KEY"]}}}
Grafana
Observability dashboards.
Environment
export GRAFANA_URL="https://grafana.example.com"
export GRAFANA_API_KEY="xxxxxxxxxx"
List Dashboards
curl "$GRAFANA_URL/api/search?type=dash-db" -H "Authorization: Bearer $GRAFANA_API_KEY"
Get Dashboard
curl "$GRAFANA_URL/api/dashboards/uid/{uid}" -H "Authorization: Bearer $GRAFANA_API_KEY"
List Data Sources
curl "$GRAFANA_URL/api/datasources" -H "Authorization: Bearer $GRAFANA_API_KEY"
Create Alert Rule
curl -X POST "$GRAFANA_URL/api/v1/provisioning/alert-rules" \
-H "Authorization: Bearer $GRAFANA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"title": "High CPU", "condition": "A", "data": [...]}'
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install grafana?
Run openclaw add @mrgoodb/grafana in your terminal. This installs grafana into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/grafana. Review commits and README documentation before installing.
