BlameTrail is built to sit in the middle of your existing stack, not replace it. We read your deploys, listen to your alerts, file into your Jira, and open PRs in your repos. Twenty-two connectors live today, another twenty honestly marked planned. If a tile below says "PLANNED," there's no code yet — we'd rather say that than paint a vaporware atlas.
Filter by category. Tiles marked LIVE map to real code you can wire up today. Tiles marked PLANNED are on the roadmap — email us if one of them is the difference.
Deploy webhooks, commit + PR enrichment, AI-drafted revert and fix PRs. OAuth sign-in.
Same shape as GitHub: deploy events, MR drafts, commit enrichment. Not started yet.
Cloud first, then Data Center. Parity with the GitHub connector.
Incident notifications via incoming webhook. Full Slack App with socket mode + slash commands (/bt ack, /bt resolve) is on the roadmap.
Adaptive cards for incidents, channel-per-incident mode, approval flows for reverts.
For OSS teams running incidents in public. Same commands as Slack, fewer compliance toggles.
Self-hosted chat for regulated teams. Slash commands + webhook ingest.
Alertmanager webhook ingest, PromQL range queries pulled into incident recaps.
Log windows bracketed ±60s around each incident, pulled into AI recaps.
Monitor-triggered incident ingest (with HMAC verification), metrics queries, APM trace enrichment.
AWS alarms via SNS, log groups via Logs API. IAM-role-scoped access with SSRF-hardened subscription confirmation.
Grafana Alerting webhook with bearer-token auth. Fingerprinted dedup, automatic resolution.
Incident intelligence events + NRQL queries + APM trace enrichment.
Public Sentry app with OAuth 2.0, HMAC-verified webhooks, tag + stacktrace enrichment, OAuth-token refresh worker.
Grafana Tempo trace correlation — pull spans for the failing request by trace ID.
Open-source distributed tracing. Trace lookup by ID, span rendering inside the incident.
Trace-level correlation via the Honeycomb API. BubbleUp excerpts in recaps coming next.
APM server + Elasticsearch query for span retrieval.
IAM-role-scoped trace retrieval for AWS workloads.
Lightstep-compatible trace retrieval via their public API.
SMS + voice (TwiML announce + DTMF ack). US/CA/UK at cost, other destinations +30% uplift.
Browser + mobile web push via RFC 8030/8291. No App Store required.
Bridge mode: forward alerts, mirror schedules, run both tools in parallel during migration.
Same bridge pattern as PagerDuty plus one-shot schedule import.
OAuth 2.0 (3LO), bidirectional sync, dynamic webhook registration with auto-refresh, status + assignee mirroring.
Bidirectional sync, label mapping, automatic cycle assignment for incidents.
Stories on incidents, epics on related postmortems.
Auto-link customer tickets to the incident that's causing them.
Conversation-burst detection as a leading indicator for incidents.
SAML + SCIM broker for any IdP — Okta, Azure AD, Google Workspace, JumpCloud, OneLogin. Enterprise tier.
Sign in with Google on every plan, including free.
Sign in with GitHub on every plan, including free.
Direct OIDC flow for IdPs WorkOS doesn't broker. Today, route through WorkOS.
Streaming the hash-chained audit log to Splunk, Panther, or syslog. Today we support CSV/NDJSON export only.
POST a deploy event from any CI — curl one line with a tenant-scoped dpl_* token. The one connector every other CI card below is built on.
A maintained Action that records deploys and attaches workflow-run links. For now, call the webhook from a step directly.
A shareable pipeline component. Webhook works today.
Official Orb for deploy events. Webhook works today.
Plugin for classic + Blue Ocean. Webhook works today.
Native deploy-hook reception. Webhook works today.
Native deploy-hook reception. Webhook works today.
GitOps-native deploy correlation for Kubernetes.
Two integration shapes cover most setups: an inbound deploy webhook for your CI, and provider-specific alert ingest tokens for Prometheus, Datadog, CloudWatch, Grafana, and Sentry.
Whatever ships to production should POST to BlameTrail. The generic deploy webhook accepts SHA, branch, author, and commit metadata. Tenant-scoped token, SHA-256 stored, rate limited.
Point Prometheus Alertmanager, Datadog monitors, CloudWatch SNS, Grafana Alerting, or Sentry issues at our ingest endpoint. One token works across all of them.
A single ingest endpoint with a stable schema, plus a REST + webhook API for everything else. cURL one in under a minute.
# POST an incident to the generic alert-ingest endpoint.
# Your tenant-scoped alt_* token is minted in the app and hashed
# at rest; the X-Idempotency-Key header makes retries safe.
curl -X POST https://blametrail.com/api/alerts/ingest/generic \
-H "X-Alert-Token: $BT_ALERT_TOKEN" \
-H "X-Idempotency-Key: checkout-latency-p99-2026-04-20" \
-H "Content-Type: application/json" \
-d '{
"title": "p99 latency spike on /checkout",
"severity": "sev2",
"service": "billing-api",
"fingerprint": "checkout-latency-p99",
"started_at": "2026-04-20T00:47:12Z",
"source": "datadog",
"links": [
{ "label": "dashboard", "url": "..." },
{ "label": "runbook", "url": "..." }
]
}'
# → 202 Accepted
{
"delivery_id": "ad_01JXPQZ7X9M",
"status": "received"
}
# The normalization worker dedupes + correlates + auto-resolves.