2021-09-11 01:21:43 +02:00
|
|
|
storage:
|
|
|
|
type: postgres
|
2021-11-05 02:33:13 +01:00
|
|
|
path: "postgres://username:password@postgres:5432/gatus?sslmode=disable"
|
2021-09-11 01:21:43 +02:00
|
|
|
|
2021-10-23 22:47:12 +02:00
|
|
|
endpoints:
|
2021-09-11 01:21:43 +02:00
|
|
|
- name: back-end
|
|
|
|
group: core
|
|
|
|
url: "https://example.org/"
|
|
|
|
interval: 5m
|
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
- "[CERTIFICATE_EXPIRATION] > 48h"
|
|
|
|
|
|
|
|
- name: monitoring
|
|
|
|
group: internal
|
|
|
|
url: "https://example.org/"
|
|
|
|
interval: 5m
|
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
|
|
|
|
- name: nas
|
|
|
|
group: internal
|
|
|
|
url: "https://example.org/"
|
|
|
|
interval: 5m
|
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
|
|
|
|
- name: example-dns-query
|
2022-06-17 02:21:44 +02:00
|
|
|
url: "1.1.1.1" # Address of the DNS server to use
|
2021-09-11 01:21:43 +02:00
|
|
|
interval: 5m
|
|
|
|
dns:
|
|
|
|
query-name: "example.com"
|
|
|
|
query-type: "A"
|
|
|
|
conditions:
|
|
|
|
- "[BODY] == 93.184.216.34"
|
|
|
|
- "[DNS_RCODE] == NOERROR"
|
|
|
|
|
|
|
|
- name: icmp-ping
|
|
|
|
url: "icmp://example.org"
|
|
|
|
interval: 1m
|
|
|
|
conditions:
|
|
|
|
- "[CONNECTED] == true"
|