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.
npx skills add bobmatnyc/mcp-skillset --skill observability-monitoringgit clone --depth 1 https://github.com/bobmatnyc/mcp-skillsetWrote 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.
[](https://agentmods.dev/skills/bobmatnyc/mcp-skillset/observability-monitoring)<a href="https://agentmods.dev/skills/bobmatnyc/mcp-skillset/observability-monitoring"><img src="https://agentmods.dev/badge/skills/bobmatnyc/mcp-skillset/observability-monitoring/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.
<a href="https://agentmods.dev/skills/bobmatnyc/mcp-skillset/observability-monitoring"><img src="https://agentmods.dev/badge/skills/bobmatnyc/mcp-skillset/observability-monitoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00042 | $0.03599 |
| Opus 5 | $0.00021 | $0.01800 |
| Sonnet 5 | $0.00008 | $0.00720 |
| Haiku 4.5 | $0.00004 | $0.00360 |
Grade A, and why
Observability with Prometheus & 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 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.
How it starts
The opening of the file, as written. The whole thing — 494 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Observability with Prometheus & Grafana
Overview
Master production observability with Prometheus and Grafana - the industry-standard monitoring stack for cloud-native applications. Learn metrics collection, PromQL query language, dashboard design, alerting, and AI-powered anomaly detection (Grafana AI Observability 2024).
When to Use This Skill
- Monitoring production applications and infrastructure
- Implementing SLOs (Service Level Objectives) and SLIs
- Creating custom metrics for business KPIs
- Setting up alerting for proactive incident response
- Debugging performance issues with metrics analysis
- Tracking API latency, error rates, and throughput
- Monitoring AI/ML model performance in production
Core Principles
1. The Four Golden Signals (Google SRE)
# Always monitor these four metrics for every service:
# 1. Latency - How long requests take
http_request_duration_seconds_bucket{le="0.1", job="api"} 8500
http_request_duration_seconds_bucket{le="0.5", job="api"} 9800
http_request_duration_seconds_sum{job="api"} 2450
http_request_duration_seconds_count{job="api"} 10000
# 2. Traffic - How many requests
http_requests_total{method="GET", status="200"} 50000
# 3. Errors - How many requests fail
http_requests_total{method="POST", status="500"} 150
# 4. Saturation - How "full" is the service
node_memory_MemAvailable_bytes / node_memory_MemTotal_bytes < 0.2
2. Metric Types
from prometheus_client import Counter, Gauge, Histogram, Summary, Info
# Counter - Monotonically increasing (requests, errors)
request_count = Counter(
'http_requests_total',
'Total HTTP requests',
['method', 'endpoint', 'status']
)
request_count.labels(method='GET', endpoint='/api/users', status='200').inc()
# Gauge - Can go up or down (memory usage, queue size)
active_connections = Gauge(
'active_database_connections',
'Number of active database connections'
)
active_connections.set(25)
active_connections.inc() # Increment
active_connections.dec() # Decrement
# Histogram - Track distributions (latency, request sizes)
request_duration = Histogram(
'http_request_duration_seconds',
'HTTP request duration',
buckets=[0.01, 0.05, 0.1, 0.5, 1.0, 5.0] # Define buckets
)
with request_duration.time():
process_request()
# Summary - Similar to histogram, calculates quantiles
response_size = Summary(
'http_response_size_bytes',
'HTTP response size in bytes'
)
response_size.observe(1024)
# Info - Static metadata
app_info = Info('app_version', 'Application version info')
app_info.info({'version': '1.2.3', 'environment': 'production'})
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.
- 12d ago First seen · 494 lines · 42 tokens per session scan A 76688cdaf6e4
Observability with Prometheus & Grafana is a skill published in the GitHub repository bobmatnyc/mcp-skillset (20 stars, last pushed 6mo ago), licensed MIT. It adds 42 tokens to every session and 3,599 once invoked, about $0.0002 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.
Other skills, from other repositories
monitoring-expert
Expert-level monitoring and observability with Prometheus, Grafana, logging, and alerting. Use when the user mentions observability, Prometheus, Grafana, logging, metrics, or alerting, or when the task involves The Three Pillars of Observability, Monitoring Fundamentals, Prometheus Configuration, or Alert Rules.
prometheus-expert
Expert-level Prometheus monitoring, metrics collection, PromQL queries, alerting, and production operations. Use when the user mentions monitoring, metrics, observability, alerting, or PromQL, or when the task involves Prometheus Architecture, Installation on Kubernetes, ServiceMonitor, or PromQL Queries.
k8s-monitoring-alerting
A Kubernetes diagnostic and repair method for Prometheus and Grafana monitoring problems, including alerts that do not trigger. Prometheus collects measurements, while Grafana displays them in dashboards.
prom-query
Prometheus Metrics Query & Alert Interpreter — query metrics, interpret timeseries, triage alerts.
monitoring-observability
Monitoring and observability patterns for Prometheus metrics, Grafana dashboards, Langfuse v4 LLM tracing (astype, scorecurrentspan, shouldexportspan, LangfuseMedia), and drift detection. Use when adding logging, metrics, distributed tracing, LLM cost tracking, or quality drift monitoring.
monitoring-logging
Application monitoring, logging systems, and alerting.