Flow Runs

Learn about Flow Runs in Laminar

Overview

Flow Runs in Laminar are instances of flow executions within workflows. They manage and track the transformation and transfer of data from input to transformed data.

Flow Runs are critical for debugging integrations in Laminar. They provide logs and status updates for each execution. They also store execution details, including:

  • Start and completion timestamps to track the duration of data processing.

  • Status updates to monitor the success or failure of the operations.

  • Execution logs for JQ debugging.

  • Payloads, transformations, and responses to verify and validate the data inputs and outputs of the transformations.

Flow Run Model

FieldType

id

Integer (int64)

flowId

Integer (int64)

status

String (enum: Success, Failed, Running)

startedAt

DateTime

completedAt

DateTime, optional

executionLog

String, optional

payload

JSON

transformation

JSON

response

JSON

Last updated