From c254de5031274bae90582348c8f44bfcb0ff3d75 Mon Sep 17 00:00:00 2001 From: Steve Atherton Date: Wed, 14 Sep 2022 16:16:23 -0700 Subject: [PATCH] Rename read latency trace events to a different scheme. --- fdbserver/storageserver.actor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fdbserver/storageserver.actor.cpp b/fdbserver/storageserver.actor.cpp index 5f4363d1f5..7b24888f48 100644 --- a/fdbserver/storageserver.actor.cpp +++ b/fdbserver/storageserver.actor.cpp @@ -1165,15 +1165,15 @@ public: self->thisServerID, SERVER_KNOBS->LATENCY_METRICS_LOGGING_INTERVAL, SERVER_KNOBS->LATENCY_SAMPLE_SIZE), - readKeyLatencySample("ReadKeyLatencyMetrics", + readKeyLatencySample("GetKeyMetrics", self->thisServerID, SERVER_KNOBS->LATENCY_METRICS_LOGGING_INTERVAL, SERVER_KNOBS->LATENCY_SAMPLE_SIZE), - readValueLatencySample("ReadValueLatencyMetrics", + readValueLatencySample("GetValueMetrics", self->thisServerID, SERVER_KNOBS->LATENCY_METRICS_LOGGING_INTERVAL, SERVER_KNOBS->LATENCY_SAMPLE_SIZE), - readRangeLatencySample("ReadRangeLatencyMetrics", + readRangeLatencySample("GetRangeMetrics", self->thisServerID, SERVER_KNOBS->LATENCY_METRICS_LOGGING_INTERVAL, SERVER_KNOBS->LATENCY_SAMPLE_SIZE),