-
Notifications
You must be signed in to change notification settings - Fork 36
/
prom-stack.tmpl
50 lines (47 loc) · 1.58 KB
/
prom-stack.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
volumes:
prometheus_data:
name: harvest_prometheus_data
grafana_data:
name: harvest_grafana_data
networks:
frontend:
name: harvest_frontend
backend:
name: harvest_backend
services:
prometheus:
container_name: prometheus
image: prom/prometheus:v2.55.0
volumes:
- ./container/prometheus/:/etc/prometheus/
- prometheus_data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
- '--storage.tsdb.retention.time=1y' # Remove data older than one year
# - '--web.enable-admin-api' # Enable to delete time series data from Prometheus see https://www.robustperception.io/deleting-time-series-from-prometheus
ports:
- "{{ .PromPort }}:9090"
networks:
- backend
restart: unless-stopped
labels:
kompose.service.type: nodeport
grafana:
container_name: grafana
image: grafana/grafana:8.3.4
depends_on:
- prometheus
ports:
- "{{ .GrafanaPort }}:3000"
volumes:
- grafana_data:/var/lib/grafana
- ./grafana:/etc/grafana/provisioning # import Harvest dashboards
networks:
- backend
- frontend
restart: unless-stopped
labels:
kompose.service.type: nodeport