Skip to content

Commit

Permalink
Enhance description of failed reads.
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Štibraný <[email protected]>
  • Loading branch information
pstibrany committed Mar 20, 2024
1 parent bc5a453 commit 904e1ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions operations/mimir-mixin/dashboards/queries.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ local filename = 'mimir-queries.json';
+ $.stack
)
.addPanel(
$.timeseriesPanel('Strong consistency wait latency') +
$.timeseriesPanel('Strong consistency queries — wait latency') +
$.panelDescription(
'Strong consistency – Wait latency',
'Strong consistency queries — wait latency',
|||
How long does the request wait to guarantee strong consistency.
|||
Expand Down
3 changes: 2 additions & 1 deletion operations/mimir-mixin/dashboards/writes.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ local filename = 'mimir-writes.json';
'Kafka fetches / sec',
|||
Rate of fetches received from Kafka brokers. A fetch can contain multiple records (a write request received on the write path is mapped into a single record).
Read errors are any errors reported on connection to Kafka brokers, and are separate from "failed" fetches.
|||
) +
$.queryPanel(
Expand All @@ -263,7 +264,7 @@ local filename = 'mimir-writes.json';
'failed',
'read errors',
],
) + $.aliasColors({ failed: $._colors.failed, 'read errors': $._colors.failed }) + $.stack,
) + $.aliasColors({ successful: $._colors.success, failed: $._colors.failed, 'read errors': $._colors.failed }) + $.stack,
)
.addPanel(
$.timeseriesPanel('Kafka records / sec') +
Expand Down

0 comments on commit 904e1ce

Please sign in to comment.