skills$openclaw/grafana
mrgoodb8.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

namegrafana
descriptionManage Grafana dashboards, data sources, and alerts via API. Visualize metrics and logs. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/grafana
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/grafana
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains grafana in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
1.0 KB
SKILL.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"
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": [...]}'
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.