From: Ali Maredia Date: Wed, 29 Nov 2023 18:06:01 +0000 (-0500) Subject: rgw: change topic label to lowercase X-Git-Tag: v19.3.0~67^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F54623%2Fhead;p=ceph.git rgw: change topic label to lowercase Signed-off-by: Ali Maredia --- 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());