From 6a08c816e56bab73baddbafca9f169f69f51291a Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Thu, 26 Nov 2020 23:23:59 -0500 Subject: [PATCH] Update default configuration --- config.yaml | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/config.yaml b/config.yaml index e14b1006..0c09a6e1 100644 --- a/config.yaml +++ b/config.yaml @@ -1,15 +1,37 @@ -metrics: true services: - - name: twinnation + - name: frontend + group: core url: "https://twinnation.org/health" - interval: 30s + interval: 1m conditions: - "[STATUS] == 200" - "[BODY].status == UP" - "[RESPONSE_TIME] < 1000" + + - name: backend + 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" + - name: cat-fact url: "https://cat-fact.herokuapp.com/facts/random" - interval: 1m + interval: 5m conditions: - "[STATUS] == 200" - "[BODY].deleted == false"