summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-10-27 12:39:17 +0200
committerGitHub <noreply@github.com>2021-10-27 12:39:17 +0200
commit3c8d6410905d4d9d0321055504dff9acc7d34709 (patch)
tree29e7a247e0004e15f6760cb2613a7e693773a840
parentaef2b839dec67b62b9bf1d1a1ec80a9bb7773318 (diff)
parent6a56b08b1df88a2d5b20748c13d670ba41e6749d (diff)
Merge pull request #19743 from vespa-engine/hmusum/lower-log-level
Lower log level
-rw-r--r--metrics-proxy/src/main/java/ai/vespa/metricsproxy/http/application/ApplicationMetricsRetriever.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/metrics-proxy/src/main/java/ai/vespa/metricsproxy/http/application/ApplicationMetricsRetriever.java b/metrics-proxy/src/main/java/ai/vespa/metricsproxy/http/application/ApplicationMetricsRetriever.java
index 69d88ed1ecd..2ddbc71268c 100644
--- a/metrics-proxy/src/main/java/ai/vespa/metricsproxy/http/application/ApplicationMetricsRetriever.java
+++ b/metrics-proxy/src/main/java/ai/vespa/metricsproxy/http/application/ApplicationMetricsRetriever.java
@@ -1,4 +1,4 @@
-// Copyright 2020 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.metricsproxy.http.application;
import ai.vespa.metricsproxy.metric.model.ConsumerId;
@@ -118,7 +118,7 @@ public class ApplicationMetricsRetriever extends AbstractComponent implements Ru
}
public Map<Node, List<MetricsPacket>> getMetrics(ConsumerId consumer) {
- log.log(Level.INFO, () -> "Retrieving metrics from " + clients.size() + " nodes.");
+ log.log(Level.FINE, () -> "Retrieving metrics from " + clients.size() + " nodes.");
synchronized (pollThread) {
if (consumerSet.add(consumer)) {
// Wakeup poll thread first time we see a new consumer