2019-09-06 06:01:48 +02:00
|
|
|
services:
|
2021-01-31 02:00:54 +01:00
|
|
|
- name: front-end
|
|
|
|
group: core
|
2020-09-26 20:23:43 +02:00
|
|
|
url: "https://twinnation.org/health"
|
2021-01-31 02:00:54 +01:00
|
|
|
interval: 1m
|
2020-04-15 02:13:06 +02:00
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
- "[BODY].status == UP"
|
2021-01-31 02:00:54 +01:00
|
|
|
- "[RESPONSE_TIME] < 150"
|
2020-11-27 05:23:59 +01:00
|
|
|
|
2021-01-29 05:25:29 +01:00
|
|
|
- name: back-end
|
2020-11-27 05:23:59 +01:00
|
|
|
group: core
|
|
|
|
url: "http://example.org/"
|
|
|
|
interval: 5m
|
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
|
|
|
|
- name: monitoring
|
|
|
|
group: internal
|
|
|
|
url: "http://example.com/"
|
|
|
|
interval: 5m
|
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
|
|
|
|
- name: nas
|
|
|
|
group: internal
|
|
|
|
url: "https://example.org/"
|
|
|
|
interval: 5m
|
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
|
|
|
|
2021-01-31 02:00:54 +01:00
|
|
|
- name: cat-fact
|
2020-09-15 02:05:00 +02:00
|
|
|
url: "https://cat-fact.herokuapp.com/facts/random"
|
2020-11-27 05:23:59 +01:00
|
|
|
interval: 5m
|
2020-04-15 02:13:06 +02:00
|
|
|
conditions:
|
|
|
|
- "[STATUS] == 200"
|
2020-09-15 02:05:00 +02:00
|
|
|
- "[BODY].deleted == false"
|
2020-10-30 16:30:03 +01:00
|
|
|
- "len([BODY].text) > 0"
|
2021-05-09 19:45:27 +02:00
|
|
|
|
|
|
|
- name: example-dns-query
|
|
|
|
url: "8.8.8.8" # Address of the DNS server to use
|
|
|
|
interval: 5m
|
|
|
|
dns:
|
|
|
|
query-name: "example.com"
|
|
|
|
query-type: "A"
|
|
|
|
conditions:
|
|
|
|
- "[BODY] == 93.184.216.34"
|
2021-05-14 03:24:22 +02:00
|
|
|
- "[DNS_RCODE] == NOERROR"
|
|
|
|
|
|
|
|
- name: icmp-ping
|
|
|
|
url: "icmp://example.org"
|
|
|
|
interval: 1m
|
|
|
|
conditions:
|
|
|
|
- "[CONNECTED] == true"
|