We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d54779 commit c4af9e6Copy full SHA for c4af9e6
pulsar-broker/src/test/java/org/apache/pulsar/broker/stats/PrometheusMetricsTest.java
@@ -302,8 +302,7 @@ public void testBrokerMetrics() throws Exception {
302
303
double systemCursorOutBytes = 0.0;
304
for (Metric metric : topicLevelBytesOutTotal) {
305
- if (metric.tags.get("subscription").startsWith(SystemTopicNames.SYSTEM_READER_PREFIX)
306
- || metric.tags.get("subscription").equals(Compactor.COMPACTION_SUBSCRIPTION)) {
+ if (metric.tags.get("subscription").startsWith(SystemTopicNames.SYSTEM_READER_PREFIX)) {
307
systemCursorOutBytes = metric.value;
308
}
309
0 commit comments