grafana

grafana is a skill for Claude Code, Codex from vmkteam/claude-plugins. It costs 50 tokens per session (997 once invoked), scanned A, original, MIT.

A connection to Grafana, a web tool for viewing dashboards, metrics, logs, and alerts from monitoring systems.

In plain words
What is it for?
Use it to find dashboards, query Prometheus metrics, search Loki logs, inspect data sources, and look for alerts.
Why use it?
It lets the agent retrieve operational data through Grafana instead of accessing each monitoring system separately.

Skill for Claude CodeCodex

Part of the vmkteam-developer plugin — 35 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/vmkteam/claude-plugins/grafana
Any agent
npx skills add vmkteam/claude-plugins --skill grafana
Clone the repo
git clone --depth 1 https://github.com/vmkteam/claude-plugins

Made for: Claude Code, Codex.

Or install vmkteam-developer, the plugin that ships this one along with the rest of its 35 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for grafana

README.md
[![agentmods](https://agentmods.dev/badge/skills/vmkteam/claude-plugins/grafana.svg)](https://agentmods.dev/skills/vmkteam/claude-plugins/grafana)
Your own site
<a href="https://agentmods.dev/skills/vmkteam/claude-plugins/grafana"><img src="https://agentmods.dev/badge/skills/vmkteam/claude-plugins/grafana.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 997 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00050 $0.00997
Opus 5 $0.00025 $0.00498
Sonnet 5 $0.00010 $0.00199
Haiku 4.5 $0.00005 $0.00100

Measured 4d ago against content hash 574430f87ade, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

grafana scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/developer/skills/grafana/SKILL.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Grafana — дашборды и proxy

Grafana для дашбордов, метрик (Prometheus) и логов (Loki). Доступ через pcurl.

Конкретные хосты, datasource IDs/UIDs, dashboard UIDs определяются при онбординге.

Подключение

Profile: @{grafana_profile}
Base URL: https://{grafana_host}/api

Команды pcurl

Дашборды

pcurl @{profile} 'https://{host}/api/search?type=dash-db' -s
pcurl @{profile} 'https://{host}/api/search?type=dash-db&query={service}' -s
pcurl @{profile} 'https://{host}/api/dashboards/uid/{dashboard_uid}' -s

Datasources

pcurl @{profile} 'https://{host}/api/datasources' -s

Prometheus через proxy

Два способа (оба работают, UID-based — предпочтительный):

# UID-based (Grafana 9+, рекомендуется)
pcurl @{profile} 'https://{host}/api/datasources/uid/{prom_uid}/resources/api/v1/query?query={promql}' -s
pcurl @{profile} 'https://{host}/api/datasources/uid/{prom_uid}/resources/api/v1/query_range?query={promql}&start='$(date -v-1H +%s)'&end='$(date +%s)'&step=60' -s

# Legacy ID-based (работает, но deprecated)
pcurl @{profile} 'https://{host}/api/datasources/proxy/{prom_id}/api/v1/query?query={promql}' -s

Loki через proxy

# UID-based (рекомендуется) — путь /resources/ БЕЗ /loki/api/v1/
pcurl @{profile} "https://{host}/api/datasources/uid/{loki_uid}/resources/query_range" -s -G \
  --data-urlencode 'query={logql}' \
  --data-urlencode "start=$(date -v-1H +%s)000000000" \
  --data-urlencode "end=$(date +%s)000000000" \
  --data-urlencode 'limit=50'

# Labels
pcurl @{profile} 'https://{host}/api/datasources/uid/{loki_uid}/resources/labels' -s

# Legacy ID-based (работает, но deprecated)
pcurl @{profile} "https://{host}/api/datasources/proxy/{loki_id}/loki/api/v1/query_range" -s -G \
  --data-urlencode 'query={logql}' \
  --data-urlencode "start=$(date -v-1H +%s)000000000" \
  --data-urlencode "end=$(date +%s)000000000" \
  --data-urlencode 'limit=50'

Annotations (деплои, инциденты)

pcurl @{profile} 'https://{host}/api/annotations?from='$(date -v-1H +%s)000'&to='$(date +%s)000'&limit=50' -s
pcurl @{profile} 'https://{host}/api/annotations?dashboardUID={uid}&from='$(date -v-24H +%s)000'&to='$(date +%s)000 -s

Read the full file on GitHub · 86 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 86 lines · 50 tokens per session scan A 574430f87ade

Subscribe to this mod's changes

grafana is a skill published in the GitHub repository vmkteam/claude-plugins (7 stars, last pushed 4mo ago), licensed MIT. It adds 50 tokens to every session and 997 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

cloud-architect

Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…

Jeffallan/claude-skills · 71 tokens

azmon-mirroredcatalogs-operations-cli

Brings Azure Monitor, Application Insights, and Log Analytics telemetry into Fabric as Eventhouse external delta tables and correlates it with business data. Use to onboard observability data, judge whether latency or availability affected revenue, or build a Real-Time dashboard and Operations Agent over it.

microsoft/skills-for-fabric · 66 tokens

atmos-auth

Authentication and identity management: providers (SSO/SAML/OIDC/GCP/Atmos Pro), identities, keyring, identity chaining, login/exec/shell/console, and github/sts for private GitHub access.

cloudposse/atmos · 48 tokens

terraform-search-import

Discover existing cloud resources using Terraform Search queries and bulk import them into Terraform management. Use when bringing unmanaged infrastructure under Terraform control, auditing cloud resources, or migrating to IaC.

hashicorp/agent-skills · 39 tokens

x-scorecard

OpenSSF Scorecard for assessing open source project security. Check security best practices and compliance. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 57 tokens

ssh-mcp-helper

Use when 用户希望安装、配置或新增 ssh-mcp-server 的 MCP 连接(如「帮我装一下 ssh-mcp-server」「给 Cursor/Claude Code 配置 SSH MCP」「在已有 MCP 里加一台远程主机」「ssh-mcp-server 的 mcp.json 怎么写」)。技能通过逐步问答收集主机、认证、传输模式、命令限制等参数,并把生成的 mcpServers JSON 片段写入对应客户端的配置文件。.

classfang/ssh-mcp-server · 110 tokens