feat: watchdog for stuck triggers + daemon health check#73
Open
talos-adapt2move wants to merge 1 commit intomxzinke:masterfrom
Open
feat: watchdog for stuck triggers + daemon health check#73talos-adapt2move wants to merge 1 commit intomxzinke:masterfrom
talos-adapt2move wants to merge 1 commit intomxzinke:masterfrom
Conversation
- watchdog-triggers.sh: Detects trigger-runner processes running longer than MAX_AGE_MIN (default 30min), kills them and their child process trees, cleans up orphan lock files, and re-fires the trigger for automatic recovery. - check-daemon-health.sh: Generic supervisord service health checker. Restarts failed services and tracks consecutive failures with configurable alert threshold. - Adds watchdog to default crontab (every 5 minutes). These address a real production need: trigger sessions can hang indefinitely due to API timeouts or SDK issues, blocking all subsequent messages on that channel. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Production-hardening scripts for any Atlas deployment:
watchdog-triggers.sh— Detects trigger-runner processes stuck for >30min, kills them (children first, then SIGKILL fallback), cleans orphan lock files, and re-fires the trigger for automatic recoverycheck-daemon-health.sh— Generic supervisord service health checker. Restarts failed services, tracks consecutive failures with configurable alert thresholdWhy this matters
Trigger sessions can hang indefinitely due to API timeouts, SDK issues, or network problems — blocking all subsequent messages on that channel until manual intervention. This watchdog provides automatic detection and recovery.
Configuration
MAX_AGE_MINenv var (default: 30 minutes)WATCHDOG_LOGenv var (default: /atlas/logs/watchdog-triggers.log)check-daemon-health.sh <service-name> [alert-threshold]🤖 Generated with Claude Code