시스템 메트릭은 대체 어디에 있을까??
CPU, 메모리, IO 등등..
시스템 메트릭은 가상 메모리에서 실시간으로 위 경로에 write 되고 있다!
프로메테우스의 node exporter는 이러한 시스템 메트릭을 외부 포트로 노출 하고(default:9010)
프로메테우스 클라이언트 서버에서 타겟 서버의 9010포트에서 특정 interval단위로 스크랩 해가는 것이다!
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
ex) target_server_host: http://localhost:9090
client_server는 target_server에서 interval: 15s 단위로 시스템 메트릭을 수집하고 있다.