Skip to content

Commit c767397

Browse files
committed
Add query stage pipeline operator task statistics to Preview Web UI
1 parent 77af5ad commit c767397

File tree

4 files changed

+364
-87
lines changed

4 files changed

+364
-87
lines changed

core/trino-web-ui/src/main/resources/webapp-preview/src/api/webapp/api.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,11 @@ export interface QueryStageStats {
282282
operatorSummaries: QueryStageOperatorSummary[]
283283
}
284284

285+
export interface QueryPipeline {
286+
pipelineId: number
287+
operatorSummaries: QueryStageOperatorSummary[]
288+
}
289+
285290
export interface QueryTask {
286291
lastHeartbeat: string
287292
needsPlan: boolean
@@ -303,6 +308,7 @@ export interface QueryTask {
303308
totalCpuTime: string
304309
totalScheduledTime: string
305310
userMemoryReservation: string
311+
pipelines: QueryPipeline[]
306312
}
307313
taskStatus: {
308314
nodeId: string

0 commit comments

Comments
 (0)