We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a57103 commit 7211304Copy full SHA for 7211304
core/trino-web-ui/src/main/resources/webapp-preview/src/api/webapp/api.ts
@@ -282,6 +282,11 @@ export interface QueryStageStats {
282
operatorSummaries: QueryStageOperatorSummary[]
283
}
284
285
+export interface QueryPipeline {
286
+ pipelineId: number
287
+ operatorSummaries: QueryStageOperatorSummary[]
288
+}
289
+
290
export interface QueryTask {
291
lastHeartbeat: string
292
needsPlan: boolean
@@ -303,6 +308,7 @@ export interface QueryTask {
303
308
totalCpuTime: string
304
309
totalScheduledTime: string
305
310
userMemoryReservation: string
311
+ pipelines: QueryPipeline[]
306
312
firstStartTime: string
307
313
lastStartTime: string
314
lastEndTime: string
0 commit comments