From a2b69250413a78dd6f5fa497983d5d880e785112 Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Thu, 24 Mar 2022 06:15:58 -0700 Subject: [PATCH] Update QueueSizeChart to show aggregating task count --- ui/src/components/QueueSizeChart.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/components/QueueSizeChart.tsx b/ui/src/components/QueueSizeChart.tsx index ce005fd..9929fa0 100644 --- a/ui/src/components/QueueSizeChart.tsx +++ b/ui/src/components/QueueSizeChart.tsx @@ -21,6 +21,7 @@ interface TaskBreakdown { queue: string; // name of the queue. active: number; // number of active tasks in the queue. pending: number; // number of pending tasks in the queue. + aggregating: number; // number of aggregating tasks in the queue. scheduled: number; // number of scheduled tasks in the queue. retry: number; // number of retry tasks in the queue. archived: number; // number of archived tasks in the queue. @@ -55,6 +56,7 @@ function QueueSizeChart(props: Props) { +