맥os 환경에서 모니터링 설정하기 각각 설정해줄 부분은 스프링부트설정, 프로메테우스 설정, 그라파나 설정이다 모니터링 시스템은 기본적으로 로그발생 => 데이터 수집 => 통합 => 시각화의 단계로 되어있다. 스프링부트 actuator 설정 - (metrics 출력을 위해) build.gradle implementation 'org.springframework.boot:spring-boot-starter-actuator' runtimeOnly 'io.micrometer:micrometer-registry-prometheus' application-{환경}.yml management: health: db: enabled: false endpoints: web: exposure: include: health,..