post_fix_verify
Register a post-fix verification watch that captures a baseline of fix-relevant probes and re-samples later to detect drift, emitting an alert if divergence occurs.
Instructions
Register a post-fix verification watch. Captures a named baseline of fix-relevant probes and schedules re-samples to catch drift that passes immediate verification. Emits a Nape honk if a later sample diverges from the baseline. Use after any fix whose surface signal might shift (load-balancer drift, cache invalidation, configuration re-read, flaky dependency). Probes support http / command / file_hash.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fix_description | Yes | What was fixed, in one line. Surfaces in honk observations. | |
| domain_tags | No | Domain tags for reflexive surfacing and triage. | |
| probes | Yes | List of probes to run. Each probe has {name, type, ...}. type='http': {url, method?, samples?, timeout_sec?, expected: {status, success_rate_min?}}. type='command': {cmd, shell?, timeout_sec?, expected: {exit_code?, stdout_contains?, stdout_regex?}}. type='file_hash': {path, expected: {sha256?}}. If expected is omitted, the baseline becomes the expectation. | |
| schedule_offsets_min | No | Minutes-from-baseline at which to re-sample. Default [5, 30, 120, 1440]. |