troubleshoot-apache-httpd

troubleshoot-apache-httpd is a skill for Claude Code, Codex from netdata/skills. It costs 82 tokens per session (2,079 once invoked), scanned A, original, Apache-2.0.

A guided diagnostic for Apache HTTPD, a web server that receives HTTP requests and serves or proxies responses. It uses Netdata signals about the process, reachability, traffic, request duration, and data served.

In plain words
What is it for?
Use it to investigate worker exhaustion, memory exhaustion, listen-queue overflow, slow proxied services, full log disks or blocked log pipes, and restart pile-ups.
Why use it?
It helps determine whether outages and delays come from busy workers, low memory, full connection queues, slow backends, blocked logging, or repeated restarts.

Skill for Claude CodeCodex

Part of the netdata-skills plugin — 56 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/netdata/skills/troubleshoot-apache-httpd
Any agent
npx skills add netdata/skills --skill troubleshoot-apache-httpd
Clone the repo
git clone --depth 1 https://github.com/netdata/skills

Made for: Claude Code, Codex.

Or install netdata-skills, the plugin that ships this one along with the rest of its 56 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 troubleshoot-apache-httpd

README.md
[![agentmods](https://agentmods.dev/badge/skills/netdata/skills/troubleshoot-apache-httpd.svg)](https://agentmods.dev/skills/netdata/skills/troubleshoot-apache-httpd)
Your own site
<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>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,079 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.00082 $0.02079
Opus 5 $0.00041 $0.01040
Sonnet 5 $0.00016 $0.00416
Haiku 4.5 $0.00008 $0.00208

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

Security

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.

skills/troubleshoot-apache-httpd/SKILL.md · 172 lines

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.

Read the full file on GitHub · 172 lines

Files

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.

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. 3d ago First seen · 172 lines · 82 tokens per session scan A 6cae61aa09f1

Subscribe to this mod's changes

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.

Related

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…

netdata/netdata · 147 tokens

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…

netdata/netdata · 159 tokens

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…

netdata/netdata · 77 tokens

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…

netdata/netdata · 79 tokens

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…

netdata/netdata · 96 tokens

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…

netdata/netdata · 69 tokens