guides

Alerting and Webhooks

Configure alerts for compilation failures, quota exhaustion, and performance regressions.

Published May 30, 2026

Dashboard Alerts

Configure alerts in app.pyvorin.com for:

  • Compile credit exhaustion (80%, 95%, 100%)
  • High fallback rate (> 20%)
  • Correctness mismatch detected
  • Average speedup below threshold

Webhook Integration

Set a webhook URL to receive real-time events:

POST https://your-alerts.com/pyvorin
Content-Type: application/json

{
  "event_type": "correctness_mismatch",
  "workload_hash": "abc123",
  "timestamp": "2026-05-30T12:00:00Z"
}

Slack / Teams

Use webhook adapters to route alerts to Slack, Microsoft Teams, or PagerDuty.

Prometheus Metrics

Parse local usage JSON files and expose custom metrics:

# HELP pyvorin_fallback_rate Percentage of fallback executions
# TYPE pyvorin_fallback_rate gauge
pyvorin_fallback_rate 0.05