io.micrometer.prometheusmetrics.PrometheusConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micrometer-registry-prometheus Show documentation
Show all versions of micrometer-registry-prometheus Show documentation
Application monitoring instrumentation facade
/*
* Copyright 2017 VMware, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micrometer.prometheusmetrics;
import io.micrometer.common.lang.Nullable;
import io.micrometer.core.instrument.config.MeterRegistryConfig;
import io.micrometer.core.instrument.config.validate.Validated;
import java.time.Duration;
import java.util.Properties;
import static io.micrometer.core.instrument.config.MeterRegistryConfigValidator.checkAll;
import static io.micrometer.core.instrument.config.MeterRegistryConfigValidator.checkRequired;
import static io.micrometer.core.instrument.config.validate.PropertyValidator.*;
/**
* Configuration for {@link PrometheusMeterRegistry}.
*
* @author Jon Schneider
* @author Jonatan Ivanov
* @since 1.13.0
*/
public interface PrometheusConfig extends MeterRegistryConfig {
/**
* Accept configuration defaults
*/
PrometheusConfig DEFAULT = k -> null;
@Override
default String prefix() {
return "prometheus";
}
/**
* @return {@code true} if meter descriptions should be sent to Prometheus. Turn this
* off to minimize the amount of data sent on each scrape.
*/
default boolean descriptions() {
return getBoolean(this, "descriptions").orElse(true);
}
/**
* @return The step size to use in computing windowed statistics like max. The default
* is 1 minute. To get the most out of these statistics, align the step interval to be
* close to your scrape interval.
*/
default Duration step() {
return getDuration(this, "step").orElse(Duration.ofMinutes(1));
}
/**
* @return an instance of {@link Properties} that contains Prometheus Java Client
* config entries, for example
* {@code io.prometheus.exporter.exemplarsOnAllMetricTypes=true}.
* @see Prometheus
* docs
* @since 1.13.0
*/
@Nullable
default Properties prometheusProperties() {
Properties properties = new Properties();
properties.setProperty("io.prometheus.exporter.exemplarsOnAllMetricTypes", "true");
return properties;
}
@Override
default Validated> validate() {
return checkAll(this, checkRequired("step", PrometheusConfig::step));
}
}