Create PagerDuty webhook exporter.
(routing_key: str, min_severity: str = "high")
| 280 | def create_pagerduty_webhook(routing_key: str, min_severity: str = "high") -> WebhookExporter: |
| 281 | """Create PagerDuty webhook exporter.""" |
| 282 | return WebhookExporter( |
| 283 | url="https://events.pagerduty.com/v2/enqueue", |
| 284 | format="pagerduty", |
| 285 | auth_token=routing_key, |
| 286 | min_severity=min_severity, |
| 287 | ) |
nothing calls this directly
no test coverage detected