# Measure time between steps in Vercel Workflows

DevFeed: [Measure time between steps in Vercel Workflows](<https://devfeed.tech/articles/measure-time-between-steps-in-vercel-workflows-1010.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/measure-time-between-steps-in-vercel-workflows>)

Author: Mitul Shah

Published: 2026-08-05T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Vercel](<https://devfeed.tech/topics/vercel.md>), [observability](<https://devfeed.tech/topics/observability.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>)

Tags: [linux](<https://devfeed.tech/tags/linux.md>), [macos](<https://devfeed.tech/tags/macos.md>), [observability](<https://devfeed.tech/tags/observability.md>), [queue](<https://devfeed.tech/tags/queue.md>), [sdk](<https://devfeed.tech/tags/sdk.md>), [vercel](<https://devfeed.tech/tags/vercel.md>), [windows](<https://devfeed.tech/tags/windows.md>), [workflows](<https://devfeed.tech/tags/workflows.md>)

## AI overview

Vercel Workflows and the Workflow SDK now let users measure the time between steps in the trace viewer. Measurements show sequential gaps, start-time differences for overlapping or nested steps, and timeline gaps that can reveal delayed starts and queue waits.

## Source excerpt

You can now measure the time between any two steps in the trace viewer for Vercel Workflows and the Workflow SDK. Select a step, hold Option on macOS or Alt on Windows and Linux, then hover another step to see a measurement line between them: Between sequential steps, the line measures from the end of the earlier step to the start of the later step. Between overlapping or nested steps, it measures the difference between their start times. With no step selected, hold the modifier to see the gaps across the timeline, now drawn with the same measurement line. This can be useful for spotting delayed starts and queue waits when a run takes longer than its steps account for. To get started, open a workflow run from the Workflows tab in Vercel Observability, or locally with npx workflow@beta web. Read more