Chart a Metric and Check Variation

You need to chart a metric and see whether the latest point is within expected variation. gemba-xmr reads a time-series CSV, computes natural process limits from the data itself, and tells you whether the newest observation is routine noise or worth investigating.

No external targets required. The limits come from how the metric actually behaves.

Prerequisites

  • Node.js 22+
  • A CSV with at least 15 data points (fewer points are accepted but limits will not be computed)

Prepare the CSV

gemba-xmr expects the header date,metric,value,unit,run,note,event_type with one row per observation:

date,metric,value,unit,run,note,event_type
2026-01-06,cycle_time,4.2,days,,,kata-shift
2026-01-07,cycle_time,3.8,days,,,kata-shift
2026-01-08,cycle_time,5.1,days,,first Monday spike,kata-shift
Field Required Notes
date yes ISO 8601 (YYYY-MM-DD). Sort key.
metric yes Metric name. One CSV may carry multiple metrics; they are grouped.
value yes Numeric. Non-numeric values are rejected by validate.
unit yes Free text (count, days, pct, ...). Empty unit is rejected.
run no URL or identifier of the run that produced this observation.
note no Free text. Use it to record what you discovered when a signal fires.
event_type yes The workflow that recorded the row — its filename without .yml.

event_type keeps structurally different work out of the same baseline: a 30-second boot-and-yield and a 20-minute end-to-end run recorded against one metric would drag μ toward the cheaper shape and flag every real run as an outlier. The read commands therefore analyze one slice at a time — kata-shift by default — and name the active slice in their output. Pass --event-type <name> for a different slice, or --event-type '*' to see the unfiltered series.

Validate the file before analysis:

npx gemba-xmr validate observations.csv

A non-zero exit code means the file does not match the schema.

Chart a single metric

Render the chart to see where every point falls relative to the limits:

npx gemba-xmr chart observations.csv --metric cycle_time

When the CSV carries exactly one metric, --metric is optional.

The output is a 14-line X+mR chart:

 UPL 12.5 ──────────────────────────────●───────────────
          │
+1.5σ 9.4 │        ·           ·  ·              ·
    μ 6.4 ┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
-1.5σ 3.4 │  ·  ·     ·  ·  ·        ·     ·  ·     ·  ·
          │
  LPL 0.3 ──────────────────────────────────────────────

  URL 7.5 ─────────────────────────────────●────────────
          │                    ·        ·
    R 2.3 ┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
          │     ·  ·  ·  ·  ·     ·  ·        ·  ·  ·  ·
      0.0 ──────────────────────────────────────────────
             1  2  3  4  5  6  7  8  9 10 11 12 13 14 15
  • Top half (X chart) -- each observation against the natural process limits and zone boundaries. · is routine; is a signal.
  • Bottom half (mR chart) -- consecutive point-to-point changes (|x_i - x_{i-1}|) against the upper range limit.
  • The shared time axis at the bottom serves both halves.

If your terminal mishandles Unicode, add --ascii:

npx gemba-xmr chart observations.csv --metric cycle_time --ascii

Check whether the latest point is a signal

The analyze command combines the chart with limits, signals, and a classification:

npx gemba-xmr analyze observations.csv --metric cycle_time

For structured output that agents and scripts can parse:

npx gemba-xmr analyze observations.csv --metric cycle_time --format json

The JSON report for each metric carries:

  • stats -- mu, R, sigmaHat, UPL, LPL, URL, zoneUpper, zoneLower.
  • latest -- the most recent observation as { date, value, mr }. The mr field is the moving range at that point, answering "is today's change unusual?"
  • signals -- keyed by rule (xRule1, xRule2, xRule3, mrRule1). Each entry carries slots (1-indexed positions) and a description. When you pass a prior-read anchor (analyze's priorReadAnchor, the CLI's --prior-read), each entry also carries provenance: recomputation-revealed when every participating slot was already present at the prior read, or new-point when at least one postdates it. A recomputation-revealed signal surfaced because recomputing limits over newer data shifted them, not because a new point breached anything. Without an anchor, no provenance field is present.
  • classification -- stable, signals, chaos, insufficient, or degenerate-zero.

Read classification first. If it says stable, the latest point is within expected variation and no action is needed. If it says degenerate-zero, the series is also quiet, but every observation is zero: it carries no process signal at all, so a predictability target is not substantively met by it. If it says signals, look at the signals object to see which rules fired and where -- and, when provenance is present, whether the fired signals are recomputation-revealed (old data crossing freshly tightened limits) before treating the flip as a new event.

One process per chart

Before the rules mean anything, the centerline (μ) and average moving range (R̄) must come from a single process. If a CSV mixes two processes -- for example, fast dispatch-boots interleaved with much slower shift-work -- μ and R̄ are computed across the mixture and the limits describe neither. The rules still fire, but they fire on the mixture artifact, not on either underlying system.

