signoz-investigating-alerts

signoz-investigating-alerts is a skill for Claude Code from SigNoz/agent-skills. It costs 138 tokens per session (6,304 once invoked), scanned A, original, MIT.

A SigNoz procedure for finding why a particular alert fired by comparing its signal with nearby metrics, traces, and logs. SigNoz is an observability tool used to monitor software systems.

In plain words
What is it for?
Use it to investigate a specific SigNoz alert, correlate activity around its firing time, and rank possible causes using supporting evidence.
Why use it?
It turns an alert from a notification into an investigation of likely causes, such as increased errors, slower requests, resource pressure, or missing data.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

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

Good fit Use it to investigate a specific SigNoz alert, correlate activity around its firing time, and rank possible causes using supporting evidence.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/signoz/agent-skills/signoz-investigating-alerts/github.svg)](https://agentmods.dev/skills/signoz/agent-skills/signoz-investigating-alerts)
Your own site
<a href="https://agentmods.dev/skills/signoz/agent-skills/signoz-investigating-alerts"><img src="https://agentmods.dev/badge/skills/signoz/agent-skills/signoz-investigating-alerts/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-investigating-alerts

Your own site · 80×15
<a href="https://agentmods.dev/skills/signoz/agent-skills/signoz-investigating-alerts"><img src="https://agentmods.dev/badge/skills/signoz/agent-skills/signoz-investigating-alerts.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,304 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00138 $0.06304
Opus 5 $0.00069 $0.03152
Sonnet 5 $0.00028 $0.01261
Haiku 4.5 $0.00014 $0.00630

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

Security

Grade A, and why

signoz-investigating-alerts 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-investigating-alerts/SKILL.md · 499 lines

How it starts

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

Alert Investigate

Diagnose why a SigNoz alert fired. The skill correlates the alert's own signal with neighbor signals around the fire window, and surfaces a ranked list of likely causes with supporting evidence. It is the companion to signoz-explaining-alerts: explain decodes the rule statically; investigate diagnoses a specific incident.

Prerequisites

This skill calls SigNoz MCP server tools heavily (signoz_get_alert, signoz_get_alert_history, signoz_execute_builder_query, signoz_query_metrics, signoz_search_traces, signoz_search_logs, signoz_get_trace_details, etc.). 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. The investigation depends on correlating multiple MCP queries; without the server there is no way to ground the analysis.

When to use

Use this skill when the user wants to:

  • Understand why a specific alert fired.
  • Find the root cause of a recent incident triggered by an alert.
  • Correlate the alert's signal with related metrics, traces, and logs.
  • Distinguish "real signal" fires from flapping or threshold-mistuning.

Do NOT use when the user wants to:

  • Understand what an alert is configured to monitor → signoz-explaining-alerts.
  • Create a new alert → signoz-creating-alerts.
  • Modify an alert (raise threshold, add hysteresis) → call signoz_update_alert directly.
  • Run a free-form ad-hoc investigation without an alert as the anchor → signoz-generating-queries.

Required inputs

Input Required Source if missing
Alert identifier (rule ID or name) yes $ARGUMENTS[0] or recent context
Time window no default to most recent fire from signoz_get_alert_history

If the alert name is fuzzy, this skill is best-effort (read-only):

  1. Call signoz_list_alert_rules, paginate, fuzzy-match the name.
  2. State the interpretation: "Investigating fire of 'High Error Rate - Checkout' (id 42) at 14:32 UTC. If you meant a different alert or fire, tell me."
  3. Proceed.

Read the full file on GitHub · 499 lines

Files

What ships with it

4 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 · 499 lines · 138 tokens per session scan A 800523e5c680

Subscribe to this mod's changes

signoz-investigating-alerts is a skill published in the GitHub repository SigNoz/agent-skills (16 stars, last pushed 10d ago), licensed MIT. It adds 138 tokens to every session and 6,304 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

performance-optimization

Optimizes application performance across frontend, backend, queries, and databases. Use when performance requirements exist, when you suspect performance regressions, when Core Web Vitals or load times need improvement, when N+1 query patterns need fixing, or when profiling reveals bottlenecks.

addyosmani/agent-skills · 59 tokens

doubt-driven-development

Subjects every non-trivial decision to a fresh-context adversarial review before it stands. Use when you want every assumption cross-examined before proceeding, when stress-testing a plan for hidden failure modes, when correctness matters more than speed, when working in unfamiliar code, when stakes are high…

addyosmani/agent-skills · 96 tokens

debugging-and-error-recovery

Guides systematic root-cause debugging. Use when tests fail, builds break, something that worked yesterday broke, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need to figure out what broke and why — a systematic approach to finding and fixing the root cause rather than…

addyosmani/agent-skills · 67 tokens

phoenix-observability

Open-source AI observability platform for LLM tracing, evaluation, and monitoring. Use when debugging LLM applications with detailed traces, running evaluations on datasets, or monitoring production AI systems with real-time insights.

davila7/claude-code-templates · 47 tokens

systematic-debugging

A step-by-step method for finding the underlying cause of technical problems before changing code. It covers reading errors, reproducing failures, checking recent changes, and tracing data across system components.

jnMetaCode/superpowers-zh · 24 tokens

browser-trace

Capture a full DevTools-protocol trace of any browser automation — CDP firehose, screenshots, and DOM dumps — then bisect the stream into per-page searchable buckets. Use when the user wants to debug a failed run, audit network/console/DOM activity, attach a trace to an in-progress session, or feed structured per-page…

mxyhi/ok-skills · 88 tokens