We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875a665 commit ddcdb29Copy full SHA for ddcdb29
dubbo-monitor/dubbo-monitor-default/src/main/java/org/apache/dubbo/monitor/dubbo/MetricsFilter.java
@@ -173,10 +173,6 @@ private List<MetricObject> getThreadPoolMessage() {
173
ExecutorService executor = (ExecutorService) entry.getValue();
174
if (executor instanceof ThreadPoolExecutor) {
175
ThreadPoolExecutor tp = (ThreadPoolExecutor) executor;
176
- // ignore metrcis service
177
- if (port.equals(this.port + "")) {
178
- continue;
179
- }
180
181
threadPoolMtricList.add(value2MetricObject("threadPool.active", tp.getActiveCount(), MetricLevel.MAJOR));
182
threadPoolMtricList.add(value2MetricObject("threadPool.core", tp.getCorePoolSize(), MetricLevel.MAJOR));
0 commit comments