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

io.prometheus.client.spring.boot.PrometheusEndpointConfiguration Maven / Gradle / Ivy

There is a newer version: 0.16.0
Show newest version
package io.prometheus.client.spring.boot;

import io.prometheus.client.CollectorRegistry;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
class PrometheusEndpointConfiguration {

  @Bean
  public PrometheusEndpoint prometheusEndpoint() {
    return new PrometheusEndpoint(CollectorRegistry.defaultRegistry);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy