Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 3.39 KB

File metadata and controls

30 lines (25 loc) · 3.39 KB

ExecutionLogRecord

Example Usage

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

let value: ExecutionLogRecord = {
  timestamp: new Date("2024-09-14T23:41:22.398Z"),
  traceId: "<id>",
  spanId: "<id>",
  severityText: "<value>",
  body: "<value>",
  logAttributes: {
    "key": "<value>",
    "key1": "<value>",
  },
};

Fields

Field Type Required Description
timestamp Date ✔️ N/A
traceId string ✔️ N/A
spanId string ✔️ N/A
severityText string ✔️ N/A
body string ✔️ N/A
logAttributes Record<string, string> ✔️ N/A