한줄 소개https://prometheus.io/docs/introduction/overview/ 최초 SoundCloud에서 만들어진, 시스템 모니터링과 경보(Alert) 도구 모음이다 Docker Compose로 Prometheus 실행https://hub.docker.com/r/prom/prometheus mkdir data vi compose.ymlservices: some-prometheus: container_name: some-prometheus image: prom/prometheus:v2.52.0 ports: - 9090:9090 volumes: - ./data:/prometheus docker compose up 컨테이너 내부에서 프로메테우스가..