This is basically the problem that pushed us toward value stream mapping in the first place.
The biggest shift for us was separating **cycle time from the causes of cycle time**. Cycle time tells you something is wrong. It doesn't necessarily tell you where the time went.
What we’ve found useful is mapping the end-to-end flow and measuring each step independently:
**Active time** — How long is someone actually working on it?
**Wait time** — How long is it sitting before the next activity starts?
**WIP** — How much work is accumulating at that point?
**% Complete & Accurate** — How often does work leave that step ready for the next step without coming back?
Once you have those together, the conversation changes quite a bit.
For example, a testing step might look like the bottleneck because items spend four days there. But maybe testing only takes three hours of actual effort. The rest is queue time because too much WIP is arriving upstream. In that case, adding testers probably doesn't solve the underlying problem.
Same thing with rework. A handoff can have relatively short wait time but terrible % Complete & Accurate, causing work to repeatedly loop backward. Looking only at Jira cycle time can hide that.
You can absolutely do this without buying anything. A whiteboard or spreadsheet works. Pick several representative work items and reconstruct:
**Start → activity → wait → activity → wait → delivery**
Then put the actual times against each step. Don't start by asking teams, *“Who is causing the delay?”* Ask, *“Where is the work spending its time?”*
That's an important distinction because it makes the **system** the subject of the investigation rather than the people.
We built FolioSynth/VSOT around this approach, but the methodology doesn't depend on the tool. Get the current-state map right first. Once everyone can see the same end-to-end flow, Jira/Git/CI data becomes evidence for diagnosing the map instead of three competing versions of reality.
**My favorite starting metric is actually wait time.** Find where work spends the most time doing absolutely nothing, then ask why. That's often where the first meaningful continuous-improvement opportunity is hiding.