Change Failure Rate (CFR)

Change Failure Rate (CFR)

The percent of releases that produce a customer-reported bug. The DORA stability metric.

Family: DORA & Quality · Cadence: Per window, per team or org · Where it appears: /ai-adoption/ai-impact, /ai-adoption/board-metrics, /ai-adoption/executive

At a glance

CFR is “what percent of our deploys cause customer pain?” High CFR means shipping is causing more problems than it’s solving. Low CFR means you are shipping reliably. It is the stability counterweight to Deployment Frequency — together they tell the most credible story about whether your engineering organization is healthy.

The dashboard uses your Jira “Customer Bug = Yes” field as the canonical signal for what counts. Internal bugs caught in QA don’t count toward CFR. This is deliberate — CFR focuses on what hit customers, not what your QA caught.

Formula

CFR = count(releases with ≥1 customer bug) / count(releases in window) × 100%

  where customer bug = Jira issue with Customer Bug field = Yes

How GitKraken Insights calculates it

The Customer Bug field. A background worker (the CFR syncer) queries Jira hourly for issues where your configured Customer Bug field is set to “Yes.” The bugs are stored in the jira_incidents table along with severity, assignee, and create/resolve timestamps.

The integration requires the Customer bug field ID. Set it on the Jira connection in Settings → Data Connections. Without it, CFR sync is skipped and the UI shows an empty state.

Matching bugs to releases. Each customer bug is matched to the release it shipped in. A release “fails” if it had at least one customer bug attributed to it.

Severity. Bugs are tracked with severity — Critical, High, Medium, Low. The CFR KPI card on /ai-adoption/ai-impact specifically shows Critical & High Customer Bugs — the bugs that actually hurt. The trend chart can show all severities stacked.

Aggregation. CFR is failing releases / total releases over the window, expressed as a percent.

Why it matters

CFR is the metric most likely to contradict a happy story you are telling about velocity. A team that just doubled Deployment Frequency without watching CFR may be celebrating something that is actively making customers angry.

For AI adoption specifically, CFR is the metric to watch alongside Deployment Frequency. AI enables faster shipping; the question is whether it enables faster and reliable shipping or just faster shipping. The dashboard’s job is to answer that question honestly.

How to read it

DORA bands for CFR:

Band CFR Pattern
Elite 0–5% Very few deploys produce customer-reported bugs
High 5–10% Solid stability, occasional incidents
Medium 10–15% Routine bugs — investigate why
Low > 15% Quality problem — slow down or strengthen review

A rising CFR trend is more concerning than a high baseline. Some teams have a legitimately higher baseline CFR (new product areas, experimental features) and that is fine — the question is whether it is trending up or down.

Where it appears

Settings that affect it

Related metrics

Metric Relationship
Deployment Frequency The DORA velocity pair. CFR is the stability counterweight.
MTTR The other stability metric — how fast you recover when CFR strikes.
First-Pass Rate High First-Pass + rising CFR = rubber-stamping risk.
AI Tier The CFR-by-Tier breakdown on /ai-adoption/ai-impact tells you whether AI adoption changes stability.

How to improve it

Limitations and gotchas

FAQ

Q: We have a customer bug that wasn’t caused by a code change. Does it count?
A: If it is marked Customer Bug = Yes in Jira, yes. The CFR metric does not try to distinguish code-caused bugs from infrastructure / data / config issues. If you need that distinction, use a separate Jira field and filter the dashboard view accordingly.

Q: Our CFR keeps spiking on Monday mornings. Why?
A: Probably weekend-released bugs that don’t get reported until the work week starts. Look at the create-timestamp of the bugs, not the merge-timestamp. The spike is artifact, not a real Monday quality problem.

Q: Can I see CFR for just one team?
A: Yes. Apply a team filter on the page; the breakdown chart also supports team as a dimension.

Q: Why does CFR by AI Tier matter?
A: It tells you whether AI adoption is changing your stability profile. The hopeful answer is “Power Users have similar or lower CFR than Emerging devs.” If Power Users have higher CFR, that’s a flag — AI is enabling faster shipping at a quality cost.