27 native integrations · no plugins

Integrations

APM, cloud, metrics daemons, CI, and chat — first-party handlers with HMAC verification.

PagerDuty
Drop-In Migration Endpoint

Keep Events API v2 payloads. Change the destination URL.

OpsKnight accepts PagerDuty Events API v2 ingest at /api/integrations/pagerduty/v2/enqueue. That is an adapter — not a PagerDuty clone of the whole product.

Events API v2 setup
Datadog
HMAC-SHA256 Webhook

Datadog

Sync monitor alerts, metric anomalies, and synthesized events from Datadog monitors.

Inspect Payload
New Relic
JSON Webhook

New Relic

Route New Relic APM policy violations, NRQL condition alerts, and Golden Signal breaches.

Inspect Payload
Dynatrace
REST Webhook

Dynatrace

Ingest Davis AI root cause notifications and multi-component failure clusters.

Inspect Payload
AppDynamics
HTTP Post

AppDynamics

Forward business transaction health violations and infrastructure event triggers.

Inspect Payload
Honeycomb
JSON Trigger

Honeycomb

Trigger high-urgency alerts from Honeycomb BubbleUp triggers and distributed SLO burn rates.

Inspect Payload
Sentry
Signed Webhook

Sentry

Create deduplicated incidents from uncaught application exceptions and performance transactions.

Inspect Payload
Splunk
Detector Webhook

Splunk Observability

Real-time ingestion for Splunk Infrastructure Monitoring detector alerts and incident bridges.

Inspect Payload
Prometheus
Native Alertmanager

Prometheus Alertmanager

Native Alertmanager webhook receiver with deterministic SHA-256 fingerprint deduplication.

Inspect Payload
Grafana
Contact Point

Grafana Alerting

Ingest Grafana unified alerting rules and contact point webhooks in real time.

Inspect Payload
Zabbix
Media Type Webhook

Zabbix

Enterprise-grade Zabbix media type webhook with EVENT.ID deduplication & recovery sync.

Inspect Payload
Nagios
Notification Macro

Nagios Core & XI

Connect host & service state changes, notification macros, and scheduled downtime.

Inspect Payload
Icinga 2
Notification Pipe

Icinga 2

Native notification command scripts for Icinga 2 check results, state changes, and recovery events.

Inspect Payload
AWS CloudWatch
AWS SNS / HTTPS

AWS CloudWatch & SNS

Connect AWS CloudWatch composite alarms, SNS notifications, and EventBridge events.

Inspect Payload
Microsoft Azure
Azure Action Group

Azure Monitor

Ingest Azure Monitor Action Groups, Log Analytics alerts, and Application Insights signals.

Inspect Payload
Google Cloud
GCP Notification Channel

Google Cloud Monitoring

Sync Google Cloud Alerting notification channels and Incident Summary webhooks.

Inspect Payload
GitHub
GitHub Webhook

GitHub Actions

Automate incident triggering and deployment rollback alerts on workflow failures.

Inspect Payload
GitLab
GitLab Pipeline Hook

GitLab CI/CD

Track pipeline execution failures, runner downtime, and automatic incident resolution on retry success.

Inspect Payload
Bitbucket
Bitbucket Webhook

Bitbucket Pipelines

Catch build breaks and automated deployment pipeline failures with zero latency.

Inspect Payload
Vercel
Vercel Deployment Webhook

Vercel Deployments

Alert immediately on production deployment build failures and edge function crashes.

Inspect Payload
UptimeRobot
Uptime Webhook

UptimeRobot

Ingest synthetic ping, HTTP keyword, and port check failure notifications with auto-resolve.

Inspect Payload
Pingdom
Pingdom Webhook

Pingdom

Route global probe synthetic check failures and latency degradations to on-call teams.

Inspect Payload
Better Stack
Heartbeat Webhook

Better Stack

Stream heartbeats, synthetic checks, and cron monitor timeouts directly into OpsKnight.

Inspect Payload
Uptime Kuma
Kuma Webhook

Uptime Kuma

Connect self-hosted Uptime Kuma monitors to trigger OpsKnight escalation schedules.

Inspect Payload
Slack
Two-Way ChatOps Bot

Slack ChatOps

Dedicated war room auto-provisioning, auto-invited on-call responders, interactive action buttons, and slash commands.

Inspect Payload
Jira Cloud
Bi-Directional Sync

Jira Cloud

Bi-directional issue creation, postmortem action items sync, and live status mirroring with Jira Software.

Inspect Payload
WhatsApp
Multi-Channel Pager

WhatsApp Alerts

High-priority SMS & WhatsApp pager alerts for urgent Sev-0/Sev-1 escalations with ack links.

Inspect Payload
PagerDuty
Events API v2 ingest

PagerDuty Events API v2

Ingest adapter for Events API v2 payloads. Change the destination URL. Not a PagerDuty product and not a guarantee of every vendor integration.

Inspect Payload
Custom Ingestion API

Need a custom internal tool integration?

OpsKnight supports generic JSON webhooks with SHA-256 fingerprint deduplication. Send a single HTTP POST request from internal cron jobs, Kubernetes operators, or custom monitoring scripts.

HMAC-SHA256 Signed
Auto-Deduplication
POST /api/webhooks/custom200 OK
curl -X POST https://opsknight.yourdomain.com/api/webhooks/custom \
  -H "Content-Type: application/json" \
  -H "X-OpsKnight-Token: YOUR_INTEGRATION_SECRET" \
  -d '{
    "service_id": "svc_api_gateway",
    "title": "Database connection pool exhausted",
    "severity": "CRITICAL",
    "details": "Active connections: 500/500 on postgres-primary",
    "dedup_key": "db-pool-exhausted-prod"
  }'