From 0c2a6b62beaafa567dc6765ce4557c0baf7942b4 Mon Sep 17 00:00:00 2001 From: Elio Di Nino <52972357+ElioDiNino@users.noreply.github.com> Date: Wed, 24 Apr 2024 04:23:06 -0400 Subject: [PATCH] :pencil: Add missing delay option documentation (#51) --- docs/configuration.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index 306571a..63475e6 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -227,6 +227,14 @@ sites: In the above example, if the body HTML response does **not** include "status":"UP", the site will be marked as "down". Similarly, you can use `__dangerous__body_degraded_if_text_missing` to mark the site as "degraded" instead. +### Check Delay + +You can specify an optional `delay` (in milliseconds) that will occur between checking each configured endpoint. By default, there is no delay. + +```yaml +delay: 2000 # 2 seconds +``` + ### Notifications You can add services to send downtime notifications to, such as SMS, Slack, or email. For more information about notifications, visit the [Notifications docs](/docs/notifications) page. You can directly configure the notifications in repository secrets (environment variables).