If your CSV mixes processes, split them into separate metrics (or separate CSVs) before charting. The metric column is the natural seam: name each process distinctly so they group separately. After a confirmed shift in a single process, see the recompute step in What to do when signals appear.

Partition one metric by decision path

Sometimes a single metric covers work that took different paths, and you want to chart each path separately without splitting it into a new metric. A row can carry that path as structured tokens inside its note field, and the read commands can filter on them.

The grammar lives at the head of the note, before any free text:

route_taken=<id>; routes_eligible=[<id>,<id>,...];
  • route_taken — the single path this observation took. The id is a small integer (or the literal none when the work took no path).
  • routes_eligible — the comma-separated set of paths that were available for this observation, including the one taken. The brackets are literal; an empty set is [].

A quoted note keeps the embedded comma from breaking the column, so a row reads:

date,metric,value,unit,run,note,event_type,host_run
2026-06-20,implementations_shipped,3,count,,"route_taken=2; routes_eligible=[2,3];",kata-shift,local

Any free text follows the trailing semicolon: "route_taken=2; routes_eligible=[2,3]; reverted a flaky test".

Filter to a path

Two analyze options read the grammar:

npx gemba-xmr analyze observations.csv --metric implementations_shipped --route 2

--route 2 keeps only rows whose route_taken is 2. The chart, limits, and signals are then computed over that subset alone, so a path with its own process behavior gets its own baseline.

npx gemba-xmr analyze observations.csv --metric implementations_shipped \
  --routes-eligible-includes 4

--routes-eligible-includes 4 keeps rows whose routes_eligible set contains 4, whether or not 4 was the path taken. Use it to ask "across every observation where path 4 was on the table, how does the metric behave?"

Both options compose with --event-type and --metric, and each is inert when omitted — a plain analyze charts the whole series exactly as before. A narrow partition often falls under the 15-point floor and reports insufficient; keep recording until each path has enough observations.

Record a path

gemba-xmr record writes the grammar for you. Pass --route (and optionally --routes-eligible) and it prepends the tokens to the note, quoting the field automatically:

npx gemba-xmr record --skill kata-implement --metric implementations_shipped \
  --value 2 --route 2 --routes-eligible 2,3

This appends a row whose note is route_taken=2; routes_eligible=[2,3];. The ids must be drawn from the metric's known path set, or record rejects the row.

The three detection rules

gemba-xmr applies the three rules from Wheeler's Understanding Variation:

Rule What it catches Applied to
X-Rule 1 A point outside the natural process limits (UPL or LPL) X chart
X-Rule 2 8 consecutive points on the same side of the centerline X chart
X-Rule 3 3 of any 4 consecutive points strictly beyond +/-1.5 sigma on one side X chart
mR-Rule 1 A moving range point exceeds URL mR chart

Treat each fired rule as a prompt to investigate, not a verdict.

When Rule 2 or Rule 3 fires, all participating slots are listed -- the run as a whole carries the diagnostic information, not just the final point.

Classifications

Classification Meaning What to do
stable No rules activated. The process is predictable. Leave it alone. Intervening makes things worse.
signals At least one X-chart rule activated. Investigate what changed.
chaos mR Rule 1 activated. The variation itself is unstable. Investigate the outsized moves before trusting any limits.
insufficient Fewer than 15 points. Limits are not computed. Keep recording.
degenerate-zero Every observation is zero. Predictable, but the series carries no process signal. Nothing to react to; a predictability target is not substantively met by it.

Summarize across metrics

When you track multiple metrics in one CSV, summarize produces a markdown table:

npx gemba-xmr summarize observations.csv

Each row shows the metric, sample count, latest value, centerline, limits, classification, and a compact signal summary (R1x2, R2x8, etc.). Metrics with fewer than 15 points are listed separately so they do not crowd the active signals.

Orientation commands

List what is in the file before charting:

npx gemba-xmr list observations.csv

Prints one row per metric with the observation count and date range.

What to do when signals appear

  1. Look at the chart. The visual pattern tells you more than the rule name. A Rule 2 run of 8 points above the centerline looks different from a single Rule 1 breach, and the response is different too.
  2. Annotate the CSV. Fill in the note field on the observation where the shift happened with what you discovered. The note is the durable record.
  3. Recompute after a confirmed shift. If the process has genuinely changed (a new deployment, a policy change), pre- and post-shift data are now two different processes -- see One process per chart. Re-run analysis against post-shift data only.

Do not set targets based on the natural process limits. They describe what the process does, not what it should do.

Do not react to individual data points when the classification is stable or degenerate-zero. Both are quiet verdicts: stable is routine common-cause noise, and degenerate-zero is a flat-zero series with no signal at all. Treating either as a problem and intervening makes the process worse on average.

What's next