본문 바로가기
클라우드/prometheus

prometheus - kong Metrics 설정

by "뭉치" 2021. 9. 28.
728x90
prometheus.yml - scrape configs 에 kong metrics 정보 추가
# /apps/prometheus/prometheus.yml

...
  
scrape_configs:
...
  - job_name: 'kong'
    scrape_interval: 5s
    metrics_path: '/metrics'
    scheme: 'http'
    static_configs:
      - targets: ['{kong host}']
...
728x90

댓글