Telemetry
Integration guide

Stripe Webhook Telemetry

Debug payment, subscription, invoice, retry, and downstream billing sync behavior without storing webhook bodies.

Useful for
  • Webhook debugging
  • Billing reliability
  • Revenue operations

Snippet

Start with one structured event

Add this shape where the workflow completes, fails, or retries. Then build the dashboard from real fields.

stripe-webhooks

Stripe Webhook Telemetry event

javascript
await telemetry.log("webhook_processed", {
  provider: "stripe",
  event_type: "invoice.payment_succeeded",
  status: "success",
  latency_ms: 328,
  downstream_job_count: 2,
  idempotency_outcome: "new_event",
});

Templates to pair with this integration

More integrations