Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 7.25 KB

File metadata and controls

39 lines (34 loc) · 7.25 KB

WorkflowExecutionTraceOTelResponse

Example Usage

import { WorkflowExecutionTraceOTelResponse } from "@mistralai/mistralai/models/components";

let value: WorkflowExecutionTraceOTelResponse = {
  workflowName: "<value>",
  executionId: "<id>",
  rootExecutionId: "<id>",
  status: "TERMINATED",
  startTime: new Date("2024-09-24T11:44:01.282Z"),
  endTime: new Date("2025-12-13T03:23:18.150Z"),
  result: "<value>",
  dataSource: "<value>",
};

Fields

Field Type Required Description
workflowName string ✔️ The name of the workflow
workflowId string The ID of the workflow
deploymentName string The name of the deployment that ran this execution
executionId string ✔️ The ID of the workflow execution
parentExecutionId string The parent execution ID of the workflow execution
rootExecutionId string ✔️ The root execution ID of the workflow execution
runId string The unique run identifier (database UUID)
userId string The ID of the user who triggered the execution
status components.WorkflowExecutionStatus ✔️ The status of the workflow execution
startTime Date ✔️ The start time of the workflow execution
endTime Date ✔️ The end time of the workflow execution, if available
totalDurationMs number The total duration of the trace in milliseconds
result any ✔️ The result of the workflow execution, if available
dataSource string ✔️ The data source of the trace
otelTraceId string The ID of the trace
otelTraceData components.TempoGetTraceResponse The raw OpenTelemetry trace data