https://prometheus.io/download/
사이트에 들어가서 zip 파일 다운로드
해당 폴더를 열고
vi prometheus.yml
# my global config
global:
# 매트릭을 수집할 주기를 설정할 수 있습니다.
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
# 규칙을 평가할 주기를 설정할 수 있습니다
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
# 규칙을 로딩하고 evaluation_interval 설정에 따라 주기적으로 평가합니다.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
# 메트릭을 수집할 엔드포인트에 대해 설정할 수 있습니다.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
# 이 설정에서 수집한 타임시리즈에 대해 'job=<job_name>'으로 라벨을 추가합니다.
- job_name: "prometheus"
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
# 타겟(엔드포인트)과 타겟에 대한 라벨을 지정해 줄 수 있습니다.
static_configs:
# 메트릭을 수집할 엔드포인트를 지정해 줄 수 있습니다.
- targets: ["localhost:9090"]
prometheus.yml 파일이 있는지 확인
터미널 창에서
./prometheus
브라우저에 http://localhost:9090을 입력하면
해당 창이 뜨면 성공입니다.
brew install prometheus
brew services start prometheus