Skip to content

Commit

Permalink
Dashboards: clarify write requests processed from Kafka
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Pracucci <[email protected]>
  • Loading branch information
pracucci committed Nov 14, 2024
1 parent 180c6cd commit aac040f
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions operations/mimir-mixin/dashboards/writes.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,15 @@ local filename = 'mimir-writes.json';
) + $.aliasColors({ successful: $._colors.success, failed: $._colors.failed, 'read errors': $._colors.failed }) + $.stack,
)
.addPanel(
$.timeseriesPanel('Kafka records / sec') +
$.timeseriesPanel('Write request batches processed / sec') +
$.panelDescription(
'Kafka records / sec',
'Write request batches processed / sec',
|||
Rate of processed records from Kafka. Failed records are categorized as "client" errors (e.g. per-tenant limits) or server errors.
Rate of write requests processed from Kafka. When concurrent fetcher is enabled, this panel shows the rate
of write request batches processed: multiple requests could get batched together and so the resulting number
batches processed may be lower than the number of write requests received in the distributor.
Failed records are categorized as "client" errors (e.g. per-tenant limits) or server errors.
|||
) +
$.queryPanel(
Expand Down Expand Up @@ -285,11 +289,11 @@ local filename = 'mimir-writes.json';
) + $.aliasColors({ successful: $._colors.success, 'failed (client)': $._colors.clientError, 'failed (server)': $._colors.failed }) + $.stack,
)
.addPanel(
$.timeseriesPanel('Kafka record processing latency') +
$.timeseriesPanel('Kafka records batch processing latency') +
$.panelDescription(
'Kafka record processing latency',
'Kafka records batch processing latency',
|||
Time used to process a single record (write request). This time is spent by appending data to per-tenant TSDB.
Time taken to process a batch of Kafka records (each record contains a write request).
|||
) +
$.queryPanel(
Expand Down

0 comments on commit aac040f

Please sign in to comment.