Skip to content

Commit

Permalink
r/buffered_protocol: removed append entries latency histogram
Browse files Browse the repository at this point in the history
We already track RPC methods latency so the histogram can be removed.

Signed-off-by: Michał Maślanka <michal@redpanda.com>
  • Loading branch information
mmaslankaprv committed Dec 13, 2024
1 parent 4f7970f commit 5923ab3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/v/raft/buffered_protocol.cc
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,7 @@ void append_entries_queue::setup_internal_metrics() {
[this] { return _requests.size(); },
sm::description(
"Total number of append entries requests in the queue"),
{target_node_id_label}),
sm::make_histogram(
"append_entries_request_latency",
sm::description("Latency of append entries requests"),
{target_node_id_label},
[this] { return _hist.internal_histogram_logform(); })});
{target_node_id_label})});
}

void append_entries_queue::setup_public_metrics() {
Expand Down

0 comments on commit 5923ab3

Please sign in to comment.