Install
openclaw skills install rpe-grafanaRead current values from Grafana dashboards without knowing the underlying queries. Use when: asked about values visible in a Grafana dashboard (sensor readi...
openclaw skills install rpe-grafanaRead current values from any Grafana dashboard without writing queries. The plugin navigates by dashboard and panel name, extracts the panel's existing query configuration, and returns a compact summary — no PromQL, SQL, or datasource knowledge required.
Works with any Grafana datasource (Prometheus, InfluxDB, MySQL, …).
✅ USE this skill when:
❌ DON'T use this skill when:
Add to your openclaw.json:
{
"plugins": {
"entries": {
"rpe-grafana": {
"enabled": true,
"config": {
"url": "http://your-grafana:3000",
"user": "your-username",
"password": "your-password"
}
}
}
}
}
Or set environment variables:
GRAFANA_URL - Grafana base URLGRAFANA_USER - UsernameGRAFANA_PASSWORD - Password or API keyList all available dashboards.
Parameters: none
Returns: [{ uid, title }]
List all panels in a dashboard.
Parameters:
dashboard_uid (required) - Dashboard UID from grafana_list_dashboardsReturns: [{ id, title }]
Read the current data for a specific panel. Fetches the panel's query configuration from the dashboard and executes it via Grafana's datasource API — no query language knowledge needed.
Parameters:
dashboard_uid (required) - Dashboard UIDpanel_id (required) - Panel ID from grafana_list_panelsfrom (optional) - Start of time range (default: now-1h)to (optional) - End of time range (default: now)Returns: [{ refId, name, lastValue, unit }]
grafana_list_dashboards → find the dashboard UIDgrafana_list_panels → find the panel ID by titlegrafana_query_panel → get the current value