PostHog events,
inside code editor

AI surfaces the signal. You fix the bug. No context switching.

No account needed Open source Works with any PostHog project
Live Action
Observer by QApilot — my-app
12:04:28 INFO Session started — user_id: u_8a3f, device: macOS
12:04:29 DEBUG Feature flag "new-checkout" evaluated: true
12:04:31 INFO Page view — /checkout/payment
12:04:32 WARN Slow API response — /api/payment/intent (1.8s)
12:04:34 ERROR Payment intent creation failed — timeout after 5000ms
Payment Flow Degradation

3 payment-related errors in the last 60s. API latency on /api/payment/intent has increased 4x. Consider checking Stripe service status and connection pool limits.

Go Deeper
12:04:36 INFO User navigated to /checkout/retry
Chat with Logs
Why are payments failing?
Based on the last 50 events, payment intent creation is timing out after 5s. The /api/payment/intent endpoint latency jumped from ~400ms to 1.8s at 12:04. This correlates with a Stripe API degradation.
What should I fix first?
Add a circuit breaker to the payment service and increase the timeout to 8s as a temporary fix. The root cause appears to be Stripe-side — check their status page.
Ask about your logs...