Skip to content
Open
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ endpoints:
url: https://api.github.com/healthz
interval: 5m
conditions:
- "[STATUS] == 200"
- "[STATUS] == 200"

- name: check-domain-expiration
url: "https://example.org/"
interval: 1h
conditions:
- "[DOMAIN_EXPIRATION] > 720h"
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
services:
gatus:
container_name: gatus
Expand All @@ -13,7 +12,7 @@ services:

prometheus:
container_name: prometheus
image: prom/prometheus:v2.14.0
image: prom/prometheus:v3.5.0
restart: always
command: --config.file=/etc/prometheus/prometheus.yml
ports:
Expand All @@ -25,7 +24,7 @@ services:

grafana:
container_name: grafana
image: grafana/grafana:6.4.4
image: grafana/grafana:12.1.0
restart: always
environment:
GF_SECURITY_ADMIN_PASSWORD: secret
Expand Down
Loading