Skip to content

Commit

Permalink
Last round of reviews.
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 904e1ce commit 8388d6e
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions operations/mimir-mixin/dashboards/queries.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ local filename = 'mimir-queries.json';
$._config.show_ingest_storage_panels,
($.row('Ingester (ingest storage: strong consistency)'))
.addPanel(
$.timeseriesPanel('Requests with strong consistency') +
$.timeseriesPanel('Requests with strong read consistency / sec') +
$.panelDescription(
'Requests with strong consistency',
'Requests with strong read consistency / sec',
|||
Shows rate of requests with strong consistency, and rate of failed requests with strong consistency.
Shows rate of requests with strong read consistency, and rate of failed requests with strong read consistency.
|||
) +
$.queryPanel(
Expand All @@ -190,21 +190,21 @@ local filename = 'mimir-queries.json';
||| % [$.jobMatcher($._config.job_names.ingester)],
],
[
'requests',
'successful',
'failed',
],
) + {
fieldConfig+: {
defaults+: { unit: 'reqps' },
},
} + $.aliasColors({ failed: $._colors.failed }) + $.stack,
} + $.aliasColors({ successful: $._colors.success, failed: $._colors.failed }) + $.stack,
)
.addPanel(
$.timeseriesPanel('Requests with strong consistency ratio') +
$.timeseriesPanel('Requests with strong read consistency ratio') +
$.panelDescription(
'Requests with strong consistency ratio',
'Requests with strong read consistency ratio',
|||
Ratio between requests with strong consistency and all read requests on ingesters.
Ratio between requests with strong read consistency and all read requests on ingesters.
|||
) +
$.queryPanel(
Expand All @@ -231,11 +231,11 @@ local filename = 'mimir-queries.json';
+ $.stack
)
.addPanel(
$.timeseriesPanel('Strong consistency queries — wait latency') +
$.timeseriesPanel('Strong read consistency queries — wait latency') +
$.panelDescription(
'Strong consistency queries — wait latency',
'Strong read consistency queries — wait latency',
|||
How long does the request wait to guarantee strong consistency.
How long does the request wait to guarantee strong read consistency.
|||
) +
$.queryPanel(
Expand Down Expand Up @@ -281,14 +281,14 @@ local filename = 'mimir-queries.json';
||| % [$.jobMatcher($._config.job_names.ingester)],
],
[
'requests',
'successful',
'failed',
],
) + {
fieldConfig+: {
defaults+: { unit: 'reqps' },
},
} + $.aliasColors({ failed: $._colors.failed }) + $.stack,
} + $.aliasColors({ successful: $._colors.success, failed: $._colors.failed }) + $.stack,
)
.addPanel(
$.timeseriesPanel('Last produced offset latency') +
Expand Down

0 comments on commit 8388d6e

Please sign in to comment.