100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace

Incident Response & Postmortems Cheat Sheet

Incident Response & Postmortems Cheat Sheet

Structured process for detecting, responding to, and learning from production incidents, including postmortem documentation.

2 PagesIntermediateJan 25, 2026

Incident Response Roles

Common roles used during a major incident.

  • Incident Commander (IC)- Owns coordination and decision-making, does not necessarily fix the issue
  • Communications Lead- Manages status page updates and stakeholder communication
  • Operations Lead / Subject Matter Expert- Drives technical investigation and mitigation
  • Scribe- Records timeline, actions, and decisions in real time

Typical Severity Levels

Common SEV classification scheme used to prioritize response.

  • SEV1 / P1- Full outage or critical data loss, all hands, immediate response
  • SEV2 / P2- Major functionality degraded, significant user impact
  • SEV3 / P3- Minor impact, workaround available, handled during business hours
  • SEV4 / P4- Cosmetic or low-impact issue, no urgency

Postmortem Template

Minimal blameless postmortem document structure.

markdown
# Postmortem: Checkout API Outage (2026-07-08)## SummaryOne-paragraph description of impact and duration.## Impact- Duration: 42 minutes- Users affected: ~8,000- Revenue impact: estimated $X## Timeline (UTC)- 10:02 Alert fired: high 5xx rate- 10:05 IC assigned- 10:18 Root cause identified: bad config deploy- 10:44 Rollback completed, service recovered## Root CauseWhat actually broke and why.## Action Items- [ ] Add config validation to CI (owner, due date)- [ ] Add canary deploy stage (owner, due date)## Lessons LearnedWhat went well / what didn't.

Incident Response Flow

High-level sequence from detection to resolution.

  • Detect- Alert fires or is reported, on-call acknowledges
  • Triage- Assess severity and assign IC if warranted
  • Mitigate- Stop the bleeding first (rollback, feature flag off, scale up) before root-causing
  • Resolve- Confirm metrics/SLIs back to normal, close incident
  • Review- Write and share the postmortem, track action items to completion

Multi-Window, Multi-Burn-Rate SLO Alert

Prometheus alerting rule that pages only when the error-budget burn rate is fast across both a short and long window, cutting false pages.

yaml
groups:  - name: slo-burn-rate    rules:      - alert: ErrorBudgetBurnFast        expr: |          (            sum(rate(http_requests_total{status=~"5.."}[1h]))            /            sum(rate(http_requests_total[1h]))          ) > (14.4 * 0.001)          and          (            sum(rate(http_requests_total{status=~"5.."}[5m]))            /            sum(rate(http_requests_total[5m]))          ) > (14.4 * 0.001)        for: 2m        labels:          severity: page        annotations:          summary: "Fast burn: budget exhausted in <2h at current rate"      - alert: ErrorBudgetBurnSlow        expr: |          (            sum(rate(http_requests_total{status=~"5.."}[6h]))            /            sum(rate(http_requests_total[6h]))          ) > (6 * 0.001)        for: 15m        labels:          severity: ticket        annotations:          summary: "Slow burn: budget exhausted in <5d, investigate during business hours"

Postmortem Anti-Patterns

Common ways postmortems fail to produce lasting improvement.

  • Naming names- Attributing root cause to a person instead of the system/process that allowed the mistake — kills future reporting honesty
  • "Human error" as root cause- A stopping point, not an explanation; ask why the system made the error easy to make
  • Action items with no owner or date- Untracked items rot; every action item needs a single accountable owner and due date
  • Root cause singular framing- Real incidents are usually a chain of contributing factors, not one root cause — document the whole causal graph
  • Writing it and shelving it- A postmortem nobody reads outside the team that wrote it doesn't spread the lesson org-wide
  • Skipping near-misses- Incidents that almost happened are the cheapest data you'll ever get on a latent risk
  • Closing before verification- Marking an action item done without confirming the fix actually prevents recurrence

Auto-Create Incident Channel on Page

Webhook handler that spins up a dedicated Slack channel and pins the timeline doc the moment PagerDuty fires.

javascript
app.post('/webhooks/pagerduty', async (req, res) => {  const event = req.body.event;  if (event.event_type !== 'incident.triggered') return res.sendStatus(200);  const incident = event.data;  const channelName = `inc-${incident.incident_number}-${slugify(incident.title)}`;  const channel = await slack.conversations.create({ name: channelName });  await slack.conversations.setTopic({    channel: channel.channel.id,    topic: `SEV${incident.urgency === 'high' ? '1' : '3'} | ${incident.html_url}`,  });  await slack.chat.postMessage({    channel: channel.channel.id,    text: `:rotating_light: *${incident.title}*\nIC: unassigned — react with :raised_hand: to claim\nTimeline doc: ${await createTimelineDoc(incident)}`,  });  res.sendStatus(200);});

Cognitive Biases That Distort Investigations

Biases to actively guard against while reconstructing an incident timeline.

  • Hindsight bias- "It was obvious in retrospect" — it wasn't, given what responders knew at the time; reconstruct their actual view
  • Outcome bias- Judging a decision by how it turned out rather than whether it was reasonable given available information
  • Confirmation bias- Latching onto the first plausible cause and only seeking evidence that supports it
  • Fundamental attribution error- Blaming an individual's carelessness while ignoring situational/system factors that set them up to fail
  • Normalization of deviance- A known risk that hasn't caused an incident yet gets quietly accepted as "fine"

Automated Status Page Update

CLI-friendly script to post an incident status update via the Statuspage API during an active SEV.

bash
curl -s -X PATCH \  "https://api.statuspage.io/v1/pages/${PAGE_ID}/incidents/${INCIDENT_ID}" \  -H "Authorization: OAuth ${STATUSPAGE_API_KEY}" \  -d 'incident[status]=monitoring' \  -d 'incident[body]=A fix has been deployed. We are monitoring the results.' \  -d 'incident[component_ids][]=comp_checkout_api' \  -d 'incident[components][comp_checkout_api]=degraded_performance'
Pro Tip

Mitigate first, diagnose second — rolling back a bad deploy takes minutes and restores service, while root-causing under pressure can extend an outage unnecessarily.

Was this cheat sheet helpful?

Explore Topics

#IncidentResponsePostmortems#IncidentResponsePostmortemsCheatSheet#DevOps#Intermediate#IncidentResponseRoles#TypicalSeverityLevels#PostmortemTemplate#IncidentResponseFlow#CheatSheet#SkillVeris

Frequently Asked Questions

21 categories · pick one to explore

