Scenario
You are operating a production observability platform. The following symptoms appear:
- Counter with a reset occurred
- rate() used at a window that straddles the reset
Available evidence:
- rate() returns a sudden spike
- Counter restarted during the window
Your task
Determine the cause, recover, document, and validate.
Investigation
The investigation follows the discipline taught in Part XCVIII:
- Form hypothesis, find evidence, test, validate.
- Use the available evidence above to bound the search.
- Reach one of the likely root causes.
Recovery procedure
(Do not reveal until you have reasoned through the problem.)
- Identify the failing component.
- Apply the remediation pathway.
- Validate with the verification step.
- Document the incident.
Remediation
- Identify the metric. 2. Increase counter or use reset-aware rate. 3. Validate.
Verification
Rate returns expected values across the reset.
Rollback
Revert rate change
Prevention
Reset-aware rate settings are part of the rule conventions.