signoz-explaining-dashboards

signoz-explaining-dashboards is a skill for Claude Code from SigNoz/agent-skills. It costs 134 tokens per session (2,449 once invoked), scanned A, original, MIT.

A SigNoz dashboard explanation skill for describing existing monitoring screens in operational language. It explains panels, queries, filters, variables, and what users should watch for.

In plain words
What is it for?
Use it to walk through an existing SigNoz dashboard and interpret its panels. It can explain what healthy or unhealthy behavior may look like based on the dashboard's contents.
Why use it?
It helps people understand what a dashboard actually measures instead of guessing from its title. SigNoz is an observability tool for examining software performance and operational data.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the signoz plugin — 13 skills, 2 hooks shipped together

Good fit Use it to walk through an existing SigNoz dashboard and interpret its panels. It can explain what healthy or unhealthy behavior may look like based on the dashboard's contents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/signoz/agent-skills/signoz-explaining-dashboards
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.

Any agent
npx skills add SigNoz/agent-skills --skill signoz-explaining-dashboards
Clone the repo
git clone --depth 1 https://github.com/SigNoz/agent-skills

Made for: Claude Code.

Or install signoz, the plugin that ships this one along with the rest of its 13 skills, 2 hooks.

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 signoz-explaining-dashboards

README.md
[![agentmods](https://agentmods.dev/badge/skills/signoz/agent-skills/signoz-explaining-dashboards/github.svg)](https://agentmods.dev/skills/signoz/agent-skills/signoz-explaining-dashboards)
Your own site
<a href="https://agentmods.dev/skills/signoz/agent-skills/signoz-explaining-dashboards"><img src="https://agentmods.dev/badge/skills/signoz/agent-skills/signoz-explaining-dashboards/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for signoz-explaining-dashboards

Your own site · 80×15
<a href="https://agentmods.dev/skills/signoz/agent-skills/signoz-explaining-dashboards"><img src="https://agentmods.dev/badge/skills/signoz/agent-skills/signoz-explaining-dashboards.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 134 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,449 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00134 $0.02449
Opus 5 $0.00067 $0.01224
Sonnet 5 $0.00027 $0.00490
Haiku 4.5 $0.00013 $0.00245

Measured 12d ago against content hash 10498f9ce62d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

signoz-explaining-dashboards 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 12d 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/signoz/skills/signoz-explaining-dashboards/SKILL.md · 214 lines

How it starts

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

Dashboard Explain

Prerequisites

This skill calls SigNoz MCP server tools (signoz_get_dashboard, signoz_list_dashboards). Before running the workflow, confirm the signoz_* tools are available. If they are not, the SigNoz MCP server is not installed or configured; run signoz-mcp-setup first to initialize or repair the MCP connection. Do not guess at a dashboard's contents from its title alone.

When to use

Use this skill when the user asks to:

  • Understand, explain, or interpret an existing dashboard
  • Get a walkthrough of what panels show and why they matter
  • Know what to watch for or what healthy/unhealthy looks like on a dashboard
  • Understand the variables, filters, or queries on a dashboard

Do NOT use when:

  • User wants to modify an existing dashboard → signoz-modifying-dashboards

Instructions

Step 1: Identify the target dashboard

Use a supplied id or a dashboard resource that includes its id directly. For any name-only request, call signoz_list_dashboards and resolve the name to an id, matching on spec.display.name. Cover the whole listing: narrow with the filter argument, re-run unfiltered when it comes back empty, and page by raising offset by limit until you have covered total. Never pass a dashboard name to signoz_get_dashboard or conclude it is missing from the first page.

If multiple dashboards match, present the candidates and ask which one to explain.

Step 2: Fetch the full dashboard configuration

Call signoz_get_dashboard with the dashboard id. This is mandatory; you need the complete JSON to explain the dashboard accurately. Never guess based on the title alone.

Examine the response to understand:

  • spec.display.name, .description, tags: the dashboard identity and author-provided context
  • spec.variables: dashboard-level filters (dropdowns the user can change)
  • spec.panels (a map keyed by panel id): the panels, their plugin kinds, titles, and queries
  • spec.layouts: Grid entries placing panels in the 12-column grid via content.$ref
  • each Grid's spec.display.title: the section a panel belongs to

Read the full file on GitHub · 214 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 214 lines · 134 tokens per session scan A 10498f9ce62d

Subscribe to this mod's changes

signoz-explaining-dashboards is a skill published in the GitHub repository SigNoz/agent-skills (16 stars, last pushed 10d ago), licensed MIT. It adds 134 tokens to every session and 2,449 once invoked, about $0.0007 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-30.

Related

Other skills, from other repositories

agent-observability

Instrument an LLM agent so failures are diagnosable, traces are replayable, and evals can run against production data. Use when the user is moving an agent past prototype and mentions tracing, spans, OpenTelemetry, LangSmith, Langfuse, Arize, OpenLLMetry, structured logs, GenAI semantic conventions, or asks "how do I…

cobusgreyling/agent-skills · 92 tokens

documentation-and-adrs

Records decisions and documentation. Use when you need to document an architecture decision (ADR) or the reasoning behind a design choice, when changing public APIs, shipping features, or when you need to record context that future engineers and agents will need to understand the codebase.

addyosmani/agent-skills · 58 tokens

idea-refine

Refines raw ideas into sharp, actionable concepts through structured divergent and convergent thinking. Use when an idea is still vague, when you need to stress-test assumptions before committing to a plan, or when you want to expand options before converging on one. Triggers on "ideate", "refine this idea", or…

addyosmani/agent-skills · 75 tokens

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

chinese-documentation

A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.

jnMetaCode/superpowers-zh · 62 tokens

skillshare-implement-feature

Implement a feature from a spec file or description using TDD workflow. Use this skill whenever the user asks to: add a new CLI command, implement a feature from a spec, build new functionality, add a flag, create a new internal package, or write Go code for skillshare. This skill enforces test-first development…

runkids/skillshare · 114 tokens