interface RunUpdate {
    attachments?: Attachments;
    dotted_order?: string;
    end_time?: number;
    error?: string;
    events?: KVMap[];
    extra?: KVMap;
    id?: string;
    inputs?: KVMap;
    outputs?: KVMap;
    parent_run_id?: string;
    reference_example_id?: string;
    session_id?: string;
    tags?: string[];
    trace_id?: string;
}

属性

attachments?: Attachments

与运行相关的附件。每个条目都是 [mime_type, bytes] 的元组

dotted_order?: string

运行的点状顺序。

这是一个由 {时间}{运行 UUID}.* 组成的字符串,以便可以按照执行顺序对追踪进行排序。

示例

  • 父级: 20230914T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8
  • 子级
    • 20230914T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8.20230914T223155649Z809ed3a2-0172-4f4d-8a02-a64e9b7a0f8a
    • 20230915T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8.20230914T223155650Zc8d9f4c5-6c5a-4b2d-9b1c-3d9d7a7c5c7c
end_time?: number
error?: string
events?: KVMap[]
extra?: KVMap
id?: string
inputs?: KVMap
outputs?: KVMap
parent_run_id?: string
reference_example_id?: string
session_id?: string
tags?: string[]
trace_id?: string

分配给此嵌套追踪中每次运行的唯一 ID。 *