LaunchKit · 2026
Back to Skills

rpe-grafana

Read current values from Grafana dashboards without knowing the underlying queries.

0
368 downloads
by @darkstards9

Setup & Installation

openclaw skills install @darkstards9/rpe-grafana

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install rpe-grafana

Version History

v1.0.2Mar 6, 2026 - Version note by skill developer:

Fixed API incompatibility

What This Skill Does

Reads current values from Grafana dashboards by navigating to panels by name, without requiring knowledge of the underlying query language. Works with any datasource Grafana supports, including Prometheus, InfluxDB, and MySQL. A Viewer role on the Grafana instance is sufficient.

Lets you retrieve Grafana panel values without learning PromQL, SQL, or any datasource-specific query syntax.

When to use it

  • Check current CPU usage from a server monitoring dashboard
  • Look up today's sales totals shown on a business metrics panel
  • Retrieve sensor readings from an IoT dashboard
  • List all available dashboards in a Grafana instance
  • Get the latest error rate for a service by panel name

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: What is the current memory usage shown on the Infrastructure dashboard?

AGENT
  1. 1Call grafana_list_dashboards to find the dashboard UID for 'Infrastructure'
  2. 2Call grafana_list_panels with that UID to locate the memory usage panel and its ID
  3. 3Call grafana_query_panel with the dashboard UID and panel ID
  4. 4Parse the returned lastValue and unit fields
OUTPUT

Memory usage: 6.2 GB (of 16 GB), as of the last hour

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

GRAFANA_URL environment variable (Grafana base URL)GRAFANA_USER environment variable (username)GRAFANA_PASSWORD environment variable (password or API key)Grafana account with at least Viewer role