Skip to content

Process Observability: What You Should See a Month After Launch

Process Observability: What You Should See a Month After Launch

In our proposal generator, we tracked two kinds of statistics from day one: performance by account manager, and which proposal types generated the most demand. It was the simplest part of the service to build — and the only part that let us answer "is this working?" with numbers instead of impressions.

A month after any process goes live, a leader asks the same question. If the answer comes back as "the team likes it" and "it feels smoother," what got launched wasn't a process — it was a demo. Process observability (the property of a system that lets you reconstruct its internal state from external data) gets built in before launch. It almost never gets added afterward.

In short

The minimum observability set is three numbers: how many scenarios reached completion, what share ended in failure, and how much time passed from start to result. That's enough to tell improvement from luck. Anything beyond these three gets added later, as specific questions come up — not upfront, because extra metrics distort behavior faster than they inform it.

3numbers in the minimum observability set
51%match between the formal process model and actual execution, in one of the cases examined below
54%of organizations have deployed AI system monitoring in production

The Three Numbers Every Process Needs

The set stays minimal not to save effort, but because practice demands it: every extra number needs an owner, and it opens conversations that don't lead anywhere near a decision. The three metrics below each answer a different question, and none of them substitutes for another.

Number of completed scenarios. Not the number of users, not the number of logins — the number of cases where the process ran from start to finish. This is the only metric that tells work apart from activity: a user can log in every day and never complete a single scenario.

Failure rate. A failure is a case where the work got done on paper but the result never moved forward: the document wasn't sent, the request wasn't assigned, the answer wasn't logged. This rate drops when you fix something and rises under load — it's how you tell whether a process is resilient or just held together by people pushing harder.

Time from start to result. Median, not average: the distribution almost always has a long tail, and the average describes none of the real cases in it. The median answers "how long does this usually take"; the tail answers "what's breaking."

MetricWhat it answersWhat gets substituted for it
Completed scenariosIs work actually flowing through the processNumber of active users
Failure rateIs the process resilientNumber of support tickets
Median timeDid things actually get fasterAverage time or the team's gut estimate

The third column matters: the substitute almost always looks plausible, and it always makes things look better than they are. Active user counts rise on curiosity alone, support tickets fall once people stop expecting help, and average time improves the moment you drop the outliers.

Why Your Process Model Diverges From Actual Execution

There's another reason observability matters: the process you describe on paper and the process that actually happens are two different things, and the gap between them is measurable. The method for reconciling event logs against a formal model — conformance checking — has been around for a while, and it produces gaps larger than most people expect.

Research

When real event logs were checked against a formal process model, the match came out to 0.51 for one administrative process (35 cases) and 0.80 for a permit-issuance process (407 cases). The gaps traced back to manual record edits by administrators and misconfigured parallel branches.

Anne Rozinat, Wil M. P. van der Aalst (Eindhoven University of Technology). "Conformance checking of processes based on monitoring real behavior," Information Systems, 2008. Event logs matched against Petri nets across four administrative processes at a Dutch municipality and one service-oriented system · vdaalst.com (PDF)

The study is nearly twenty years old, and it covers the Dutch public sector — that's its limitation. The method, though, is still a cornerstone of process mining, and the underlying result holds up in any organization where someone actually bothers to compare the documented procedure against the logs. The practical takeaway: a gap covering up to half of all cases isn't an anomaly. It's the norm for a process nobody is watching.

A process nobody observes doesn't run the way it's described. The only open question is how big the gap is.

The Performance Gap Between Teams That Measure and Teams That Don't

The link between the ability to measure and actual results is best documented in software engineering, where metrics are standardized and have been collected for years.

Research

The gap between top- and bottom-tier teams reaches 182 times on change failure rate and 2 293 times on recovery time after an incident. Between two adjacent maturity groups, the gap in change failure rate runs 5% versus 20%.

DORA (DevOps Research and Assessment), Google Cloud. "2024 Accelerate State of DevOps Report," 2024. Annual global practitioner survey, more than 39 000 respondents, cluster analysis identifying four maturity groups plus in-depth interviews · dora.dev (PDF)

Let me name the limitation directly: the report doesn't prove that observability alone causes the result — it shows that groups at different maturity levels also differ in their ability to count their own failures. Causality isn't established here, and I'm using these numbers to illustrate the scale of the gap, not as proof of a causal link.

Observability for AI Scenarios: A Special Case

For scenarios built on language models, a fourth number joins the baseline three: the share of results a human had to correct. Without it, any claim about a better prompt or a better model stays a matter of faith.

Research

The share of organizations that have deployed AI system monitoring in production grew from 42% in 2024 to 54% in 2025.

New Relic with Enterprise Technology Research, "2025 Observability Forecast," September 2025. Online survey of more than 1 700 IT and engineering leaders across more than 20 countries; 65% of respondents were practitioners, 24% managers, 11% executives · newrelic.com (PDF)

