Prometheus 데이터 구조 시계열 데이터를 처리하기 위한 기본 데이터 구조는 다음과 같이 정의 됩니다. type sample struct{Labels map[string]string Value float64} Metric 이란? Timestamp와 보통 한두가지 숫자 값을 포함하는 이벤트. 쉽게 수집하는 시계열 데이터로 이해. 프로메테우스의 메트릭 Metric_Name{ field1 = value1, field2=value2} VALUE 로 수집된다. 아래는 SpringBoot 2.7.0 에서 actuator와 micrometer-registry-prometheus를 활용하여 띄운 prometheus sample 값(https://github.com/hotpotato0/boot-db-exporter..