← Back to all products

Runbook Template Library

$29

50+ operational runbooks for common incidents: database issues, memory leaks, traffic spikes, deployment failures.

📁 64 files
MarkdownAWSAzureGCPGrafana

📄 Product Preview

Try the interactive reader and demo tools below, or get the full product with all content unlocked.

📖 Interactive Reader (Free Preview) ⚙ Try Demo Tools 📦 Download Free Sample

📁 File Structure 64 files

runbook-template-library/ ├── INDEX.md ├── LICENSE ├── README.md ├── RUNBOOK_TEMPLATE.md ├── WRITING_GUIDE.md ├── compute/ │ ├── container-crash.md │ ├── cpu-saturation.md │ ├── disk-io-saturation.md │ ├── memory-leak.md │ ├── oom-kills.md │ ├── restart-loops.md │ ├── thread-pool-exhaustion.md │ └── zombie-processes.md ├── database/ │ ├── backup-failure.md │ ├── connection-pool-exhaustion.md │ ├── deadlock-detection.md │ ├── disk-full.md │ ├── failover-procedure.md │ ├── index-corruption.md │ ├── replication-lag.md │ ├── schema-migration-failure.md │ └── slow-queries.md ├── deploy/ │ ├── blue-green-switch-failure.md │ ├── canary-abort.md │ ├── config-drift.md │ ├── dependency-failure.md │ ├── failed-rollout.md │ ├── helm-release-stuck.md │ ├── migration-failure.md │ └── rollback-procedure.md ├── free-sample.zip ├── guide/ │ ├── 01_runbook-structure.md │ ├── 02_writing-guide.md │ └── 03_runbook-index.md ├── index.html ├── network/ │ ├── connection-timeout.md │ ├── dns-failure.md │ ├── firewall-misconfiguration.md │ ├── load-balancer-issues.md │ ├── packet-loss.md │ ├── service-mesh-failure.md │ ├── tls-cert-expiry.md │ └── traffic-spike.md ├── observability/ │ ├── alerting-storm.md │ ├── cardinality-explosion.md │ ├── dashboard-data-gap.md │ ├── log-ingestion-failure.md │ ├── metrics-pipeline-lag.md │ ├── monitoring-blind-spot.md │ └── trace-collection-failure.md ├── security/ │ ├── api-key-leak.md │ ├── cert-rotation.md │ ├── ddos-mitigation.md │ ├── privilege-escalation.md │ ├── secret-rotation.md │ ├── suspected-breach.md │ └── unauthorized-access.md └── storage/ ├── data-corruption.md ├── disk-full.md ├── nfs-mount-stale.md ├── object-storage-latency.md ├── quota-exceeded.md ├── snapshot-failure.md └── volume-detach-failure.md

📖 Documentation Preview README excerpt

Runbook Template Library

A comprehensive library of 54 operational runbooks for Site Reliability Engineering teams, covering the most common infrastructure incidents and operational procedures.


What's Included

  • 54 detailed runbooks organized into 7 categories (database, compute, network, deploy, storage, observability, security)
  • Blank template (RUNBOOK_TEMPLATE.md) for creating your own runbooks
  • Writing guide (WRITING_GUIDE.md) with best practices for authoring effective runbooks
  • Complete index (INDEX.md) with severity ratings and quick-lookup tables

Every runbook follows a consistent 9-section structure: Symptoms → Severity → Detection/Alerts → Diagnosis → Mitigation → Resolution → Verification → Escalation → Prevention.


Features

  • Real commands, not pseudocode — every diagnosis and mitigation step includes actual commands (kubectl, psql, curl, systemctl, etc.) that you can run immediately
  • Consistent format — once your team learns one runbook's structure, they can navigate all of them
  • Severity classification — clear escalation criteria so responders know when to call for help
  • Multiple mitigation options — never just one path; always Plan A, Plan B, sometimes Plan C
  • Risk and rollback — every mitigation tells you what could go wrong and how to undo it
  • Prevention section — turns incidents into improvements, not just firefighting

File Structure


runbook-template-library/
├── README.md                    # This file
├── LICENSE                      # MIT License
├── INDEX.md                     # Complete catalog with links
├── RUNBOOK_TEMPLATE.md          # Blank template for new runbooks
├── WRITING_GUIDE.md             # How to write effective runbooks
├── database/                    # 9 runbooks
│   ├── replication-lag.md
│   ├── connection-pool-exhaustion.md
│   ├── slow-queries.md
│   ├── failover-procedure.md
│   ├── disk-full.md
│   ├── backup-failure.md
│   ├── deadlock-detection.md
│   ├── schema-migration-failure.md
│   └── index-corruption.md
├── compute/                     # 8 runbooks
│   ├── memory-leak.md
│   ├── cpu-saturation.md
│   ├── oom-kills.md
│   ├── restart-loops.md
│   ├── zombie-processes.md
│   ├── thread-pool-exhaustion.md
│   ├── disk-io-saturation.md
│   └── container-crash.md
├── network/                     # 8 runbooks
│   ├── dns-failure.md
│   ├── tls-cert-expiry.md
│   ├── load-balancer-issues.md

*... continues with setup instructions, usage examples, and more.*

📄 Content Sample INDEX.md

Runbook Index

A complete catalog of all operational runbooks in this library, organized by category.


Database (9 runbooks)

RunbookSeverityKey Symptom
[Replication Lag](database/replication-lag.md)P2-HighRead replicas returning stale data
[Connection Pool Exhaustion](database/connection-pool-exhaustion.md)P1-Critical"Too many connections" errors
[Slow Queries](database/slow-queries.md)P2-HighAPI response times degraded
[Failover Procedure](database/failover-procedure.md)P1-CriticalPrimary database unreachable
[Disk Full](database/disk-full.md)P1-CriticalDatabase entering read-only mode
[Backup Failure](database/backup-failure.md)P2-HighBackup job reported failure
[Deadlock Detection](database/deadlock-detection.md)P2-High"Deadlock detected" errors
[Schema Migration Failure](database/schema-migration-failure.md)P2-HighDeployment blocked at migration step
[Index Corruption](database/index-corruption.md)P1-CriticalQueries returning incorrect results

Compute (8 runbooks)

RunbookSeverityKey Symptom
[Memory Leak](compute/memory-leak.md)P2-HighRSS memory growing steadily
[CPU Saturation](compute/cpu-saturation.md)P2-HighResponse latency increased dramatically
[OOM Kills](compute/oom-kills.md)P1-CriticalPod in CrashLoopBackOff (OOMKilled)
[Restart Loops](compute/restart-loops.md)P2-HighPod in CrashLoopBackOff
[Zombie Processes](compute/zombie-processes.md)P3-MediumGrowing number of defunct processes
[Thread Pool Exhaustion](compute/thread-pool-exhaustion.md)P2-HighRequests queuing and timing out
[Disk I/O Saturation](compute/disk-io-saturation.md)P2-HighHigh I/O wait, disk utilization 100%
[Container Crash](compute/container-crash.md)P2-HighContainer exits with SIGSEGV/SIGABRT

Network (8 runbooks)

RunbookSeverityKey Symptom
[DNS Failure](network/dns-failure.md)P1-CriticalServices unable to resolve hostnames
[TLS Certificate Expiry](network/tls-cert-expiry.md)P1-CriticalBrowser showing certificate errors
[Load Balancer Issues](network/load-balancer-issues.md)P1-Critical502/503 errors returned to clients
[Traffic Spike](network/traffic-spike.md)P2-HighRequest rate 5-10x normal baseline
[Connection Timeout](network/connection-timeout.md)P2-HighIntermittent connection timeouts
[Packet Loss](network/packet-loss.md)P2-HighTCP retransmissions, intermittent failures
[Firewall Misconfiguration](network/firewall-misconfiguration.md)P2-HighTraffic blocked after infrastructure change

... and much more in the full download.

Buy Now — $29 Back to Products