This needs the precision that usually gets lost in summaries: the report measures whether organizations deployed AI system monitoring at all, not whether they specifically monitor answer quality. There's no separate figure for accuracy control or the share of erroneous outputs. And this is a survey run by a vendor of observability tools — the commercial interest is obvious. What's still useful is the direction: nearly half of companies push AI scenarios into production without built-in control over how those systems actually behave.

Why Your KPI Set Should Stay Small

The temptation to measure everything shows up immediately, and it wins almost every time. The argument against it is older than any dashboard: a metric that becomes a target stops being a metric — the mechanism widely known today as Goodhart's law.

Research

A measurement-and-ranking mechanism doesn't stay a neutral observer: it starts acting on its own, and it erodes the very thing it was supposed to track. This work is the source of the widely known formulation about a metric that becomes a target.

Marilyn Strathern (University of Cambridge). "'Improving ratings': audit in the British university system," European Review, July 1997. Anthropological analysis of audit and ranking practices in British universities; not a quantitative study · cambridge.org

One caveat: the full text is paywalled, and I worked from the abstract — the famous phrasing itself doesn't appear in the open portion, though it's widely attributed to this paper. I'm using it as a conceptual argument, not a direct quote. The practical consequence is straightforward: any metric people get evaluated on starts steering their behavior, which is exactly why a set of three numbers is safer than a set of fifteen.

How to Build Observability Before Launch

Four decisions to make before launch. After launch, the first three cost several times more to fix — and the fourth becomes impossible.
01What counts as a completed scenario
02What counts as a failure
03Where the start and end timestamps get set
04The baseline measurement
a month in, the three numbers get compared against the "before" baseline — with no baseline, there's nothing to compare against

The fourth decision is the only one you can't undo later. A baseline measurement takes half a day and gets done manually on the last twenty results before launch. Companies that skip this step spend their one-month review discussing memories of how things used to be, not an actual effect. The same logic runs through this breakdown of how to split an effect into its components: without a baseline, that kind of decomposition isn't possible in the first place.

The first three decisions look technical, but the process owner is the one who makes them. Deciding what counts as a failure isn't an architecture question — it's a question of where the company draws the line between work that's done and work that isn't.

Four Steps to Take Before Launch

01

Write the completed scenario in one sentence

If it needs conditions and caveats to make sense, the process isn't defined precisely enough to measure yet.

02

Name three types of failure

Not "errors" — concrete events: not sent, not assigned, not logged. Three is enough to start with.

03

Take a baseline reading on twenty cases

Half a day of work. The one thing you can't reconstruct after launch.

04

Set a fixed day for reviewing the numbers

A specific day of the week and a specific person. A metric with no review schedule doesn't really exist.

If, a month after launch, the answer to "is it working?" comes in words instead of three numbers, the project was a demo — no matter what the sign-off document says.

Frequently Asked Questions About Process Observability

What metrics do you need to evaluate a process you've just rolled out?

Three: the number of completed scenarios, the failure rate, and the median cycle time from start to result. For AI scenarios, add a fourth — the share of results a human corrected. More than four metrics at launch does more harm than good: each one needs an owner, and each starts shaping employee behavior before it has a chance to deliver any real insight.

Why is median cycle time better than average?

The distribution of execution time almost always has a long tail: most cases take a few minutes, a handful take several days. The average of that kind of distribution describes none of the real cases and swings on a single outlier. The median answers "how long does this usually take," and the tail gets analyzed separately as a source of information about what's actually breaking.

Can you add observability after launch?

Partly. Counters and timestamps can be added later, though at a higher cost. What you can't recover is the baseline measurement: without it, every comparison turns into an argument about memories. If you missed it, the only honest fix is to reconstruct it from records covering the period before rollout — and say plainly that it's a reconstruction, not a measurement.

Won't employees just start gaming the numbers?

They will, if people get evaluated on those numbers. That's why the three baseline metrics should stay process metrics, not personal performance metrics — discussed in terms of "what's breaking," not "who's to blame." The moment the failure rate becomes the basis for a bonus, it stops reflecting reality. That's a stable property of measurement in any organization, not a one-off risk.

Where the internal numbers come from

The mechanics of tracking statistics by account manager and by demand for individual proposal types come from the product description of Alego.Digital, the author's own proposal generator. This is internal company material; it hasn't been verified by an independent party and is presented here as an illustration of the mechanics, not as a benchmark. The three-metric baseline set and the sequence of four pre-launch decisions are the author's own synthesis of implementation practice, not a borrowed methodology — they aren't formalized in any company document.

External sources
  1. Rozinat A., van der Aalst W. M. P. Conformance checking of processes based on monitoring real behavior. Information Systems, 2008. vdaalst.com
  2. DORA, Google Cloud. 2024 Accelerate State of DevOps Report, 2024 (more than 39 000 respondents). dora.dev
  3. New Relic, Enterprise Technology Research. 2025 Observability Forecast, September 2025. newrelic.com
  4. Strathern M. "Improving ratings": audit in the British university system. European Review, 1997. cambridge.org