Example usage for org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus PrometheusPropertiesConfigAdapter PrometheusPropertiesConfigAdapter

List of usage examples for org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus PrometheusPropertiesConfigAdapter PrometheusPropertiesConfigAdapter

Introduction

In this page you can find the example usage for org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus PrometheusPropertiesConfigAdapter PrometheusPropertiesConfigAdapter.

Prototype

PrometheusPropertiesConfigAdapter(PrometheusProperties properties) 

Source Link

Usage

From source file:org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration.java

@Bean
@ConditionalOnMissingBean
public PrometheusConfig prometheusConfig(PrometheusProperties prometheusProperties) {
    return new PrometheusPropertiesConfigAdapter(prometheusProperties);
}