Does SkillVeris have a tech blog, and what does it cover?
Yes, the SkillVeris blog has over 500 articles covering AI and machine learning, programming, web development, DevOps, cloud, security, databases and career guidance. Articles are practical and answer-first, and many use the Learn Through Hobbies approach, teaching technical concepts through cricket, music, gaming or cooking analogies. Everything is free to read.
What is the SkillVeris tech glossary and how big is it?
The SkillVeris glossary is a free reference of roughly 2,000-plus technology terms, each with a clear plain-language definition. It spans AI, programming, web, DevOps, cloud, security and database vocabulary, so whenever a lesson, article or job description uses jargon you do not recognise, the glossary gives you a fast, reliable answer.
Are the developer cheat sheets on SkillVeris free to download?
The cheat sheets are completely free to use, like everything else on SkillVeris. Each sheet condenses a language or tool into its essential syntax, commands and patterns for quick reference while coding. They are designed for rapid lookup during real work, complementing the deeper explanations found in study notes and courses.
Which programming references and cheat sheets are available?
Cheat sheets cover the platform's main domains, including programming languages, AI and ML tooling, web development, DevOps, cloud, security and databases, matching the topics of the 37 live courses. Each sheet lists related reading links and hashtags, so you can jump from a quick reference into fuller study notes or blog articles.
How do I find the meaning of a technical term quickly?
Search the SkillVeris glossary, which holds around 2,000-plus terms with concise, plain-language definitions. Each entry gets to the point in its first sentence, then links to related reading like blog posts or study notes for deeper context. It is faster and more consistent than sifting through scattered search results.
Is the SkillVeris blog good for beginners learning to code?
Yes, many blog articles are written specifically for beginners, and the Learn Through Hobbies style makes them unusually approachable: you might learn Python concepts through cricket or understand APIs through cooking. With 500-plus articles across skill levels, beginners can start with fundamentals and keep reading as they advance, entirely free.
Can cheat sheets replace full courses for learning a language?
No, cheat sheets are references, not teaching tools; they assume you already understand the concepts and just need syntax or commands fast. To actually learn a language, take a structured SkillVeris course with its 24–40 lessons and assessments, then keep the cheat sheet beside you while practising in Code Lab.
How often are new blog articles published on SkillVeris?
The blog grows regularly and already exceeds 500 articles, with new posts added as courses launch and technologies evolve. Topics track the platform's catalogue across AI, programming, web development, DevOps, cloud and security, so checking the Blog section periodically surfaces fresh tutorials, explainers and career-focused pieces, all free to read.
Does the glossary cover AI and machine learning terms?
Yes, AI and machine learning vocabulary is a major part of the roughly 2,000-plus term glossary, covering everything from foundational terms to modern concepts around LLMs, RAG and MLOps. Definitions are plain-language and answer-first, which helps when dense AI papers or course lessons throw unfamiliar jargon at you.
Are there cheat sheets for interview preparation?
Cheat sheets work well as interview-day refreshers because they compress syntax, commands and key concepts into scannable references. For dedicated preparation, combine them with the SkillVeris interview questions feature, which includes readiness scoring, plus study notes for depth. Reviewing a relevant cheat sheet just before an interview steadies recall under pressure.
Can I read the tech blog without signing up?
Yes, the blog is freely readable, and SkillVeris never charges for content. All 500-plus articles are open, covering tutorials, concept explainers and career advice. Creating a free account adds value elsewhere on the platform, like course progress tracking and certificates, but reading the blog requires no commitment at all.
How is the SkillVeris glossary different from Wikipedia?
The glossary is purpose-built for learners: definitions are short, plain-language and answer-first, sized for a quick lookup mid-lesson rather than a deep encyclopedic read. Entries also cross-link to related SkillVeris study notes, blog posts and courses, so a definition becomes a doorway into structured learning instead of a dead end.
Do blog articles use the Learn Through Hobbies method?
Many blog articles teach technical topics through hobby analogies, a hallmark of the SkillVeris blog, so you will find articles explaining programming through cricket, machine learning through music, or system design through cooking. The analogy is the teaching device; the article still delivers the real technical concept underneath.
Where can I find quick programming references while coding?
Open the SkillVeris cheat sheets, which are built exactly for that moment: compact, scannable references for syntax, commands and common patterns across languages and tools. Keep the relevant sheet in a browser tab while you work in Code Lab or your own editor, and dip into the glossary for terminology.
Is there a glossary entry for terms I meet in job descriptions?
Very likely yes, with roughly 2,000-plus terms across AI, programming, web, DevOps, cloud, security and databases, the glossary covers most jargon that appears in tech job descriptions. Decoding a listing this way helps you judge role fit honestly and prepares you to discuss those terms in interviews.
Are the blog articles written for the Indian tech audience?
The blog serves Indian learners plus a worldwide audience. Content stays globally relevant while acknowledging realities that matter in India, such as free access being essential for students and freshers, and career guidance that connects naturally to the SkillVeris jobs portal, which aggregates roles across India, UK, USA, Germany and Remote.
Can I suggest a topic for the blog or glossary?
SkillVeris content grows in response to what learners need, so feedback is welcome through the platform's support channels. If a term is missing from the glossary or a topic deserves an article, telling the team helps prioritise it. Meanwhile, the AI Mentor can answer the question immediately, 24/7, at any depth.
Do cheat sheets and glossary entries link to deeper learning?
Yes, every cheat sheet and glossary entry carries related reading links into study notes, blog articles and courses, plus concept hashtags for discovering similar content. This cross-linking means a thirty-second lookup can smoothly become a structured learning session whenever you decide you want more than a quick answer.
What makes SkillVeris programming references trustworthy?
The references are written to strict internal quality standards, kept consistent with the platform's 37 live courses, and never padded with invented statistics or hype. Definitions and cheat sheets are reviewed against the same content contracts that govern courses, and the answer-first style makes any inaccuracy easy to spot and correct.
How do the blog, glossary and cheat sheets fit into my learning routine?
Use them as satellites around your main course: read blog articles for context and motivation, hit the glossary the instant jargon appears, and keep cheat sheets open while coding. Together with study notes, Code Lab and the 24/7 AI Mentor, they turn passive reading into a complete, free learning system.

What Learners Say

Real journeys from the SkillVeris community — swipe for more.

SkillVeris taught me Python through Cricket. Now I’m building real projects and feeling confident!
Arjun S. · B.Tech Student
The best platform for hobby-based learning. Concepts finally stick.
Priya R. · Data Analyst
I went from zero coding to a portfolio of projects — all by learning through my love for gaming. Landed my first internship!
Kabir M. · CS Undergraduate
Trending Topics50 popular tags — tap to explore
Trending CoursesAll 37 free courses — tap to browse