Skip to content

Commit d6ee544

Browse files
committed
Default heartbeat interval back to 6h
1 parent 6318120 commit d6ee544

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dora_monitor/config.example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ debug: false
3737

3838
# Periodic digest ("heartbeat") posted to Slack to confirm the monitor
3939
# is alive and give a network snapshot. Set 0 to disable.
40-
heartbeat_interval_minutes: 180
40+
heartbeat_interval_minutes: 360
4141
# Slots scanned for missed/orphaned counts in each heartbeat.
4242
heartbeat_slot_window: 256
4343
# How to include non-`client_match` clients in the heartbeat:

dora_monitor/dora_monitor/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Config:
2929
state_file: str | None = "./dora_monitor_state.json"
3030
http_timeout: int = 10
3131
debug: bool = False
32-
heartbeat_interval_minutes: int = 180 # 3 hours; set 0 to disable
32+
heartbeat_interval_minutes: int = 360 # 6 hours; set 0 to disable
3333
heartbeat_slot_window: int = 256
3434
# "off" (skip), "summary" (one-line aggregate), "detailed" (per-client list)
3535
heartbeat_other_clients: str = "detailed"

0 commit comments

Comments
 (0)