Prometheus linux install guide

bbbbbhyun·2024년 10월 22일
0

설치

1. 해당 링크 클릭

https://prometheus.io/download/

2. 필요한 버전으로 다운로드

3. 서버로 옮기기

4. 다운받은 파일 압축 풀기

tar xzvf prometheus-2.54.1.linux-amd64.tar.gz

5. 압축푼 파일로 이동

cd prometheus-2.54.1.linux-amd64

설정 파일 수정

6. yml파일 수정

vi prometheus.yml

7. spring boot actuator 정보 추가

  • Default yml 정보

  • 하위 정보 추가

    - job_name: 'spring-actuator'
    metrics_path: '/actuator/prometheus'
    scrape_interval: 5s
    static_configs:
    - targets: ['localhost:8080']

metrics_path : '/[management.endpoints.web.base-path]/prometheus'

  • management.endpoints.web.base-path는 spring boot설정파일의 actuator의 기본 경로 정보

targets : [spring boot 주소]

실행

8. prometheus 실행

./prometheus

8-1. prometheus port change

./prometheus -- web.listen-address:8090

9. prometheus 작동 명령어

curl -x GET "http://localhost:9090/metrics"

profile
BackEnd develope

0개의 댓글