net.thisptr.java.prometheus.metrics.agent.config.StaticConfigWatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-prometheus-metrics-agent Show documentation
Show all versions of java-prometheus-metrics-agent Show documentation
Java agent for collecting and reporting metrics to Prometheus
package net.thisptr.java.prometheus.metrics.agent.config;
public class StaticConfigWatcher implements ConfigWatcher {
private final Config config;
public StaticConfigWatcher(final Config config) {
this.config = config;
}
public Config config() {
return config;
}
@Override
public void start() {}
@Override
public void shutdown() {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy