Rename DeadTask to ArchivedTask, and action Kill to Archive

This commit is contained in:
Ken Hibino
2021-01-12 11:59:44 -08:00
parent 95eb3e0855
commit 34b6553d7d
19 changed files with 1071 additions and 650 deletions

View File

@@ -20,7 +20,7 @@ interface TaskBreakdown {
pending: number; // number of pending tasks in the queue.
scheduled: number; // number of scheduled tasks in the queue.
retry: number; // number of retry tasks in the queue.
dead: number; // number of dead tasks in the queue.
archived: number; // number of archived tasks in the queue.
}
function QueueSizeChart(props: Props) {
@@ -36,7 +36,7 @@ function QueueSizeChart(props: Props) {
<Bar dataKey="pending" stackId="a" fill="#669df6" />
<Bar dataKey="scheduled" stackId="a" fill="#fdd663" />
<Bar dataKey="retry" stackId="a" fill="#f666a9" />
<Bar dataKey="dead" stackId="a" fill="#ac4776" />
<Bar dataKey="archived" stackId="a" fill="#ac4776" />
</BarChart>
</ResponsiveContainer>
);