All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.keycloak.config.MetricsOptions Maven / Gradle / Ivy

There is a newer version: 25.0.6
Show newest version
package org.keycloak.config;

public class MetricsOptions {

    public static final Option METRICS_ENABLED = new OptionBuilder<>("metrics-enabled", Boolean.class)
            .category(OptionCategory.METRICS)
            .description("If the server should expose metrics. If enabled, metrics are available at the '/metrics' endpoint.")
            .buildTime(true)
            .defaultValue(Boolean.FALSE)
            .build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy