ํ๋ก๋ฉํ
์ฐ์ค ์ค์น ์ฝ์ง
2023. 5. 21. 16:06ใ๐๊ธฐ๋ก
ssh ์๋ฒ์์ ๋์ปค๋ก ํ๋ก๋ฉํ ์ฐ์ค๋ฅผ ์คํํ๋ ๊ณผ์ ์์ ์ง์์ ์ผ๋ก ์๋ฌ๊ฐ ๋ฐ์ํ๋ค.
์๋ ๋ช ๋ น์ด๋ก ํ๋ก๋ฉํ ์ฐ์ค ์ปจํ ์ด๋๋ฅผ ์คํ(์๋)ํ๋ค.
docker run -d -p 9090:9090 -v /etc/prometheus:/etc/prometheus prom/prometheus
๋์ปค ์ปจํ ์ด๋๊ฐ ์ ๋๋ก ์คํ๋์ง ์์ ๊ฑธ ๋ณด๊ณ docker logs {container name} ๋ช ๋ น์ด๋ก ๋ก๊ทธ๋ฅผ ํ์ธํจ
ts=2023-05-21T06:48:25.063Z caller=main.go:479 level=error msg="Error loading config (--config.file=/etc/prometheus/prometheus.yml)" file=/etc/prometheus/prometheus.yml err="parsing YAML file /etc/prometheus/prometheus.yml: \"http://{host-ip}:8080\" is not a valid hostname"
prometheus.yml
ssh ์๋ฒ์ ์์ฑํ prometheus.yml ํ์ผ์ ์๋์ ๊ฐ๋ค.
global:
scrape_interval: 15s
scrape_configs:
- job_name: prometheus
static_configs:
- targets: ['http://{host-ip}:8080'] <<< http:// ๋ฅผ ์ง์์ฃผ์
metrics_path: '/actuator/prometheus' <<< ์ด๊ฑธ ์ง์์ฃผ์
์ ๋ฆฌํ๋ฉด http:// ๋ฅผ ์ง์์ฃผ๊ณ metrics_path ๋ผ์ธ๋ ์ญ์ ํ๋ค.
์๋๋ prometheus.yml ์ ์ต์ข ์์ ๋ณธ์ด๋ค.
global:
scrape_interval: 15s
scrape_configs:
- job_name: prometheus
static_configs:
- targets: ['{host-ip}:{port}']
'๐๊ธฐ๋ก' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๊ธ๋ 8๊ธฐ ๋ง๋ฌด๋ฆฌ ๋ฐ ํ๊ณ (2) | 2023.07.16 |
---|---|
OpenAI๋ก ์๋น์ค ์ฌ์ฉ์ฑ ๊ฐ์ ํ๊ธฐ (0) | 2023.05.29 |
๋์ปค์์ Redis ์ฌ์ฉํ ๋ ์ํ์ฐฉ์ค 3๊ฐ์ง (0) | 2023.04.02 |
2023-1๋ถ๊ธฐ ํ๊ณ (0) | 2023.03.26 |
๊ธ๋ 8๊ธฐ ๋ค์ง๊ธ (1) | 2023.02.06 |