Исходный код вики Prometheus. Установка

Версия 1.2 от Alexandr Fokin на 2022/12/14 12:22

Последние авторы
1 |(((
2 |(% colspan="1" rowspan="2" style="width:151px" %)[[ Docker-Compose>>doc:Хостинг.Виртуализация.Docker.Docker-Compose.WebHome]]|(% style="width:1277px" %){{code language="yaml"}}version: "3.5"
3 services:
4 prometheus:
5 image: prom/prometheus:latest
6 command:
7 - "--config.file=/etc/prometheus/prometheus.yml"
8 - "--storage.tsdb.path=/prometheus"
9 - "--storage.tsdb.retention.time=7d"
10 volumes:
11 - "./prometheus.yml:/etc/prometheus/prometheus.yml"
12 - "./PrometheusData:/prometheus"
13 ports:
14 # Web UI
15 - "9090:9090"
16 user: "<user with permission to volume path>"{{/code}}
17 |(% style="width:1277px" %)
18 |(% style="width:151px" %) |(% style="width:1277px" %)
19
20
21 )))