Skip to main content

Metrics & Health Scoring

Every process is measured across seven metric families, then those measurements roll up into six sub-scores, a single health score, and a risk tier. All of it is computed in code and is fully reproducible.

The seven metric families

Family 1: Structural

How complex the process is, and whether its shape is sound. Complexity is the strongest predictor of maintenance cost and defect rate.

MetricWhat it tells you
Stage Count, Transition CountThe raw size of the process graph
Cyclomatic ComplexityThe number of independent paths through the process, the core complexity signal
Path Explosion FactorHow many distinct routes the process can take
Handoff Count, Handoff RatioHow many times work changes hands, and how dense those handoffs are
Process DepthThe longest chain of stages from start to finish
Rework Risk IndexHow prone the process is to loops and rework
Stage Fan-In Max, Fan-Out MaxThe busiest convergence and divergence points
Cycle DetectedWhether the graph contains a cycle
Orphan Stages, Dead StagesStages that cannot be reached, and stages with no way out

Family 2: SLA

Whether the process can meet its time commitments, and where the time goes.

MetricWhat it tells you
Overall SLA DaysThe declared end-to-end target
SLA SlackHow much headroom exists against that target
Impossible SLAWhether the target is unachievable given the stage durations
SLA Buffer RatioThe buffer expressed as a fraction of the SLA
SLA Coverage GapThe share of the process that has no SLA defined at all
SLA Hotspot StageThe single stage that consumes the most time
SLA Concentration IndexHow concentrated the time budget is in one stage
Average Stage Duration, SLA VarianceThe central tendency and the spread of stage durations

Family 3: Automation & Lean

How much of the process runs itself, and how much waste it carries.

MetricWhat it tells you
Value-Added RatioThe share of stages that add value
Automation RateThe share of stages that are automated
NVA Stage CountThe number of non-value-added stages
Waste IndexAn aggregate measure of process waste
Automation Opportunity ScoreManual stages that are good candidates for automation
Manual-to-Auto RatioThe balance of manual versus automated work

Family 4: Governance

Whether the process has the controls a well-run operation needs.

MetricWhat it tells you
Entry Criteria Coverage, Completion Criteria CoverageThe share of stages with defined entry and exit conditions
Segregation of Duties RiskWhether one actor holds conflicting responsibilities
Documentation ScoreHow well the stages are documented
Exception Handler CoverageHow much of the process has exception handling
Escalation Path DefinedWhether an escalation route exists
Approval Stage CountHow many approval gates the process contains

Family 5: Actor & Persona

Who does the work, and how much key-person risk the process carries.

MetricWhat it tells you
Actor Concentration Index (HHI)How concentrated the workload is across actors
Gini CoefficientHow unequally work is distributed
Single Point of Failure RiskWhether one actor is indispensable
Bus FactorHow many actors could leave before the process stalls
Unique Actor Count, Max Actor Stage LoadHow many actors are involved, and how loaded the busiest one is
Actor Diversity IndexHow evenly work is spread
Cross-Functional Boundary CountHow many team or role boundaries the process crosses
Actor-Stage BreakdownA per-actor map of stage assignments

Family 6: Path Analysis

The routes work actually takes, from the fastest to the worst case.

MetricWhat it tells you
Happy Path (stage count and SLA)The intended, shortest successful route
Critical Path (stage count and SLA)The longest and slowest route
Shortest and Longest Path Stage CountThe bounds on route length
All Paths CountThe total number of distinct routes
Detour RatioThe critical path length divided by the happy path length
SLA Amplification FactorHow much worse the critical-path SLA is than the happy path
Exception Path CountHow many rejection or error routes exist

Family 7: Six Sigma (estimated)

An estimate of how capable the process is of meeting its target.

MetricWhat it tells you
Process Capability IndexThe estimated ability of the process to stay within its SLA

The health score

The seven families roll up into six sub-scores, each on a 0 to 100 scale, which combine into a single composite health score. The weighting is set per project and must sum to 1.0.

Sub-scoreWhat it rewardsDefault weight
StructuralLow complexity, no cycles, no orphan or dead stages0.20
SLAAchievable SLAs, good coverage, no single-stage concentration0.25
AutomationHigh automation, little waste0.15
GovernanceCriteria coverage, exception handling, no SoD risk0.20
ActorNo single point of failure, healthy bus factor, even workload0.10
PathShort detours, low SLA amplification, little rework0.10

Risk tiers

The composite score maps to a risk tier, so a portfolio can be triaged at a glance. The tier boundaries are configurable. The defaults are:

TierHealth score
Low75 and above
Medium55 to 74
High35 to 54
Criticalbelow 35

Because both the weights and the tier boundaries are per-project settings, you can calibrate the model to your own definition of healthy. See Configuration & API.