프로메테우스 설치 및 실행 brew install prometheus -> 설치 brew services start prometheus -> 실행 ps -ax | grep prometheus -> prometheus.yml 위치 확인 prometheus.yml에 설정된 호스트 주소로 접속 Spring Dependency 의존성 추가 implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'io.micrometer:micrometer-core' runtimeOnly 'io.micrometer:micrometer-registry-prometheus' properties 설정 management: server: ..