From 83e3a96c19080114961826bd531652019a759c06 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Thu, 20 Oct 2022 05:03:58 -0400 Subject: [PATCH] fix: improve ttbr histogram metric description (#5909) Co-authored-by: Dom Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- ingester/src/stream_handler/handler.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ingester/src/stream_handler/handler.rs b/ingester/src/stream_handler/handler.rs index 3f32b20bcd..3933acfd6a 100644 --- a/ingester/src/stream_handler/handler.rs +++ b/ingester/src/stream_handler/handler.rs @@ -101,8 +101,9 @@ impl SequencedStreamHandler { let time_to_be_readable = metrics .register_metric::( "ingester_ttbr", - "distribution of duration between producer writing \ - to consumer putting into queryable cache", + "distribution of duration of Time To Become Readable (TTBR), the \ + time between write to a router and becoming readable \ + for query in the ingester", ) .recorder(metric_attrs(shard_index, &topic_name, None, false));