Skip to main content
The Flow Timeline view shows related logs grouped together, making it easy to trace multi-step operations. Flow Timeline

What is a Flow?

A flow is a series of related logs connected by a shared flowId and ordered by stepIndex. See Flows for a conceptual overview.

Viewing Flows

From the Logs View

  1. Click any log that has a flow ID
  2. In the detail panel, click the flow ID link
  3. View all logs in that flow

Flow Timeline View

The flow timeline displays:
  • All logs in the flow, ordered by step index
  • Time elapsed between steps
  • Total flow duration
  • Visual timeline showing progress

Flow Details

  • Flow Name - Extracted from flow ID (e.g., checkout from checkout-a1b2c3d4)
  • Flow ID - Full identifier
  • Total Steps - Number of logs in the flow
  • Duration - Time from first to last log
  • Status - Success/Error based on final log level

Timeline

Each step shows:
  • Step Index - Position in sequence (0, 1, 2…)
  • Time - When the step occurred
  • Delta - Time since previous step
  • Level - Log level (color-coded)
  • Message - Log message

Example Flow

Filtering Flows

By Flow ID

Search for a specific flow:

By Flow Name

Search flows by prefix:

By Status

Filter to failed flows (those ending with an error):
  1. Filter logs to error level
  2. Look for logs with flowId
  3. Click through to see the full flow

Flow Analysis

Identifying Bottlenecks

Look at the time delta between steps:
The payment step took 3.45 seconds - a potential optimization target.

Error Analysis

When a flow ends in error:
The flow stops at step 2 with an error - expand to see the full error details and stack trace.

Missing Steps

If step indices have gaps, the flow may be incomplete:
Check your log level settings - filtered logs won’t increment the step index, but SDK bugs might.

Best Practices

See Flows — Best Practices for naming, context, completion logging, and cross-service correlation guidelines.

SDK Support

Create flows using the SDK:
See Flow Tracking in the SDK: TypeScript | Python.