Config policies (16 files): alert_routing, architecture_pressure, backlog, cost_weights, data_governance, incident_escalation, incident_intelligence, network_allowlist, nodes_registry, observability_sources, rbac_tools_matrix, release_gate, risk_attribution, risk_policy, slo_policy, tool_limits, tools_rollout Ops (22 files): Caddyfile, calendar compose, grafana voice dashboard, deployments/incidents logs, runbooks for alerts/audit/backlog/incidents/sofiia/voice, cron jobs, scripts (alert_triage, audit_cleanup, migrate_*, governance, schedule), task_registry, voice alerts/ha/latency/policy Docs (30+ files): HUMANIZED_STEPAN v2.7-v3 changelogs and runbooks, NODA1/NODA2 status and setup, audit index and traces, backlog, incident, supervisor, tools, voice, opencode, release, risk, aistalk, spacebot Made-with: Cursor
14 lines
522 B
Plaintext
14 lines
522 B
Plaintext
# Alert Triage Loop — every 5 minutes (NODA2)
|
|
# Edit SUPERVISOR_URL if supervisor runs on a different port/host.
|
|
# Logs go to /var/log/alert_triage.log (rotate with logrotate or similar).
|
|
|
|
SUPERVISOR_URL=http://sofiia-supervisor:8084
|
|
SUPERVISOR_API_KEY=
|
|
ALERT_TRIAGE_WS_ID=default
|
|
ALERT_TRIAGE_AGENT=sofiia
|
|
|
|
*/5 * * * * python3 /opt/daarion/ops/scripts/alert_triage_loop.py >> /var/log/alert_triage.log 2>&1
|
|
|
|
# Dry-run check (manual use, not scheduled):
|
|
# python3 /opt/daarion/ops/scripts/alert_triage_loop.py --dry-run
|