Try It Live

Trigger the full pipeline yourself: a production crash → detection → autonomous root-cause.

This is real AWS infrastructure. The crash is attributed to a real merged PR (#7 — Apply promo-code discount) by the agent, not scripted.

Option AOne click

Press the button. It posts a real production crash to the ingest API. Within seconds an incident opens and the agent writes a root-cause report.

Option BFrom your terminal

The public ingest API, exactly as our collector calls it. Edit the service or log_excerpt to craft your own crash.

curl -X POST https://ge5jzi7u46.execute-api.ap-south-1.amazonaws.com/ingest \
  -H 'authorization: Bearer sk_live_demo_sentinel_collector' \
  -H 'content-type: application/json' \
  -d '{
    "source": "manual",
    "service": "checkout-promo",
    "signal_type": "crash",
    "severity": "critical",
    "detected_at": "2026-06-28T12:00:00Z",
    "evidence": {
      "exit_code": 1,
      "log_excerpt": "TypeError: Cannot read properties of undefined (reading '\''rate'\'') at applyDiscount (src/services/checkout/discount.js:3)"
    }
  }'

Then open the RCA Report to watch the agent diagnose it.