From 6a0960bf82f07185ffccc08528e518124500fc3e Mon Sep 17 00:00:00 2001 From: Ali Maredia Date: Wed, 29 Nov 2023 13:06:01 -0500 Subject: [PATCH] rgw: change topic label to lowercase Signed-off-by: Ali Maredia --- src/rgw/rgw_perf_counters.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_perf_counters.cc b/src/rgw/rgw_perf_counters.cc index 40668c3d822..d316476a27b 100644 --- a/src/rgw/rgw_perf_counters.cc +++ b/src/rgw/rgw_perf_counters.cc @@ -211,7 +211,7 @@ const std::string rgw_topic_counters_key = "rgw_topic"; CountersManager::CountersManager(const std::string& topic_name, CephContext *cct) : cct(cct) { - const std::string topic_key = ceph::perf_counters::key_create(rgw_topic_counters_key, {{"Topic", topic_name}}); + const std::string topic_key = ceph::perf_counters::key_create(rgw_topic_counters_key, {{"topic", topic_name}}); PerfCountersBuilder pcb(cct, topic_key, l_rgw_topic_first, l_rgw_topic_last); add_rgw_topic_counters(&pcb); topic_counters = std::unique_ptr(pcb.create_perf_counters()); -- 2.47.3