https://youtu.be/vGCN34hGBUQ actuator 에서 기본 제공하는 endpoint 중 모니터링 시스템과 자주 연동될 endpoint 로 health endpoint 가 있습니다. 이름에서 알수 있듯이 application의 health 정보를 제공합니다. default health endpoint application.yml 에 아래 설정만 한 상태에서 spring boot 를 구동해봅시다. management: endpoints: web: exposure: include: "*" 이후 웹브라우저에서 health endpoint 로 접근해봅시다. 위와 같이 application이 구동중이라는 의미의 status: UP 이라는 json을 리턴합니다. 고작 이 정보만 있지는 않겠죠? 아..