Prometheus에서 다양한 서버 등을 모니터링하고 싶습니다 !! part 01
4835 단어 docker-compose도커prometheus
Prometheus 정보
세세한 설치 방법 등은 다른 것을 보아라!
그 외에도 구구하면 많이 나오므로 자세한 내용은 다른 블로그를 참고하십시오.
공식 문서가 더 정확한 정보이므로 한 번 눈을 뗍니다.
이번 구성
할 일
출처
$ tree -a
.
├── docker-compose.yml
├── readme.md
└── svr
├── etc
│ └── prometheus
│ └── prometheus.yml
└── prometheus
└── .gitignore
$ cat docker-compose.yml
version: '3.3'
services:
prometheus:
image: prom/prometheus:v2.6.0
container_name: prometheus_on_dockercompose
ports:
- "9090:9090"
volumes:
- ./svr/etc/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- ./svr/prometheus:/prometheus
restart: always
$ cat svr/etc/prometheus/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'.
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_name: 'prometheus'
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ['localhost:9090']
$ cat svr/prometheus/.gitignore
*
!.gitignore
위는 GitHub에서 공개합니다.
prometheus-on-dockercompose/part01
이번 구성의 이미지도
사용방법 시작 방법 Docker Compose 시작 명령 docker-compose up -d Docker Compose 상태 확인 명령 docker-compose ps 브라우저에서 확인 Docker Compose에서 시작한 Prometheus가 다음 URL에서 일어나고 있다고 생각합니다.
정지·삭제 방법
docker-compose stop
docker-compose rm (-y)
요약
Reference
이 문제에 관하여(Prometheus에서 다양한 서버 등을 모니터링하고 싶습니다 !! part 01), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iganari/items/d905605efaf167c028ac텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)