Portal Community

Timing Fields

FieldSource EventFormat
Started AtNodeExecutionStarted.startedAtLocal time: HH:MM:SS.mmm
Completed AtNodeExecutionCompleted.completedAt or NodeExecutionFailed.failedAtLocal time: HH:MM:SS.mmm
DurationNodeExecutionCompleted.durationMsHuman-friendly (e.g., "342ms", "1m 2s")
Retry CountNodeExecutionCompleted.retryCountInteger. 0 = no retries, N = N additional attempts

Duration Includes Retry Time

The durationMs value reported in the NodeExecutionCompleted event covers the total wall-clock time from the first attempt to the final result — including all retry delays. If a node was configured with a 5-second retry backoff and required 3 retries, the durationMs will be significantly larger than the actual execution time of one attempt.

// Example: HTTP node with 3 retries, 2s backoff each
// Attempt 1: 1s execution → fail
// Wait 2s
// Attempt 2: 1s execution → fail
// Wait 2s
// Attempt 3: 1s execution → success
// Total durationMs ≈ 9000ms (3 × 1s execution + 2 × 2s backoff)
// retryCount = 2

Using Timing for Performance Diagnosis