LibraryFirst Way: FlowConceptsWhat is a Value Stream?

FC-01CONCEPTFirst Way: Flow

What is a Value Stream?

The path work takes from idea to customer. Understanding value streams is the foundation of everything in DevOps.

Sources:DevOps HandbookLean Thinking

Video Lesson

A video lesson for this topic is in development. The library articles and mission exercises cover the same material in the meantime.

01

The definition

A value stream is the sequence of activities an organization undertakes to deliver a product or service to a customer. In software, it is the complete path a feature or fix takes from the moment someone has an idea to the moment it is running in production and delivering value to users.

The term comes from Lean Manufacturing, introduced in Lean Thinking by Womack and Jones. Toyota used it to map the physical flow of materials in a factory. The DevOps movement adopted it to map the flow of work in software delivery.

Idea
Planning
Backlog
Scheduling wait
Development
Value-adding
Review
Partial value
Testing
Value-adding
Staging
Wait
Production
Delivered
Value-addingWaste / wait
02

Value-adding vs non-value-adding work

Value-adding

Work that directly transforms the product toward what the customer wants. Writing code, running tests, deploying a working feature.

Non-value-adding / waste

Work that consumes time and resources but does not directly contribute to the customer outcome. Waiting for approval, fixing merge conflicts, manual deployments, waiting for test environments.

In most software teams, less than 15% of total lead time is actual value-adding work. The rest is waste — waiting, handoffs, rework.

03

The two metrics that matter

Lead Time

The total time from when work is requested to when it is delivered. This is what the customer experiences.

Process Time

The time work is actively being worked on. This is what the team experiences.

Formula

Flow Efficiency = Process Time / Lead Time x 100%

Example: If your process time is 3 days but your lead time is 30 days, your flow efficiency is 10%. 90% of the time, work is sitting idle.

04

Why value streams matter in DevOps

The First Way of DevOps is about making work flow fast from left to right — from development to operations to the customer. You cannot improve what you cannot see. Mapping your value stream makes the invisible visible: it shows where work piles up, where handoffs create delays, and where automation can eliminate waste.

Visibility before improvement

You cannot fix what you cannot see. Value stream mapping is the diagnostic tool — it gives you a baseline before you change anything.

Systemic thinking

Local optimizations (making one step faster) often do not improve the whole. Focus on the end-to-end flow, not individual stages.

The customer perspective

Lead time is what the customer experiences. Optimizing process time without reducing lead time delivers no value to customers.

05

Value streams at Nexus Corp

In Mission 01, you mapped the Nexus Corp value stream. Here is what you found:

StepProcess TimeWait TimeValue-adding?
Idea to ticket2 days5 daysNo — planning waste
Development3 days3 daysYes / No
Code review4 hours1 dayYes / No
QA testing2 days5 daysYes / No
ACC deployment1 day8 daysNo — scheduling waste
Production deploy4 hours12 daysNo — batch release waste
Total7.5 days34 daysFlow efficiency: 18%

Every mission you complete improves this. The pipeline you built in M-03 eliminated the manual deployment wait. Environments in M-02 eliminated the test environment wait.

06

Further reading

DevOps Handbook

Chapter 2: The First Way — The Principles of Flow. The foundational text on making work flow fast through the technology value stream.

Lean Thinking — Womack & Jones

Chapter 2: Value Stream. The original source of value stream mapping from Lean Manufacturing.

The Phoenix Project

Part 1: The flow of work through IT. A novel-format introduction to how value stream thinking transforms a struggling IT organization.

DORA 2023 State of DevOps Report

Elite performer lead times: less than one hour from commit to production. A benchmark for what good looks like.