-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathtaskEvents.ts
More file actions
329 lines (302 loc) · 8.77 KB
/
taskEvents.ts
File metadata and controls
329 lines (302 loc) · 8.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
import { ClickHouseSettings } from "@clickhouse/client";
import { z } from "zod";
import { ClickhouseReader, ClickhouseWriter } from "./client/types.js";
export const TaskEventV1Input = z.object({
environment_id: z.string(),
organization_id: z.string(),
project_id: z.string(),
task_identifier: z.string(),
run_id: z.string(),
start_time: z.string(),
duration: z.string(),
trace_id: z.string(),
span_id: z.string(),
parent_span_id: z.string(),
message: z.string(),
kind: z.string(),
status: z.string(),
attributes: z.unknown(),
metadata: z.string(),
expires_at: z.string(),
});
export type TaskEventV1Input = z.input<typeof TaskEventV1Input>;
export function insertTaskEvents(ch: ClickhouseWriter, settings?: ClickHouseSettings) {
return ch.insertUnsafe<TaskEventV1Input>({
name: "insertTaskEvents",
table: "trigger_dev.task_events_v1",
settings: {
enable_json_type: 1,
type_json_skip_duplicated_paths: 1,
input_format_json_throw_on_bad_escape_sequence: 0,
input_format_json_use_string_type_for_ambiguous_paths_in_named_tuples_inference_from_objects: 1,
...settings,
},
});
}
export const TaskEventSummaryV1Result = z.object({
span_id: z.string(),
parent_span_id: z.string(),
run_id: z.string(),
start_time: z.string(),
duration: z.number().or(z.string()),
status: z.string(),
kind: z.string(),
metadata: z.string(),
message: z.string(),
});
export type TaskEventSummaryV1Result = z.output<typeof TaskEventSummaryV1Result>;
export function getTraceSummaryQueryBuilder(ch: ClickhouseReader, settings?: ClickHouseSettings) {
return ch.queryBuilderFast<TaskEventSummaryV1Result>({
name: "getTraceEvents",
table: "trigger_dev.task_events_v1",
columns: [
"span_id",
"parent_span_id",
"run_id",
"start_time",
"duration",
"status",
"kind",
"metadata",
{ name: "message", expression: "LEFT(message, 256)" },
],
settings,
});
}
export const TaskEventDetailedSummaryV1Result = z.object({
span_id: z.string(),
parent_span_id: z.string(),
run_id: z.string(),
start_time: z.string(),
duration: z.number().or(z.string()),
status: z.string(),
kind: z.string(),
metadata: z.string(),
message: z.string(),
attributes_text: z.string(),
});
export type TaskEventDetailedSummaryV1Result = z.output<typeof TaskEventDetailedSummaryV1Result>;
export function getTraceDetailedSummaryQueryBuilder(
ch: ClickhouseReader,
settings?: ClickHouseSettings
) {
return ch.queryBuilderFast<TaskEventDetailedSummaryV1Result>({
name: "getTaskEventDetailedSummary",
table: "trigger_dev.task_events_v1",
columns: [
"span_id",
"parent_span_id",
"run_id",
"start_time",
"duration",
"status",
"kind",
"metadata",
{ name: "message", expression: "LEFT(message, 256)" },
"attributes_text",
],
settings,
});
}
export const TaskEventDetailsV1Result = z.object({
span_id: z.string(),
parent_span_id: z.string(),
start_time: z.string(),
duration: z.number().or(z.string()),
status: z.string(),
kind: z.string(),
metadata: z.string(),
message: z.string(),
attributes_text: z.string(),
});
export type TaskEventDetailsV1Result = z.input<typeof TaskEventDetailsV1Result>;
export function getSpanDetailsQueryBuilder(ch: ClickhouseReader, settings?: ClickHouseSettings) {
return ch.queryBuilder({
name: "getSpanDetails",
baseQuery:
"SELECT span_id, parent_span_id, start_time, duration, status, kind, metadata, message, attributes_text FROM trigger_dev.task_events_v1",
schema: TaskEventDetailsV1Result,
settings,
});
}
// ============================================================================
// V2 Table Functions (partitioned by inserted_at instead of start_time)
// ============================================================================
export const TaskEventV2Input = z.object({
environment_id: z.string(),
organization_id: z.string(),
project_id: z.string(),
task_identifier: z.string(),
run_id: z.string(),
start_time: z.string(),
duration: z.string(),
trace_id: z.string(),
span_id: z.string(),
parent_span_id: z.string(),
message: z.string(),
kind: z.string(),
status: z.string(),
attributes: z.unknown(),
metadata: z.string(),
expires_at: z.string(),
// inserted_at has a default value in the table, so it's optional for inserts
inserted_at: z.string().optional(),
});
export type TaskEventV2Input = z.input<typeof TaskEventV2Input>;
export function insertTaskEventsV2(ch: ClickhouseWriter, settings?: ClickHouseSettings) {
return ch.insertUnsafe<TaskEventV2Input>({
name: "insertTaskEventsV2",
table: "trigger_dev.task_events_v2",
settings: {
enable_json_type: 1,
type_json_skip_duplicated_paths: 1,
input_format_json_throw_on_bad_escape_sequence: 0,
input_format_json_use_string_type_for_ambiguous_paths_in_named_tuples_inference_from_objects: 1,
...settings,
},
});
}
export function getTraceSummaryQueryBuilderV2(
ch: ClickhouseReader,
settings?: ClickHouseSettings
) {
return ch.queryBuilderFast<TaskEventSummaryV1Result>({
name: "getTraceEventsV2",
table: "trigger_dev.task_events_v2",
columns: [
"span_id",
"parent_span_id",
"run_id",
"start_time",
"duration",
"status",
"kind",
"metadata",
{ name: "message", expression: "LEFT(message, 256)" },
],
settings,
});
}
export function getTraceDetailedSummaryQueryBuilderV2(
ch: ClickhouseReader,
settings?: ClickHouseSettings
) {
return ch.queryBuilderFast<TaskEventDetailedSummaryV1Result>({
name: "getTaskEventDetailedSummaryV2",
table: "trigger_dev.task_events_v2",
columns: [
"span_id",
"parent_span_id",
"run_id",
"start_time",
"duration",
"status",
"kind",
"metadata",
{ name: "message", expression: "LEFT(message, 256)" },
"attributes_text",
],
settings,
});
}
export function getSpanDetailsQueryBuilderV2(
ch: ClickhouseReader,
settings?: ClickHouseSettings
) {
return ch.queryBuilder({
name: "getSpanDetailsV2",
baseQuery:
"SELECT span_id, parent_span_id, start_time, duration, status, kind, metadata, message, attributes_text FROM trigger_dev.task_events_v2",
schema: TaskEventDetailsV1Result,
settings,
});
}
// ============================================================================
// Search Table Query Builders (for logs page, using task_events_search_v1)
// ============================================================================
export const LogsSearchListResult = z.object({
environment_id: z.string(),
organization_id: z.string(),
project_id: z.string(),
task_identifier: z.string(),
run_id: z.string(),
start_time: z.string(),
trace_id: z.string(),
span_id: z.string(),
parent_span_id: z.string(),
message: z.string(),
kind: z.string(),
status: z.string(),
duration: z.number().or(z.string()),
attributes_text: z.string(),
triggered_timestamp: z.string(),
});
export type LogsSearchListResult = z.output<typeof LogsSearchListResult>;
export function getLogsSearchListQueryBuilder(
ch: ClickhouseReader,
settings?: ClickHouseSettings
) {
return ch.queryBuilderFast<LogsSearchListResult>({
name: "getLogsSearchList",
table: "trigger_dev.task_events_search_v1",
columns: [
"environment_id",
"organization_id",
"project_id",
"task_identifier",
"run_id",
"start_time",
"trace_id",
"span_id",
"parent_span_id",
{ name: "message", expression: "LEFT(message, 256)" },
"kind",
"status",
"duration",
"attributes_text",
"triggered_timestamp",
],
settings,
});
}
// Single log detail query builder (for side panel)
export const LogDetailV2Result = z.object({
environment_id: z.string(),
organization_id: z.string(),
project_id: z.string(),
task_identifier: z.string(),
run_id: z.string(),
start_time: z.string(),
trace_id: z.string(),
span_id: z.string(),
parent_span_id: z.string(),
message: z.string(),
kind: z.string(),
status: z.string(),
duration: z.number().or(z.string()),
attributes_text: z.string()
});
export type LogDetailV2Result = z.output<typeof LogDetailV2Result>;
export function getLogDetailQueryBuilderV2(ch: ClickhouseReader, settings?: ClickHouseSettings) {
return ch.queryBuilderFast<LogDetailV2Result>({
name: "getLogDetail",
table: "trigger_dev.task_events_v2",
columns: [
"environment_id",
"organization_id",
"project_id",
"task_identifier",
"run_id",
"start_time",
"trace_id",
"span_id",
"parent_span_id",
"message",
"kind",
"status",
"duration",
"attributes_text",
],
settings,
});
}