22 lines
739 B
YAML
22 lines
739 B
YAML
groups:
|
|
- name: agent-call
|
|
rules:
|
|
- alert: AgentCallOutboxStalled
|
|
expr: agent_call_outbox_pending > 0
|
|
for: 2m
|
|
labels: {severity: warning}
|
|
annotations:
|
|
summary: agent-call outbox has pending events
|
|
- alert: AgentCallDeadLetters
|
|
expr: increase(agent_call_dead_letters_total[5m]) > 0
|
|
for: 1m
|
|
labels: {severity: critical}
|
|
annotations:
|
|
summary: agent-call rejected or malformed messages entered the DLQ
|
|
- alert: AgentCallNotMockSafe
|
|
expr: agent_call_mode_info{mode="mock"} != 1
|
|
for: 1m
|
|
labels: {severity: critical}
|
|
annotations:
|
|
summary: provider mode changed; verify production admission gates
|