Я развернул этот мониторинг Docker Swarm на AWS => https://github.com/stefanprodan/swarmprom
Когда я попытался получить доступ к Прометею, он работает нормально.Но когда я хочу изменить scrape_timeout в конфиге файла prometheus, я получил эту проблему "502 Bad Gateway"
============================================================================
Я попытался изменить этот путь "/ etc / prometheus /" на локальный путь, где находится мой конфигурационный файл "prometheus.yml"
'- config.file = / etc / prometheus /prometheus.yml '
' - config.file =. / prometheus / conf / prometheus.yml '
Но я получил эту ошибку при попытке доступа: 502 Bad Gateway
Я также пытался сделать, как Caddy, настроить файл и добавить его в конфигурации Prometheus, но у меня та же проблема.
....
configs:
caddy_config:
file: ./caddy/Caddyfile
prometheus_config:
file: ./prometheus/conf/prometheus.yml
.....
prometheus:
image: stefanprodan/swarmprom-prometheus:v2.2.0-rc.0
networks:
- net
volumes:
- prometheus:/prometheus
configs:
- source: prometheus_config
target: /etc/prometheus/prometheus.yml
Файл конфигурации Prometheus:
global:
scrape_interval: 15s
scrape_timeout: 5s
evaluation_interval: 15s
external_labels:
monitor: promswarm
alerting:
alertmanagers:
- static_configs:
- targets:
- alertmanager:9093
scheme: http
timeout: 10s
rule_files:
- /etc/prometheus/swarm_node.rules.yml
- /etc/prometheus/swarm_task.rules.yml
scrape_configs:
- job_name: prometheus
scrape_interval: 15s
scrape_timeout: 5s
metrics_path: /metrics
scheme: http
static_configs:
- targets:
- localhost:9090
- job_name: dockerd-exporter
scrape_interval: 15s
scrape_timeout: 10s
metrics_path: /metrics
scheme: http
dns_sd_configs:
- names:
- tasks.dockerd-exporter
refresh_interval: 30s
type: A
port: 9323
- job_name: cadvisor
scrape_interval: 15s
scrape_timeout: 10s
metrics_path: /metrics
scheme: http
dns_sd_configs:
- names:
- tasks.cadvisor
refresh_interval: 30s
type: A
port: 8080
- job_name: node-exporter
scrape_interval: 15s
scrape_timeout: 10s
metrics_path: /metrics
scheme: http
dns_sd_configs:
- names:
- tasks.node-exporter
refresh_interval: 30s
type: A
port: 9100