Skip to content

Commit f281f94

Browse files
peedeeboyPete Whelpton
and
Pete Whelpton
authored
Fix threadpool metric names (#63)
Co-authored-by: Pete Whelpton <[email protected]>
1 parent f64ed98 commit f281f94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/compuscene/metrics/prometheus/PrometheusMetricsCollector.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -764,8 +764,8 @@ private void updateThreadPoolMetrics(ThreadPoolStats tps) {
764764
catalog.setNodeGauge("threadpool_queue", st.queue(), name);
765765
catalog.setNodeGauge("threadpool_active", st.active(), name);
766766
catalog.setNodeGauge("threadpool_largest", st.largest(), name);
767-
catalog.setNodeCounter("threadpool_rejected", st.completed(), name);
768-
catalog.setNodeCounter("threadpool_completed", st.rejected(), name);
767+
catalog.setNodeCounter("threadpool_completed", st.completed(), name);
768+
catalog.setNodeCounter("threadpool_rejected", st.rejected(), name);
769769
}
770770
}
771771
}

0 commit comments

Comments
 (0)