Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
103917: ui: add Merge Queue Processing and Failures metrics on charts  r=koorosh a=koorosh

`Queue Processing Failures` and `Queue Processing Times` charts didn't include metrics about merge queues. Now corespondent metrics added to charts as well.

Release note (ui change): added Merge Queue failures and Merge queue processing time metrics to `Queue Processing Failures` and `Queue Processing Times` charts respectively.

Resolves: cockroachdb#84098

![Screenshot 2023-05-25 at 23 13 18](https://github.com/cockroachdb/cockroach/assets/3106437/ec23fa4b-29bc-4ea8-839f-cf214dc47185)



Co-authored-by: Andrii Vorobiov <[email protected]>
  • Loading branch information
craig[bot] and koorosh committed May 29, 2023
2 parents 87c6775 + 2bcc110 commit 7024705
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ export default function (props: GraphDashboardProps) {
title="Split"
nonNegativeRate
/>
<Metric
name="cr.store.queue.merge.process.failure"
title="Merge"
nonNegativeRate
/>
<Metric
name="cr.store.queue.consistency.process.failure"
title="Consistency"
Expand Down Expand Up @@ -87,6 +92,11 @@ export default function (props: GraphDashboardProps) {
title="Split"
nonNegativeRate
/>
<Metric
name="cr.store.queue.merge.processingnanos"
title="Merge"
nonNegativeRate
/>
<Metric
name="cr.store.queue.consistency.processingnanos"
title="Consistency"
Expand Down

0 comments on commit 7024705

Please sign in to comment.