@@ -1713,7 +1713,7 @@ void PrintPrometheusMetrics(uint64_t uptime, const Metrics& m, DflyCmd* dfly_cmd
17131713 MetricType::COUNTER, &resp->body ());
17141714 {
17151715 AppendMetricWithoutLabels (" reply_duration_seconds" , " " ,
1716- m.facade_stats .reply_stats .send_stats .total_duration * 1e-6 ,
1716+ m.facade_stats .reply_stats .send_stats .total_duration * 1e-9 ,
17171717 MetricType::COUNTER, &resp->body ());
17181718 AppendMetricWithoutLabels (" reply_total" , " " , m.facade_stats .reply_stats .send_stats .count ,
17191719 MetricType::COUNTER, &resp->body ());
@@ -3015,8 +3015,6 @@ string ServerFamily::FormatInfoMetrics(const Metrics& m, std::string_view sectio
30153015 append (" defrag_attempt_total" , m.shard_stats .defrag_attempt_total );
30163016 append (" defrag_realloc_total" , m.shard_stats .defrag_realloc_total );
30173017 append (" defrag_task_invocation_total" , m.shard_stats .defrag_task_invocation_total );
3018- append (" reply_count" , reply_stats.send_stats .count );
3019- append (" reply_latency_usec" , reply_stats.send_stats .total_duration );
30203018
30213019 // Number of connections that are currently blocked on grabbing interpreter.
30223020 append (" blocked_on_interpreter" , m.coordinator_stats .blocked_on_interpreter );
0 commit comments