EngineeringLead

Incidents

Blameless postmortems: a template and guide for engineering leads

After an incident, the team either learns something about its system or learns to hide mistakes. A blameless postmortem is how an engineering lead makes sure it is the first. This guide covers when to hold one, how to run it, and a template you can copy.

What "blameless" means

Google's Site Reliability Engineering book describes a blameless postmortem as one that focuses on the contributing causes of an incident without indicting any individual or team. The reasoning is practical: people who fear blame hide information, and hidden information is what lets the same failure happen again.

Blameless does not mean nobody is accountable. It means the investigation asks why the system allowed a reasonable person to make that mistake, and what would stop the next person making it. Accountability shows up as owning the follow-up actions.

When to hold a postmortem

Agree on the criteria before incidents happen, so nobody has to argue for one afterward. The Google SRE book lists common triggers:

It also notes that any stakeholder may request a postmortem. Consider adding team-specific triggers: a security event, a near miss that could have been serious, or an incident caused by an AI agent's action.

Running the process

  1. Assign an owner within a day of resolution. Often someone involved, but not necessarily the person who made the triggering change.
  2. Build the timeline from chat logs, alerts, deployment records and dashboards while memory is fresh.
  3. Draft the document using the template below, before the meeting.
  4. Hold the review meeting. Open by stating the ground rule: the aim is to improve the system, not to evaluate people.
  5. Agree action items, each with an owner and a due date, tracked in the normal work tracker.
  6. Share the result beyond the team. Other teams often have the same weakness.
  7. Follow up. Review open postmortem actions regularly. Incomplete actions are one of the most common ways incidents repeat.

Postmortem template

Title: short description and date.
Status: draft, in review, complete.
Owner and participants.

Summary: two or three sentences on what happened and the impact.
Impact: who was affected, how, and for how long; data affected, if any.
Detection: how the team found out, and how long it took.
Response: what was done to mitigate and resolve.

Timeline: timestamps, in one time zone, from first signal to resolution.
Contributing factors: technical, process and organizational conditions that allowed the incident.
What went well: practices worth keeping.
Where we got lucky: things that could have made it worse.

Action items: action, type (prevent, detect, mitigate), owner, due date, tracker link.
Lessons: what other teams should know.

Finding contributing factors

Incidents rarely have a single root cause. Asking "why" repeatedly is a useful start, but stop when you reach a condition the team can change: a missing test, an alert that did not fire, a confusing runbook, a deployment that could not be rolled back quickly. Look at several layers:

LayerExample questions
TechnicalWhat failed? Why did safeguards not catch it?
DetectionWhy did it take as long as it did to notice?
ProcessDid review, testing or release steps work as designed?
KnowledgeDid responders have the information and access they needed?
OrganizationalDid deadlines, staffing or ownership gaps contribute?

Incidents involving AI-generated changes or agents

As more changes are produced with AI tools, some incidents will trace back to them. Keep the review blameless and systemic:

Good action items

Postmortem actions compete with feature work. Treat them as part of the team's reserved capacity; see prioritizing technical debt.

Keeping a postmortem library

Individual postmortems teach one team once. A searchable library teaches the organization repeatedly:

The lead's role

Common questions

How soon after an incident should the review happen?

Soon enough that memories and logs are fresh, often within a week, and after the people involved have had time to rest.

Should the person who caused the incident attend?

Yes, if they are willing. They usually have the most useful context. The blameless ground rule protects them.

What if someone acted carelessly?

The postmortem still focuses on the system. Individual performance concerns are handled separately, privately, through the normal management process.

Should postmortems be shared with customers?

Many companies publish a customer-facing summary for significant incidents. It is a different document, reviewed for accuracy and confidentiality, and written for that audience.

Last reviewed 2026-09-17