본문 바로가기
잡다구리

p8s: Spring Boot에서 Prometheus 메트릭 노출하기

by Growing! 2022. 8. 18.
dependency를 추가해 주는 것으로 충분하다. 하지만 endpoint의 prefix가 actuator 경로 하위로 한정된다(actuator 경로를 변경하는 방법은 있지만, 하위 경로에 속해야 한다는 제약을 벗어나는 다른 방법을 발견하지 못했음).
implementation 'org.springframework.boot:spring-boot-starter-actuator'
...
// "/actuator/prometheus" 에 p8s 메트릭을 노출해준다.
implementation 'io.micrometer:micrometer-registry-prometheus'
 
actuator의 하위 경로가 아닌 endpoint로 메트릭을 노출하려면 다음과 같이 컨트롤러를 구현한다. 
"/metrics"로 노출하는 예제이다.
import io.micrometer.prometheus.PrometheusMeterRegistry;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequiredArgsConstructor
public class MetricsController {

    private final PrometheusMeterRegistry prometheusMeterRegistry;

    @GetMapping("/metrics")
    public String metrics() {
        return prometheusMeterRegistry.scrape();
    }
}
 
 
 
 
 

댓글