springboot actuator prometheus 사용시 io.prometheus.client.CollectorRegistry 사용하기(io.prometheus.client.Counter)
spring actuator는 기본적으로 io.micrometer.core.instrument을 지원한다. io.prometheus.client하위 패키지의 사용하려면 실제 metric 설정시 연동이 되지 않는 것을 알수 있다. 스프링 부트에서는 해당 패키지를 사용할 수 있도록 지원한다. management.endpoint.prometheus.enabled=true resource에 해당 프로퍼티를 등록하면 autoConfiguration 에서 public class PrometheusScrapeEndpoint { private final CollectorRegistry collectorRegistry; public PrometheusScrapeEndpoint(CollectorRegistry collec..