From 0cc9fb73e18c48467e1a83a7faec5cb85df7d6dc Mon Sep 17 00:00:00 2001 From: Poorna Date: Mon, 12 Feb 2024 13:02:27 -0800 Subject: [PATCH] metrics: fix typo in namespace for proxy tagging metric (#19039) Relevant PR introducing this metric: #18957 --- cmd/metrics-v2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/metrics-v2.go b/cmd/metrics-v2.go index 5d7167389..59b142edc 100644 --- a/cmd/metrics-v2.go +++ b/cmd/metrics-v2.go @@ -3280,7 +3280,7 @@ func getBucketUsageMetrics(opts MetricsGroupOpts) *MetricsGroup { Value: float64(s.ProxyStats.GetTagFailedTotal), }) metrics = append(metrics, Metric{ - Description: getClusterReplProxiedRmvTaggingFailedOperationsMD(clusterMetricNamespace), + Description: getClusterReplProxiedRmvTaggingFailedOperationsMD(bucketMetricNamespace), Value: float64(s.ProxyStats.RmvTagFailedTotal), }) }