We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bae1d1 commit 694969fCopy full SHA for 694969f
pulsar-broker/src/test/java/org/apache/pulsar/broker/stats/PrometheusMetricsTest.java
@@ -306,8 +306,7 @@ public void testBrokerMetrics() throws Exception {
306
307
double systemCursorOutBytes = 0.0;
308
for (Metric metric : topicLevelBytesOutTotal) {
309
- if (metric.tags.get("subscription").startsWith(SystemTopicNames.SYSTEM_READER_PREFIX)
310
- || metric.tags.get("subscription").equals(Compactor.COMPACTION_SUBSCRIPTION)) {
+ if (metric.tags.get("subscription").startsWith(SystemTopicNames.SYSTEM_READER_PREFIX)) {
311
systemCursorOutBytes = metric.value;
312
}
313
0 commit comments