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 agentmods add skills/netdata/skills/troubleshoot-apache-httpdnpx skills add netdata/skills --skill troubleshoot-apache-httpdgit clone --depth 1 https://github.com/netdata/skillsWrote 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/netdata/skills/troubleshoot-apache-httpd)<a href="https://agentmods.dev/skills/netdata/skills/troubleshoot-apache-httpd"><img src="https://agentmods.dev/badge/skills/netdata/skills/troubleshoot-apache-httpd.svg" alt="Measured on agentmods" 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 | $0.00082 | $0.02079 |
| Opus 5 | $0.00041 | $0.01040 |
| Sonnet 5 | $0.00016 | $0.00416 |
| Haiku 4.5 | $0.00008 | $0.00208 |
Grade A, and why
troubleshoot-apache-httpd 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 3d 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 — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Troubleshoot Apache HTTPD
When to use this skill
- Worker exhaustion: All workers stuck (in W, R, D, or K states). New connections queue then drop. The most common "server down" symptom.
- Memory exhaustion: MaxRequestWorkers × per-child RSS > available RAM. System swaps, latency spikes, OOM kills cascade.
- Listen queue overflow: Workers occupied, backlog fills, SYN packets get RST. Server appears "up" (port open) but unreachable.
- Slow backend cascade: Proxied requests hold workers waiting for slow/dead backends. Workers fill up from the backend side, not from traffic overload.
- Log disk full / pipe stall: Workers finish requests but block in Logging state. Server appears alive but serves nothing.
- Graceful restart pile-up: Old-generation children linger during slow request completion. Multiple overlapping restarts multiply memory consumption.
- Any time the user reports a Apache HTTPD service behaving outside its expected envelope (elevated errors, latency, saturation, resource exhaustion, or unexpected restarts).
- An on-call engineer is paging on a Netdata alert tied to a Apache HTTPD instance and wants a structured triage path.
Key facts
- This skill wraps the Netdata operator playbook for Apache HTTPD. It does not replace the playbook; it routes a coding agent through MCP queries against the same signals the playbook relies on.
- Apache HTTPD is a process-based (or hybrid process+thread) HTTP server whose behavior is fundamentally shaped by its Multi-Processing Module (MPM). The MPM determines how incoming connections map to execution units. Knowing which MPM is active is the single most important prerequisite for interpreting any signal.
- The playbook decomposes Apache HTTPD health into 9 signal domains: Availability, Throughput, Latency, Errors, Saturation, Resource Utilization. Each domain maps to one rule file in this skill.
- Dominant failure archetypes the playbook calls out: Worker exhaustion; Memory exhaustion; Listen queue overflow; Slow backend cascade; Log disk full / pipe stall.
- Netdata observes the signals listed in the rule files via its native collectors, plus any OpenTelemetry-shipped metrics that your Apache HTTPD instrumentation adds. Both paths end at the same MCP query surface.
- Netdata's apache collector emits 20 context(s) under
apache.*. The rule files enumerate which contexts surface which domain; the Verification section below names the load-bearing ones explicitly.
What ships with it
11 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.
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.
- 3d ago First seen · 172 lines · 82 tokens per session scan A 6cae61aa09f1
troubleshoot-apache-httpd is a skill published in the GitHub repository netdata/skills (2 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 82 tokens to every session and 2,079 once invoked, about $0.0004 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.
Other skills, from other repositories
project-writing-collectors
Best practices and orientation for AI assistants authoring or modifying Netdata data-collection plugins or modules in any language. Read before adding a new collector, modifying an existing one, working on logs, topology, NetFlow/sFlow/IPFIX, OTEL ingestion, SNMP profiles, statsd, Prometheus scraping, or interactive…
pr-reviews
Address pull-request comments and reviews iteratively until the PR is clean — fetch all comments with paranoid pagination, classify by author (AI bot vs human), verify each finding, address it, find similar patterns, reply per-thread, resolve threads, pull SonarCloud findings, check CI before pushing, retrigger AI…
project-create-topology
Developer workflow for creating or updating Netdata topology producers and topology Function payloads using the production netdata.topology.v1 schema. Use when adding or migrating topology:network-connections, topology:streaming, topology:snmp, vSphere topology, correlation rules, graph presentation, drilldowns…
project-health-alert-authoring
Author, adapt, modify, or review Netdata health alerts and alert templates. Use when translating alerts from another system; changing src/health/health.d/.conf, lookup/calc/warn/crit expressions, lifecycle, timing, routing, ownership, or missing-data behavior; writing health-config tests; or selecting an alert's…
coverity-audit
Triage Coverity Scan defects (https://scan.coverity.com) for this project — fetch defect lists, fetch per-defect details, and apply triage decisions (Bug / FalsePositive / Intentional with severity, action, and a comment). Use when the user asks to "review Coverity defects", "triage Coverity findings", "fetch Coverity…
project-prometheus-profiles
Create, review, validate, prove, iterate, or install Netdata Prometheus collector chart profiles (go.d/prometheus.profiles/.yaml). Use for exporter dashboard design, profile schema/runtime behavior, selector/relabel/fallback policy, chart coverage and cardinality, stock semantic proof artifacts, or live profile…