Problem Statement
Production configuration drifts from expected values during incident response or manual fixes, creating silent outages. Implement runtime config auditing that snapshots current config, compares to baseline, and alerts on drift.
Technical Bounds
- Snapshot interval: 5 minutes
- Baseline: committed config files in repository
- Drift types: value change, added/removed keys
- Alert: PagerDuty on deployment-scoped critical drift
Steps
- Implement config snapshot collector
- Build diff comparator against baseline
- Add alert routing for drift categories
- Create dashboard showing drift history
Problem Statement
Production configuration drifts from expected values during incident response or manual fixes, creating silent outages. Implement runtime config auditing that snapshots current config, compares to baseline, and alerts on drift.
Technical Bounds
Steps