diff options
| author | Fuwn <[email protected]> | 2026-01-19 04:17:50 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-19 04:17:50 -0800 |
| commit | 1e96ec397d38e6263c5369d91f2579092c9c9390 (patch) | |
| tree | b4b73accb870de9178acc931443c8cd474423fa5 /config.example.yaml | |
| parent | feat: Add browser timezone option for client-side time display (diff) | |
| download | kaze-1e96ec397d38e6263c5369d91f2579092c9c9390.tar.xz kaze-1e96ec397d38e6263c5369d91f2579092c9c9390.zip | |
feat: Add retry option for monitor checks
Diffstat (limited to 'config.example.yaml')
| -rw-r--r-- | config.example.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.example.yaml b/config.example.yaml index 81297c5..70a714b 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -62,6 +62,7 @@ groups: target: "https://example.com" interval: 30s timeout: 10s + retries: 2 # Retry 2 times before marking as down (default: 0) expected_status: 200 verify_ssl: true @@ -128,6 +129,8 @@ incidents: # target: string (required) - URL or host:port to monitor # interval: duration - Check interval (default: 30s) # timeout: duration - Request timeout (default: 10s) +# retries: int - Number of retry attempts before marking as down (default: 0) +# Retries are attempted with a 500ms delay between attempts # # HTTP/HTTPS specific fields: # expected_status: int - Expected HTTP status code (default: 200) |