Skip to content

Commit d3d4fb6

Browse files
committed
Default heartbeat interval to 3h
1 parent 2e8e02a commit d3d4fb6

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
@@ -31,7 +31,7 @@ debug: false
3131

3232
# Periodic digest ("heartbeat") posted to Slack to confirm the monitor
3333
# is alive and give a network snapshot. Set 0 to disable.
34-
heartbeat_interval_minutes: 360
34+
heartbeat_interval_minutes: 180
3535
# Slots scanned for missed/orphaned counts in each heartbeat.
3636
heartbeat_slot_window: 256
3737
# 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
@@ -25,7 +25,7 @@ class Config:
2525
state_file: str | None = "./dora_monitor_state.json"
2626
http_timeout: int = 10
2727
debug: bool = False
28-
heartbeat_interval_minutes: int = 360 # 6 hours; set 0 to disable
28+
heartbeat_interval_minutes: int = 180 # 3 hours; set 0 to disable
2929
heartbeat_slot_window: int = 256
3030
# "off" (skip), "summary" (one-line aggregate), "detailed" (per-client list)
3131
heartbeat_other_clients: str = "detailed"

0 commit comments

Comments
 (0)