[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-sentry-elixir-sdk":3,"mdc-bcio58-key":36,"related-repo-sentry-sentry-elixir-sdk":3777,"related-org-sentry-sentry-elixir-sdk":3878},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":31,"sourceUrl":34,"mdContent":35},"sentry-elixir-sdk","setup Sentry SDK for Elixir","Full Sentry SDK setup for Elixir. Use when asked to \"add Sentry to Elixir\", \"install sentry for Elixir\", or configure error monitoring, tracing, logging, or crons for Elixir, Phoenix, or Plug applications. Supports Phoenix, Plug, LiveView, Oban, and Quantum.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sentry","Sentry","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsentry.png","getsentry",[13,17,20,23],{"name":14,"slug":15,"type":16},"Observability","observability","tag",{"name":18,"slug":19,"type":16},"Backend","backend",{"name":21,"slug":22,"type":16},"Elixir","elixir",{"name":9,"slug":8,"type":16},237,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-for-ai","2026-07-11T05:53:11.69581","Apache-2.0",30,[30],"tag-production",{"repoUrl":25,"stars":24,"forks":28,"topics":32,"description":33},[30],"Teach your AI coding assistant how to use Sentry - setup, debugging, alerts, and more","https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-for-ai\u002Ftree\u002FHEAD\u002Fskills-legacy\u002Fsentry-elixir-sdk","---\nname: sentry-elixir-sdk\ndescription: Full Sentry SDK setup for Elixir. Use when asked to \"add Sentry to Elixir\", \"install sentry for Elixir\", or configure error monitoring, tracing, logging, or crons for Elixir, Phoenix, or Plug applications. Supports Phoenix, Plug, LiveView, Oban, and Quantum.\nlicense: Apache-2.0\ncategory: sdk-setup\nparent: sentry-sdk-setup\ndisable-model-invocation: true\n---\n\n> [All Skills](..\u002F..\u002FSKILL_TREE.md) > [SDK Setup](..\u002Fsentry-sdk-setup\u002FSKILL.md) > Elixir SDK\n\n# Sentry Elixir SDK\n\nOpinionated wizard that scans your Elixir project and guides you through complete Sentry setup.\n\n## Invoke This Skill When\n\n- User asks to \"add Sentry to Elixir\" or \"set up Sentry\" in an Elixir or Phoenix app\n- User wants error monitoring, tracing, logging, or crons in Elixir or Phoenix\n- User mentions `sentry` hex package, `getsentry\u002Fsentry-elixir`, or Elixir Sentry SDK\n- User wants to monitor exceptions, Plug errors, LiveView errors, or scheduled jobs\n\n> **Note:** SDK versions and APIs below reflect Sentry docs at time of writing (sentry v13.2.0, requires Elixir ~> 1.13).\n> Always verify against [docs.sentry.io\u002Fplatforms\u002Felixir\u002F](https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Felixir\u002F) before implementing.\n\n---\n\n## Phase 1: Detect\n\nRun these commands to understand the project before making any recommendations:\n\n```bash\n# Check existing Sentry dependency\ngrep -i sentry mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Elixir version\ncat .tool-versions 2>\u002Fdev\u002Fnull | grep elixir\ngrep \"elixir:\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Phoenix or Plug\ngrep -E '\"phoenix\"|\"plug\"' mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Phoenix LiveView\ngrep \"phoenix_live_view\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Oban (job queue \u002F crons)\ngrep \"oban\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Quantum (cron scheduler)\ngrep \"quantum\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect OpenTelemetry usage\ngrep \"opentelemetry\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Check for companion frontend\nls assets\u002F frontend\u002F web\u002F client\u002F 2>\u002Fdev\u002Fnull\n```\n\n**What to note:**\n\n| Signal | Impact |\n|--------|--------|\n| `sentry` already in `mix.exs`? | Skip install; go to Phase 2 (configure features) |\n| Phoenix detected? | Add `Sentry.PlugCapture`, `Sentry.PlugContext`, optionally `Sentry.LiveViewHook` |\n| LiveView detected? | Add `Sentry.LiveViewHook` to the `live_view` macro in `my_app_web.ex` |\n| Oban detected? | Recommend Crons + error capture via Oban integration |\n| Quantum detected? | Recommend Crons via Quantum integration |\n| OpenTelemetry already present? | Tracing setup only needs `Sentry.OpenTelemetry.*` config |\n| Frontend directory found? | Trigger Phase 4 cross-link suggestion |\n\n---\n\n## Phase 2: Recommend\n\nBased on what you found, present a concrete recommendation. Don't ask open-ended questions — lead with a proposal:\n\n**Recommended (core coverage):**\n- ✅ **Error Monitoring** — always; captures exceptions and crash reports\n- ✅ **Logging** — `Sentry.LoggerHandler` forwards crash reports and error logs to Sentry\n- ✅ **Tracing** — if Phoenix, Plug, or Ecto detected (via OpenTelemetry)\n\n**Optional (enhanced observability):**\n- ⚡ **Crons** — detect silent failures in scheduled jobs (Oban, Quantum, or manual GenServer)\n- ⚡ **Sentry Logs** — forward structured logs to Sentry Logs Protocol (sentry v12.0.0+)\n\n**Recommendation logic:**\n\n| Feature | Recommend when... |\n|---------|------------------|\n| Error Monitoring | **Always** — non-negotiable baseline |\n| Logging | **Always** — `LoggerHandler` captures crashes that aren't explicit `capture_exception` calls |\n| Tracing | Phoenix, Plug, Ecto, or OpenTelemetry imports detected |\n| Crons | Oban, Quantum, or periodic `GenServer`\u002F`Task` patterns detected |\n| Sentry Logs | sentry v12.0.0+ in use and structured log search is needed |\n\nPropose: *\"I recommend setting up Error Monitoring + Logging [+ Tracing if Phoenix\u002FEcto detected]. Want me to also add Crons or Sentry Logs?\"*\n\n---\n\n## Phase 3: Guide\n\n### Option 1: Igniter Installer (Recommended)\n\n> **You need to run this yourself** — the Igniter installer requires interactive terminal input that the agent can't handle. Copy-paste into your terminal:\n>\n> ```bash\n> mix igniter.install sentry\n> ```\n>\n> Available since sentry v11.0.0. It auto-configures `config\u002Fconfig.exs`, `config\u002Fprod.exs`, `config\u002Fruntime.exs`, and `lib\u002Fmy_app\u002Fapplication.ex`.\n>\n> **Once it finishes, come back and skip to [Verification](#verification).**\n\nIf the user skips the Igniter installer, proceed with Option 2 (Manual Setup) below.\n\n---\n\n### Option 2: Manual Setup\n\n#### Install\n\nAdd to `mix.exs` dependencies:\n\n```elixir\n# mix.exs\ndefp deps do\n  [\n    {:sentry, \"~> 13.0\"},\n    {:finch, \"~> 0.21\"}\n    # Add jason if using Elixir \u003C 1.18:\n    # {:jason, \"~> 1.4\"},\n  ]\nend\n```\n\n```bash\nmix deps.get\n```\n\n#### Configure\n\n```elixir\n# config\u002Fconfig.exs\nconfig :sentry,\n  dsn: System.get_env(\"SENTRY_DSN\"),\n  environment_name: config_env(),\n  enable_source_code_context: true,\n  root_source_code_paths: [File.cwd!()],\n  in_app_otp_apps: [:my_app]\n```\n\nFor runtime configuration (recommended for DSN and release):\n\n```elixir\n# config\u002Fruntime.exs\nimport Config\n\nconfig :sentry,\n  dsn: System.fetch_env!(\"SENTRY_DSN\"),\n  release: System.get_env(\"SENTRY_RELEASE\", \"my-app@#{Application.spec(:my_app, :vsn)}\")\n```\n\n#### Quick Start — Recommended Init Config\n\nThis config enables the most features with sensible defaults:\n\n```elixir\n# config\u002Fconfig.exs\nconfig :sentry,\n  dsn: System.get_env(\"SENTRY_DSN\"),\n  environment_name: config_env(),\n  enable_source_code_context: true,\n  root_source_code_paths: [File.cwd!()],\n  in_app_otp_apps: [:my_app],\n  # Logger handler config — captures crash reports\n  logger: [\n    {:handler, :sentry_handler, Sentry.LoggerHandler, %{\n      config: %{\n        metadata: [:request_id],\n        capture_log_messages: true,\n        level: :error\n      }\n    }}\n  ]\n```\n\n#### Activate Logger Handler\n\nAdd `Logger.add_handlers\u002F1` in `Application.start\u002F2`:\n\n```elixir\n# lib\u002Fmy_app\u002Fapplication.ex\ndef start(_type, _args) do\n  Logger.add_handlers(:my_app)   # activates the :sentry_handler configured above\n\n  children = [\n    MyAppWeb.Endpoint\n    # ... other children\n  ]\n\n  Supervisor.start_link(children, strategy: :one_for_one)\nend\n```\n\n#### Phoenix Integration\n\n**`lib\u002Fmy_app_web\u002Fendpoint.ex`**\n\n```elixir\ndefmodule MyAppWeb.Endpoint do\n  use Sentry.PlugCapture          # Add ABOVE use Phoenix.Endpoint (Cowboy adapter only)\n  use Phoenix.Endpoint, otp_app: :my_app\n\n  # ...\n\n  plug Plug.Parsers,\n    parsers: [:urlencoded, :multipart, :json],\n    pass: [\"*\u002F*\"],\n    json_decoder: Phoenix.json_library()\n\n  plug Sentry.PlugContext          # Add BELOW Plug.Parsers\n  # ...\nend\n```\n\n> **Note:** `Sentry.PlugCapture` is only needed for the **Cowboy** adapter. Phoenix 1.7+ defaults to **Bandit**, where `PlugCapture` is harmless but unnecessary. `Sentry.PlugContext` is always recommended — it enriches events with HTTP request data.\n\n**LiveView errors — `lib\u002Fmy_app_web.ex`**\n\n```elixir\ndef live_view do\n  quote do\n    use Phoenix.LiveView\n\n    on_mount Sentry.LiveViewHook   # captures errors in mount\u002Fhandle_event\u002Fhandle_info\n  end\nend\n```\n\n#### Plain Plug Application\n\n```elixir\ndefmodule MyApp.Router do\n  use Plug.Router\n  use Sentry.PlugCapture          # Cowboy only\n\n  plug Plug.Parsers, parsers: [:urlencoded, :multipart]\n  plug Sentry.PlugContext\n  # ...\nend\n```\n\n### For Each Agreed Feature\n\nWalk through features one at a time. Load the reference file for each, follow its steps, and verify before moving to the next:\n\n| Feature | Reference file | Load when... |\n|---------|---------------|-------------|\n| Error Monitoring | `${SKILL_ROOT}\u002Freferences\u002Ferror-monitoring.md` | Always (baseline) |\n| Tracing | `${SKILL_ROOT}\u002Freferences\u002Ftracing.md` | Phoenix \u002F Ecto \u002F OpenTelemetry detected |\n| Logging | `${SKILL_ROOT}\u002Freferences\u002Flogging.md` | `LoggerHandler` or Sentry Logs setup |\n| Crons | `${SKILL_ROOT}\u002Freferences\u002Fcrons.md` | Oban, Quantum, or periodic jobs detected |\n\nFor each feature: `Read ${SKILL_ROOT}\u002Freferences\u002F\u003Cfeature>.md`, follow steps exactly, verify it works.\n\n---\n\n## Configuration Reference\n\n### Key Config Options\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `:dsn` | `string \\| nil` | `nil` | SDK disabled if nil; env: `SENTRY_DSN` |\n| `:environment_name` | `atom \\| string` | `\"production\"` | e.g., `:prod`; env: `SENTRY_ENVIRONMENT` |\n| `:release` | `string \\| nil` | `nil` | e.g., `\"my-app@1.0.0\"`; env: `SENTRY_RELEASE` |\n| `:sample_rate` | `float` | `1.0` | Error event sample rate (0.0–1.0) |\n| `:enable_source_code_context` | `boolean` | `false` | Include source lines around errors |\n| `:root_source_code_paths` | `[path]` | `[]` | Required when source context is enabled |\n| `:in_app_otp_apps` | `[atom]` | `[]` | OTP apps whose modules are \"in-app\" in stacktraces |\n| `:before_send` | `(event -> event \\| nil) \\| {m, f}` | `nil` | Hook to mutate or drop error events |\n| `:after_send_event` | `(event, result -> any) \\| {m, f}` | `nil` | Hook called after event is sent |\n| `:filter` | `module` | `Sentry.DefaultEventFilter` | Module implementing `Sentry.EventFilter` |\n| `:max_breadcrumbs` | `integer` | `100` | Max breadcrumbs per process |\n| `:max_stacktrace_arg_length` | `integer` | `10000` | Max length (in graphemes) of each inspected function argument in stacktrace vars (v13.2.0+) |\n| `:dedup_events` | `boolean` | `true` | Deduplicate identical events within ~30 seconds |\n| `:tags` | `map` | `%{}` | Global tags sent with every event |\n| `:traces_sample_rate` | `float \\| nil` | `nil` | Non-nil enables tracing (requires OTel setup) |\n| `:traces_sampler` | `fn \\| {m, f} \\| nil` | `nil` | Custom per-transaction sampling |\n| `:enable_logs` | `boolean` | `false` | Enable Sentry Logs Protocol (v12.0.0+) |\n| `:scrubber` | `keyword` | `[]` | Scrubber config (v13.1.1+); keys: `:conn_private_allow_list` (list of atoms kept from `Plug.Conn.private`) |\n| `:test_mode` | `boolean` | `false` | Capture events in-memory for testing |\n\n### Default PII Guidance\n\nMost Sentry SDKs expose a send-default-PII option. As of sentry v12, the Elixir SDK does not expose a `send_default_pii` config option in its documented option list or current config schema, so do **not** add a non-existent option. For richer user context, use `Sentry.PlugContext` and explicitly set allowed fields with `Sentry.Context.set_user_context\u002F1`, then scrub with `:before_send` if needed. If a future Elixir SDK release adds `send_default_pii`, recommend setting it.\n\n**Automatic PII Scrubbing:** As of v13.1.0, stacktrace frame variables and `FunctionClauseError`\u002F`Phoenix.ActionClauseError` arguments are automatically scrubbed for sensitive data using the same scrubber rules as HTTP request data. Use `:scrubber` config to customize which `Plug.Conn.private` keys are retained.\n\n### Environment Variables\n\n| Variable | Maps to | Purpose |\n|----------|---------|---------|\n| `SENTRY_DSN` | `:dsn` | Data Source Name |\n| `SENTRY_RELEASE` | `:release` | App version (e.g., `my-app@1.0.0`) |\n| `SENTRY_ENVIRONMENT` | `:environment_name` | Deployment environment |\n\n---\n\n## Verification\n\nTest that Sentry is receiving events:\n\n```bash\n# Send a test event from your project\nMIX_ENV=dev mix sentry.send_test_event\n```\n\nOr add a temporary call in a controller action:\n\n```elixir\n# Temporary test — remove after confirming\ndef index(conn, _params) do\n  Sentry.capture_message(\"Sentry Elixir SDK test event\")\n  text(conn, \"sent\")\nend\n```\n\nCheck the Sentry dashboard within a few seconds. If nothing appears:\n1. Set `config :sentry, log_level: :debug` for verbose SDK output\n2. Verify `SENTRY_DSN` is set and the project exists\n3. Confirm `:environment_name` is not set to a value Sentry filters in your alert rules\n\n---\n\n## Phase 4: Cross-Link\n\nAfter completing Elixir setup, check for a companion frontend missing Sentry coverage:\n\n```bash\nls assets\u002F frontend\u002F web\u002F client\u002F ui\u002F 2>\u002Fdev\u002Fnull\ncat assets\u002Fpackage.json frontend\u002Fpackage.json 2>\u002Fdev\u002Fnull | grep -E '\"react\"|\"svelte\"|\"vue\"|\"next\"'\n```\n\nIf a frontend directory exists without Sentry configured, suggest the matching skill:\n\n| Frontend detected | Suggest skill |\n|-------------------|--------------|\n| React \u002F Next.js | `sentry-react-sdk` or `sentry-nextjs-sdk` |\n| Svelte \u002F SvelteKit | `sentry-svelte-sdk` |\n| Vue | See [docs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fvue\u002F](https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fvue\u002F) |\n| Other JS\u002FTS | `sentry-browser-sdk` |\n\nConnecting Phoenix backend and JavaScript frontend with linked Sentry projects enables **distributed tracing** — stack traces that span the browser, Phoenix HTTP server, and downstream services in a single trace view.\n\n---\n\n## Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| Events not appearing | Verify `SENTRY_DSN` is set; run `mix sentry.send_test_event`; set `log_level: :debug` |\n| Missing stack traces on captured exceptions | Pass `stacktrace: __STACKTRACE__` in the `rescue` block: `Sentry.capture_exception(e, stacktrace: __STACKTRACE__)` |\n| `PlugCapture` not working on Bandit | `Sentry.PlugCapture` is Cowboy-only; with Bandit errors surface via `LoggerHandler` |\n| Source code context missing in production | Run `mix sentry.package_source_code` before building your OTP release |\n| Context not appearing on async events | `Sentry.Context.*` is process-scoped; pass values explicitly or propagate Logger metadata across processes |\n| Oban integration not reporting crons | Requires Oban v2.17.6+ or Oban Pro; cron jobs must have `\"cron\" => true` in job meta |\n| Duplicate events from Cowboy\u002FBandit crashes | Set `excluded_domains: [:cowboy, :bandit]` in `LoggerHandler` config (both excluded by default as of v13.1.0) |\n| `finch` not starting | Ensure `{:finch, \"~> 0.21\"}` is in deps; Finch is the default HTTP client since v12.0.0 |\n| JSON encoding error | Add `{:jason, \"~> 1.4\"}` and set `json_library: Jason` for Elixir \u003C 1.18 |\n",{"data":37,"body":41},{"name":4,"description":6,"license":27,"category":38,"parent":39,"disable-model-invocation":40},"sdk-setup","sentry-sdk-setup",true,{"type":42,"children":43},"root",[44,71,77,82,89,130,154,158,164,169,631,639,821,824,830,835,843,888,896,922,930,1052,1070,1073,1079,1086,1174,1179,1182,1188,1195,1207,1287,1306,1312,1375,1380,1433,1439,1444,1580,1586,1606,1697,1703,1715,1829,1877,1891,1952,1958,2026,2032,2037,2152,2165,2168,2174,2180,2917,2923,2972,3011,3017,3122,3125,3130,3135,3179,3184,3230,3235,3276,3279,3285,3290,3384,3389,3490,3502,3505,3511,3771],{"type":45,"tag":46,"props":47,"children":48},"element","blockquote",{},[49],{"type":45,"tag":50,"props":51,"children":52},"p",{},[53,61,63,69],{"type":45,"tag":54,"props":55,"children":57},"a",{"href":56},"..\u002F..\u002FSKILL_TREE.md",[58],{"type":59,"value":60},"text","All Skills",{"type":59,"value":62}," > ",{"type":45,"tag":54,"props":64,"children":66},{"href":65},"..\u002Fsentry-sdk-setup\u002FSKILL.md",[67],{"type":59,"value":68},"SDK Setup",{"type":59,"value":70}," > Elixir SDK",{"type":45,"tag":72,"props":73,"children":74},"h1",{"id":4},[75],{"type":59,"value":76},"Sentry Elixir SDK",{"type":45,"tag":50,"props":78,"children":79},{},[80],{"type":59,"value":81},"Opinionated wizard that scans your Elixir project and guides you through complete Sentry setup.",{"type":45,"tag":83,"props":84,"children":86},"h2",{"id":85},"invoke-this-skill-when",[87],{"type":59,"value":88},"Invoke This Skill When",{"type":45,"tag":90,"props":91,"children":92},"ul",{},[93,99,104,125],{"type":45,"tag":94,"props":95,"children":96},"li",{},[97],{"type":59,"value":98},"User asks to \"add Sentry to Elixir\" or \"set up Sentry\" in an Elixir or Phoenix app",{"type":45,"tag":94,"props":100,"children":101},{},[102],{"type":59,"value":103},"User wants error monitoring, tracing, logging, or crons in Elixir or Phoenix",{"type":45,"tag":94,"props":105,"children":106},{},[107,109,115,117,123],{"type":59,"value":108},"User mentions ",{"type":45,"tag":110,"props":111,"children":113},"code",{"className":112},[],[114],{"type":59,"value":8},{"type":59,"value":116}," hex package, ",{"type":45,"tag":110,"props":118,"children":120},{"className":119},[],[121],{"type":59,"value":122},"getsentry\u002Fsentry-elixir",{"type":59,"value":124},", or Elixir Sentry SDK",{"type":45,"tag":94,"props":126,"children":127},{},[128],{"type":59,"value":129},"User wants to monitor exceptions, Plug errors, LiveView errors, or scheduled jobs",{"type":45,"tag":46,"props":131,"children":132},{},[133],{"type":45,"tag":50,"props":134,"children":135},{},[136,142,144,152],{"type":45,"tag":137,"props":138,"children":139},"strong",{},[140],{"type":59,"value":141},"Note:",{"type":59,"value":143}," SDK versions and APIs below reflect Sentry docs at time of writing (sentry v13.2.0, requires Elixir ~> 1.13).\nAlways verify against ",{"type":45,"tag":54,"props":145,"children":149},{"href":146,"rel":147},"https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Felixir\u002F",[148],"nofollow",[150],{"type":59,"value":151},"docs.sentry.io\u002Fplatforms\u002Felixir\u002F",{"type":59,"value":153}," before implementing.",{"type":45,"tag":155,"props":156,"children":157},"hr",{},[],{"type":45,"tag":83,"props":159,"children":161},{"id":160},"phase-1-detect",[162],{"type":59,"value":163},"Phase 1: Detect",{"type":45,"tag":50,"props":165,"children":166},{},[167],{"type":59,"value":168},"Run these commands to understand the project before making any recommendations:",{"type":45,"tag":170,"props":171,"children":176},"pre",{"className":172,"code":173,"language":174,"meta":175,"style":175},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Check existing Sentry dependency\ngrep -i sentry mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Elixir version\ncat .tool-versions 2>\u002Fdev\u002Fnull | grep elixir\ngrep \"elixir:\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Phoenix or Plug\ngrep -E '\"phoenix\"|\"plug\"' mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Phoenix LiveView\ngrep \"phoenix_live_view\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Oban (job queue \u002F crons)\ngrep \"oban\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect Quantum (cron scheduler)\ngrep \"quantum\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Detect OpenTelemetry usage\ngrep \"opentelemetry\" mix.exs 2>\u002Fdev\u002Fnull\n\n# Check for companion frontend\nls assets\u002F frontend\u002F web\u002F client\u002F 2>\u002Fdev\u002Fnull\n","bash","",[177],{"type":45,"tag":110,"props":178,"children":179},{"__ignoreMap":175},[180,192,229,238,247,285,320,328,337,377,385,394,427,435,444,477,485,494,527,535,544,577,585,594],{"type":45,"tag":181,"props":182,"children":185},"span",{"class":183,"line":184},"line",1,[186],{"type":45,"tag":181,"props":187,"children":189},{"style":188},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[190],{"type":59,"value":191},"# Check existing Sentry dependency\n",{"type":45,"tag":181,"props":193,"children":195},{"class":183,"line":194},2,[196,202,208,213,218,224],{"type":45,"tag":181,"props":197,"children":199},{"style":198},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[200],{"type":59,"value":201},"grep",{"type":45,"tag":181,"props":203,"children":205},{"style":204},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[206],{"type":59,"value":207}," -i",{"type":45,"tag":181,"props":209,"children":210},{"style":204},[211],{"type":59,"value":212}," sentry",{"type":45,"tag":181,"props":214,"children":215},{"style":204},[216],{"type":59,"value":217}," mix.exs",{"type":45,"tag":181,"props":219,"children":221},{"style":220},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[222],{"type":59,"value":223}," 2>",{"type":45,"tag":181,"props":225,"children":226},{"style":204},[227],{"type":59,"value":228},"\u002Fdev\u002Fnull\n",{"type":45,"tag":181,"props":230,"children":232},{"class":183,"line":231},3,[233],{"type":45,"tag":181,"props":234,"children":235},{"emptyLinePlaceholder":40},[236],{"type":59,"value":237},"\n",{"type":45,"tag":181,"props":239,"children":241},{"class":183,"line":240},4,[242],{"type":45,"tag":181,"props":243,"children":244},{"style":188},[245],{"type":59,"value":246},"# Detect Elixir version\n",{"type":45,"tag":181,"props":248,"children":250},{"class":183,"line":249},5,[251,256,261,265,270,275,280],{"type":45,"tag":181,"props":252,"children":253},{"style":198},[254],{"type":59,"value":255},"cat",{"type":45,"tag":181,"props":257,"children":258},{"style":204},[259],{"type":59,"value":260}," .tool-versions",{"type":45,"tag":181,"props":262,"children":263},{"style":220},[264],{"type":59,"value":223},{"type":45,"tag":181,"props":266,"children":267},{"style":204},[268],{"type":59,"value":269},"\u002Fdev\u002Fnull",{"type":45,"tag":181,"props":271,"children":272},{"style":220},[273],{"type":59,"value":274}," |",{"type":45,"tag":181,"props":276,"children":277},{"style":198},[278],{"type":59,"value":279}," grep",{"type":45,"tag":181,"props":281,"children":282},{"style":204},[283],{"type":59,"value":284}," elixir\n",{"type":45,"tag":181,"props":286,"children":288},{"class":183,"line":287},6,[289,293,298,303,308,312,316],{"type":45,"tag":181,"props":290,"children":291},{"style":198},[292],{"type":59,"value":201},{"type":45,"tag":181,"props":294,"children":295},{"style":220},[296],{"type":59,"value":297}," \"",{"type":45,"tag":181,"props":299,"children":300},{"style":204},[301],{"type":59,"value":302},"elixir:",{"type":45,"tag":181,"props":304,"children":305},{"style":220},[306],{"type":59,"value":307},"\"",{"type":45,"tag":181,"props":309,"children":310},{"style":204},[311],{"type":59,"value":217},{"type":45,"tag":181,"props":313,"children":314},{"style":220},[315],{"type":59,"value":223},{"type":45,"tag":181,"props":317,"children":318},{"style":204},[319],{"type":59,"value":228},{"type":45,"tag":181,"props":321,"children":323},{"class":183,"line":322},7,[324],{"type":45,"tag":181,"props":325,"children":326},{"emptyLinePlaceholder":40},[327],{"type":59,"value":237},{"type":45,"tag":181,"props":329,"children":331},{"class":183,"line":330},8,[332],{"type":45,"tag":181,"props":333,"children":334},{"style":188},[335],{"type":59,"value":336},"# Detect Phoenix or Plug\n",{"type":45,"tag":181,"props":338,"children":340},{"class":183,"line":339},9,[341,345,350,355,360,365,369,373],{"type":45,"tag":181,"props":342,"children":343},{"style":198},[344],{"type":59,"value":201},{"type":45,"tag":181,"props":346,"children":347},{"style":204},[348],{"type":59,"value":349}," -E",{"type":45,"tag":181,"props":351,"children":352},{"style":220},[353],{"type":59,"value":354}," '",{"type":45,"tag":181,"props":356,"children":357},{"style":204},[358],{"type":59,"value":359},"\"phoenix\"|\"plug\"",{"type":45,"tag":181,"props":361,"children":362},{"style":220},[363],{"type":59,"value":364},"'",{"type":45,"tag":181,"props":366,"children":367},{"style":204},[368],{"type":59,"value":217},{"type":45,"tag":181,"props":370,"children":371},{"style":220},[372],{"type":59,"value":223},{"type":45,"tag":181,"props":374,"children":375},{"style":204},[376],{"type":59,"value":228},{"type":45,"tag":181,"props":378,"children":380},{"class":183,"line":379},10,[381],{"type":45,"tag":181,"props":382,"children":383},{"emptyLinePlaceholder":40},[384],{"type":59,"value":237},{"type":45,"tag":181,"props":386,"children":388},{"class":183,"line":387},11,[389],{"type":45,"tag":181,"props":390,"children":391},{"style":188},[392],{"type":59,"value":393},"# Detect Phoenix LiveView\n",{"type":45,"tag":181,"props":395,"children":397},{"class":183,"line":396},12,[398,402,406,411,415,419,423],{"type":45,"tag":181,"props":399,"children":400},{"style":198},[401],{"type":59,"value":201},{"type":45,"tag":181,"props":403,"children":404},{"style":220},[405],{"type":59,"value":297},{"type":45,"tag":181,"props":407,"children":408},{"style":204},[409],{"type":59,"value":410},"phoenix_live_view",{"type":45,"tag":181,"props":412,"children":413},{"style":220},[414],{"type":59,"value":307},{"type":45,"tag":181,"props":416,"children":417},{"style":204},[418],{"type":59,"value":217},{"type":45,"tag":181,"props":420,"children":421},{"style":220},[422],{"type":59,"value":223},{"type":45,"tag":181,"props":424,"children":425},{"style":204},[426],{"type":59,"value":228},{"type":45,"tag":181,"props":428,"children":430},{"class":183,"line":429},13,[431],{"type":45,"tag":181,"props":432,"children":433},{"emptyLinePlaceholder":40},[434],{"type":59,"value":237},{"type":45,"tag":181,"props":436,"children":438},{"class":183,"line":437},14,[439],{"type":45,"tag":181,"props":440,"children":441},{"style":188},[442],{"type":59,"value":443},"# Detect Oban (job queue \u002F crons)\n",{"type":45,"tag":181,"props":445,"children":447},{"class":183,"line":446},15,[448,452,456,461,465,469,473],{"type":45,"tag":181,"props":449,"children":450},{"style":198},[451],{"type":59,"value":201},{"type":45,"tag":181,"props":453,"children":454},{"style":220},[455],{"type":59,"value":297},{"type":45,"tag":181,"props":457,"children":458},{"style":204},[459],{"type":59,"value":460},"oban",{"type":45,"tag":181,"props":462,"children":463},{"style":220},[464],{"type":59,"value":307},{"type":45,"tag":181,"props":466,"children":467},{"style":204},[468],{"type":59,"value":217},{"type":45,"tag":181,"props":470,"children":471},{"style":220},[472],{"type":59,"value":223},{"type":45,"tag":181,"props":474,"children":475},{"style":204},[476],{"type":59,"value":228},{"type":45,"tag":181,"props":478,"children":480},{"class":183,"line":479},16,[481],{"type":45,"tag":181,"props":482,"children":483},{"emptyLinePlaceholder":40},[484],{"type":59,"value":237},{"type":45,"tag":181,"props":486,"children":488},{"class":183,"line":487},17,[489],{"type":45,"tag":181,"props":490,"children":491},{"style":188},[492],{"type":59,"value":493},"# Detect Quantum (cron scheduler)\n",{"type":45,"tag":181,"props":495,"children":497},{"class":183,"line":496},18,[498,502,506,511,515,519,523],{"type":45,"tag":181,"props":499,"children":500},{"style":198},[501],{"type":59,"value":201},{"type":45,"tag":181,"props":503,"children":504},{"style":220},[505],{"type":59,"value":297},{"type":45,"tag":181,"props":507,"children":508},{"style":204},[509],{"type":59,"value":510},"quantum",{"type":45,"tag":181,"props":512,"children":513},{"style":220},[514],{"type":59,"value":307},{"type":45,"tag":181,"props":516,"children":517},{"style":204},[518],{"type":59,"value":217},{"type":45,"tag":181,"props":520,"children":521},{"style":220},[522],{"type":59,"value":223},{"type":45,"tag":181,"props":524,"children":525},{"style":204},[526],{"type":59,"value":228},{"type":45,"tag":181,"props":528,"children":530},{"class":183,"line":529},19,[531],{"type":45,"tag":181,"props":532,"children":533},{"emptyLinePlaceholder":40},[534],{"type":59,"value":237},{"type":45,"tag":181,"props":536,"children":538},{"class":183,"line":537},20,[539],{"type":45,"tag":181,"props":540,"children":541},{"style":188},[542],{"type":59,"value":543},"# Detect OpenTelemetry usage\n",{"type":45,"tag":181,"props":545,"children":547},{"class":183,"line":546},21,[548,552,556,561,565,569,573],{"type":45,"tag":181,"props":549,"children":550},{"style":198},[551],{"type":59,"value":201},{"type":45,"tag":181,"props":553,"children":554},{"style":220},[555],{"type":59,"value":297},{"type":45,"tag":181,"props":557,"children":558},{"style":204},[559],{"type":59,"value":560},"opentelemetry",{"type":45,"tag":181,"props":562,"children":563},{"style":220},[564],{"type":59,"value":307},{"type":45,"tag":181,"props":566,"children":567},{"style":204},[568],{"type":59,"value":217},{"type":45,"tag":181,"props":570,"children":571},{"style":220},[572],{"type":59,"value":223},{"type":45,"tag":181,"props":574,"children":575},{"style":204},[576],{"type":59,"value":228},{"type":45,"tag":181,"props":578,"children":580},{"class":183,"line":579},22,[581],{"type":45,"tag":181,"props":582,"children":583},{"emptyLinePlaceholder":40},[584],{"type":59,"value":237},{"type":45,"tag":181,"props":586,"children":588},{"class":183,"line":587},23,[589],{"type":45,"tag":181,"props":590,"children":591},{"style":188},[592],{"type":59,"value":593},"# Check for companion frontend\n",{"type":45,"tag":181,"props":595,"children":597},{"class":183,"line":596},24,[598,603,608,613,618,623,627],{"type":45,"tag":181,"props":599,"children":600},{"style":198},[601],{"type":59,"value":602},"ls",{"type":45,"tag":181,"props":604,"children":605},{"style":204},[606],{"type":59,"value":607}," assets\u002F",{"type":45,"tag":181,"props":609,"children":610},{"style":204},[611],{"type":59,"value":612}," frontend\u002F",{"type":45,"tag":181,"props":614,"children":615},{"style":204},[616],{"type":59,"value":617}," web\u002F",{"type":45,"tag":181,"props":619,"children":620},{"style":204},[621],{"type":59,"value":622}," client\u002F",{"type":45,"tag":181,"props":624,"children":625},{"style":220},[626],{"type":59,"value":223},{"type":45,"tag":181,"props":628,"children":629},{"style":204},[630],{"type":59,"value":228},{"type":45,"tag":50,"props":632,"children":633},{},[634],{"type":45,"tag":137,"props":635,"children":636},{},[637],{"type":59,"value":638},"What to note:",{"type":45,"tag":640,"props":641,"children":642},"table",{},[643,662],{"type":45,"tag":644,"props":645,"children":646},"thead",{},[647],{"type":45,"tag":648,"props":649,"children":650},"tr",{},[651,657],{"type":45,"tag":652,"props":653,"children":654},"th",{},[655],{"type":59,"value":656},"Signal",{"type":45,"tag":652,"props":658,"children":659},{},[660],{"type":59,"value":661},"Impact",{"type":45,"tag":663,"props":664,"children":665},"tbody",{},[666,693,728,761,774,787,808],{"type":45,"tag":648,"props":667,"children":668},{},[669,688],{"type":45,"tag":670,"props":671,"children":672},"td",{},[673,678,680,686],{"type":45,"tag":110,"props":674,"children":676},{"className":675},[],[677],{"type":59,"value":8},{"type":59,"value":679}," already in ",{"type":45,"tag":110,"props":681,"children":683},{"className":682},[],[684],{"type":59,"value":685},"mix.exs",{"type":59,"value":687},"?",{"type":45,"tag":670,"props":689,"children":690},{},[691],{"type":59,"value":692},"Skip install; go to Phase 2 (configure features)",{"type":45,"tag":648,"props":694,"children":695},{},[696,701],{"type":45,"tag":670,"props":697,"children":698},{},[699],{"type":59,"value":700},"Phoenix detected?",{"type":45,"tag":670,"props":702,"children":703},{},[704,706,712,714,720,722],{"type":59,"value":705},"Add ",{"type":45,"tag":110,"props":707,"children":709},{"className":708},[],[710],{"type":59,"value":711},"Sentry.PlugCapture",{"type":59,"value":713},", ",{"type":45,"tag":110,"props":715,"children":717},{"className":716},[],[718],{"type":59,"value":719},"Sentry.PlugContext",{"type":59,"value":721},", optionally ",{"type":45,"tag":110,"props":723,"children":725},{"className":724},[],[726],{"type":59,"value":727},"Sentry.LiveViewHook",{"type":45,"tag":648,"props":729,"children":730},{},[731,736],{"type":45,"tag":670,"props":732,"children":733},{},[734],{"type":59,"value":735},"LiveView detected?",{"type":45,"tag":670,"props":737,"children":738},{},[739,740,745,747,753,755],{"type":59,"value":705},{"type":45,"tag":110,"props":741,"children":743},{"className":742},[],[744],{"type":59,"value":727},{"type":59,"value":746}," to the ",{"type":45,"tag":110,"props":748,"children":750},{"className":749},[],[751],{"type":59,"value":752},"live_view",{"type":59,"value":754}," macro in ",{"type":45,"tag":110,"props":756,"children":758},{"className":757},[],[759],{"type":59,"value":760},"my_app_web.ex",{"type":45,"tag":648,"props":762,"children":763},{},[764,769],{"type":45,"tag":670,"props":765,"children":766},{},[767],{"type":59,"value":768},"Oban detected?",{"type":45,"tag":670,"props":770,"children":771},{},[772],{"type":59,"value":773},"Recommend Crons + error capture via Oban integration",{"type":45,"tag":648,"props":775,"children":776},{},[777,782],{"type":45,"tag":670,"props":778,"children":779},{},[780],{"type":59,"value":781},"Quantum detected?",{"type":45,"tag":670,"props":783,"children":784},{},[785],{"type":59,"value":786},"Recommend Crons via Quantum integration",{"type":45,"tag":648,"props":788,"children":789},{},[790,795],{"type":45,"tag":670,"props":791,"children":792},{},[793],{"type":59,"value":794},"OpenTelemetry already present?",{"type":45,"tag":670,"props":796,"children":797},{},[798,800,806],{"type":59,"value":799},"Tracing setup only needs ",{"type":45,"tag":110,"props":801,"children":803},{"className":802},[],[804],{"type":59,"value":805},"Sentry.OpenTelemetry.*",{"type":59,"value":807}," config",{"type":45,"tag":648,"props":809,"children":810},{},[811,816],{"type":45,"tag":670,"props":812,"children":813},{},[814],{"type":59,"value":815},"Frontend directory found?",{"type":45,"tag":670,"props":817,"children":818},{},[819],{"type":59,"value":820},"Trigger Phase 4 cross-link suggestion",{"type":45,"tag":155,"props":822,"children":823},{},[],{"type":45,"tag":83,"props":825,"children":827},{"id":826},"phase-2-recommend",[828],{"type":59,"value":829},"Phase 2: Recommend",{"type":45,"tag":50,"props":831,"children":832},{},[833],{"type":59,"value":834},"Based on what you found, present a concrete recommendation. Don't ask open-ended questions — lead with a proposal:",{"type":45,"tag":50,"props":836,"children":837},{},[838],{"type":45,"tag":137,"props":839,"children":840},{},[841],{"type":59,"value":842},"Recommended (core coverage):",{"type":45,"tag":90,"props":844,"children":845},{},[846,858,877],{"type":45,"tag":94,"props":847,"children":848},{},[849,851,856],{"type":59,"value":850},"✅ ",{"type":45,"tag":137,"props":852,"children":853},{},[854],{"type":59,"value":855},"Error Monitoring",{"type":59,"value":857}," — always; captures exceptions and crash reports",{"type":45,"tag":94,"props":859,"children":860},{},[861,862,867,869,875],{"type":59,"value":850},{"type":45,"tag":137,"props":863,"children":864},{},[865],{"type":59,"value":866},"Logging",{"type":59,"value":868}," — ",{"type":45,"tag":110,"props":870,"children":872},{"className":871},[],[873],{"type":59,"value":874},"Sentry.LoggerHandler",{"type":59,"value":876}," forwards crash reports and error logs to Sentry",{"type":45,"tag":94,"props":878,"children":879},{},[880,881,886],{"type":59,"value":850},{"type":45,"tag":137,"props":882,"children":883},{},[884],{"type":59,"value":885},"Tracing",{"type":59,"value":887}," — if Phoenix, Plug, or Ecto detected (via OpenTelemetry)",{"type":45,"tag":50,"props":889,"children":890},{},[891],{"type":45,"tag":137,"props":892,"children":893},{},[894],{"type":59,"value":895},"Optional (enhanced observability):",{"type":45,"tag":90,"props":897,"children":898},{},[899,911],{"type":45,"tag":94,"props":900,"children":901},{},[902,904,909],{"type":59,"value":903},"⚡ ",{"type":45,"tag":137,"props":905,"children":906},{},[907],{"type":59,"value":908},"Crons",{"type":59,"value":910}," — detect silent failures in scheduled jobs (Oban, Quantum, or manual GenServer)",{"type":45,"tag":94,"props":912,"children":913},{},[914,915,920],{"type":59,"value":903},{"type":45,"tag":137,"props":916,"children":917},{},[918],{"type":59,"value":919},"Sentry Logs",{"type":59,"value":921}," — forward structured logs to Sentry Logs Protocol (sentry v12.0.0+)",{"type":45,"tag":50,"props":923,"children":924},{},[925],{"type":45,"tag":137,"props":926,"children":927},{},[928],{"type":59,"value":929},"Recommendation logic:",{"type":45,"tag":640,"props":931,"children":932},{},[933,949],{"type":45,"tag":644,"props":934,"children":935},{},[936],{"type":45,"tag":648,"props":937,"children":938},{},[939,944],{"type":45,"tag":652,"props":940,"children":941},{},[942],{"type":59,"value":943},"Feature",{"type":45,"tag":652,"props":945,"children":946},{},[947],{"type":59,"value":948},"Recommend when...",{"type":45,"tag":663,"props":950,"children":951},{},[952,969,1000,1012,1040],{"type":45,"tag":648,"props":953,"children":954},{},[955,959],{"type":45,"tag":670,"props":956,"children":957},{},[958],{"type":59,"value":855},{"type":45,"tag":670,"props":960,"children":961},{},[962,967],{"type":45,"tag":137,"props":963,"children":964},{},[965],{"type":59,"value":966},"Always",{"type":59,"value":968}," — non-negotiable baseline",{"type":45,"tag":648,"props":970,"children":971},{},[972,976],{"type":45,"tag":670,"props":973,"children":974},{},[975],{"type":59,"value":866},{"type":45,"tag":670,"props":977,"children":978},{},[979,983,984,990,992,998],{"type":45,"tag":137,"props":980,"children":981},{},[982],{"type":59,"value":966},{"type":59,"value":868},{"type":45,"tag":110,"props":985,"children":987},{"className":986},[],[988],{"type":59,"value":989},"LoggerHandler",{"type":59,"value":991}," captures crashes that aren't explicit ",{"type":45,"tag":110,"props":993,"children":995},{"className":994},[],[996],{"type":59,"value":997},"capture_exception",{"type":59,"value":999}," calls",{"type":45,"tag":648,"props":1001,"children":1002},{},[1003,1007],{"type":45,"tag":670,"props":1004,"children":1005},{},[1006],{"type":59,"value":885},{"type":45,"tag":670,"props":1008,"children":1009},{},[1010],{"type":59,"value":1011},"Phoenix, Plug, Ecto, or OpenTelemetry imports detected",{"type":45,"tag":648,"props":1013,"children":1014},{},[1015,1019],{"type":45,"tag":670,"props":1016,"children":1017},{},[1018],{"type":59,"value":908},{"type":45,"tag":670,"props":1020,"children":1021},{},[1022,1024,1030,1032,1038],{"type":59,"value":1023},"Oban, Quantum, or periodic ",{"type":45,"tag":110,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":59,"value":1029},"GenServer",{"type":59,"value":1031},"\u002F",{"type":45,"tag":110,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":59,"value":1037},"Task",{"type":59,"value":1039}," patterns detected",{"type":45,"tag":648,"props":1041,"children":1042},{},[1043,1047],{"type":45,"tag":670,"props":1044,"children":1045},{},[1046],{"type":59,"value":919},{"type":45,"tag":670,"props":1048,"children":1049},{},[1050],{"type":59,"value":1051},"sentry v12.0.0+ in use and structured log search is needed",{"type":45,"tag":50,"props":1053,"children":1054},{},[1055,1057],{"type":59,"value":1056},"Propose: ",{"type":45,"tag":1058,"props":1059,"children":1060},"em",{},[1061,1063,1068],{"type":59,"value":1062},"\"I recommend setting up Error Monitoring + Logging ",{"type":45,"tag":181,"props":1064,"children":1065},{},[1066],{"type":59,"value":1067},"+ Tracing if Phoenix\u002FEcto detected",{"type":59,"value":1069},". Want me to also add Crons or Sentry Logs?\"",{"type":45,"tag":155,"props":1071,"children":1072},{},[],{"type":45,"tag":83,"props":1074,"children":1076},{"id":1075},"phase-3-guide",[1077],{"type":59,"value":1078},"Phase 3: Guide",{"type":45,"tag":1080,"props":1081,"children":1083},"h3",{"id":1082},"option-1-igniter-installer-recommended",[1084],{"type":59,"value":1085},"Option 1: Igniter Installer (Recommended)",{"type":45,"tag":46,"props":1087,"children":1088},{},[1089,1099,1124,1159],{"type":45,"tag":50,"props":1090,"children":1091},{},[1092,1097],{"type":45,"tag":137,"props":1093,"children":1094},{},[1095],{"type":59,"value":1096},"You need to run this yourself",{"type":59,"value":1098}," — the Igniter installer requires interactive terminal input that the agent can't handle. Copy-paste into your terminal:",{"type":45,"tag":170,"props":1100,"children":1102},{"className":172,"code":1101,"language":174,"meta":175,"style":175},"mix igniter.install sentry\n",[1103],{"type":45,"tag":110,"props":1104,"children":1105},{"__ignoreMap":175},[1106],{"type":45,"tag":181,"props":1107,"children":1108},{"class":183,"line":184},[1109,1114,1119],{"type":45,"tag":181,"props":1110,"children":1111},{"style":198},[1112],{"type":59,"value":1113},"mix",{"type":45,"tag":181,"props":1115,"children":1116},{"style":204},[1117],{"type":59,"value":1118}," igniter.install",{"type":45,"tag":181,"props":1120,"children":1121},{"style":204},[1122],{"type":59,"value":1123}," sentry\n",{"type":45,"tag":50,"props":1125,"children":1126},{},[1127,1129,1135,1136,1142,1143,1149,1151,1157],{"type":59,"value":1128},"Available since sentry v11.0.0. It auto-configures ",{"type":45,"tag":110,"props":1130,"children":1132},{"className":1131},[],[1133],{"type":59,"value":1134},"config\u002Fconfig.exs",{"type":59,"value":713},{"type":45,"tag":110,"props":1137,"children":1139},{"className":1138},[],[1140],{"type":59,"value":1141},"config\u002Fprod.exs",{"type":59,"value":713},{"type":45,"tag":110,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":59,"value":1148},"config\u002Fruntime.exs",{"type":59,"value":1150},", and ",{"type":45,"tag":110,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":59,"value":1156},"lib\u002Fmy_app\u002Fapplication.ex",{"type":59,"value":1158},".",{"type":45,"tag":50,"props":1160,"children":1161},{},[1162],{"type":45,"tag":137,"props":1163,"children":1164},{},[1165,1167,1173],{"type":59,"value":1166},"Once it finishes, come back and skip to ",{"type":45,"tag":54,"props":1168,"children":1170},{"href":1169},"#verification",[1171],{"type":59,"value":1172},"Verification",{"type":59,"value":1158},{"type":45,"tag":50,"props":1175,"children":1176},{},[1177],{"type":59,"value":1178},"If the user skips the Igniter installer, proceed with Option 2 (Manual Setup) below.",{"type":45,"tag":155,"props":1180,"children":1181},{},[],{"type":45,"tag":1080,"props":1183,"children":1185},{"id":1184},"option-2-manual-setup",[1186],{"type":59,"value":1187},"Option 2: Manual Setup",{"type":45,"tag":1189,"props":1190,"children":1192},"h4",{"id":1191},"install",[1193],{"type":59,"value":1194},"Install",{"type":45,"tag":50,"props":1196,"children":1197},{},[1198,1200,1205],{"type":59,"value":1199},"Add to ",{"type":45,"tag":110,"props":1201,"children":1203},{"className":1202},[],[1204],{"type":59,"value":685},{"type":59,"value":1206}," dependencies:",{"type":45,"tag":170,"props":1208,"children":1211},{"className":1209,"code":1210,"language":22,"meta":175,"style":175},"language-elixir shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# mix.exs\ndefp deps do\n  [\n    {:sentry, \"~> 13.0\"},\n    {:finch, \"~> 0.21\"}\n    # Add jason if using Elixir \u003C 1.18:\n    # {:jason, \"~> 1.4\"},\n  ]\nend\n",[1212],{"type":45,"tag":110,"props":1213,"children":1214},{"__ignoreMap":175},[1215,1223,1231,1239,1247,1255,1263,1271,1279],{"type":45,"tag":181,"props":1216,"children":1217},{"class":183,"line":184},[1218],{"type":45,"tag":181,"props":1219,"children":1220},{},[1221],{"type":59,"value":1222},"# mix.exs\n",{"type":45,"tag":181,"props":1224,"children":1225},{"class":183,"line":194},[1226],{"type":45,"tag":181,"props":1227,"children":1228},{},[1229],{"type":59,"value":1230},"defp deps do\n",{"type":45,"tag":181,"props":1232,"children":1233},{"class":183,"line":231},[1234],{"type":45,"tag":181,"props":1235,"children":1236},{},[1237],{"type":59,"value":1238},"  [\n",{"type":45,"tag":181,"props":1240,"children":1241},{"class":183,"line":240},[1242],{"type":45,"tag":181,"props":1243,"children":1244},{},[1245],{"type":59,"value":1246},"    {:sentry, \"~> 13.0\"},\n",{"type":45,"tag":181,"props":1248,"children":1249},{"class":183,"line":249},[1250],{"type":45,"tag":181,"props":1251,"children":1252},{},[1253],{"type":59,"value":1254},"    {:finch, \"~> 0.21\"}\n",{"type":45,"tag":181,"props":1256,"children":1257},{"class":183,"line":287},[1258],{"type":45,"tag":181,"props":1259,"children":1260},{},[1261],{"type":59,"value":1262},"    # Add jason if using Elixir \u003C 1.18:\n",{"type":45,"tag":181,"props":1264,"children":1265},{"class":183,"line":322},[1266],{"type":45,"tag":181,"props":1267,"children":1268},{},[1269],{"type":59,"value":1270},"    # {:jason, \"~> 1.4\"},\n",{"type":45,"tag":181,"props":1272,"children":1273},{"class":183,"line":330},[1274],{"type":45,"tag":181,"props":1275,"children":1276},{},[1277],{"type":59,"value":1278},"  ]\n",{"type":45,"tag":181,"props":1280,"children":1281},{"class":183,"line":339},[1282],{"type":45,"tag":181,"props":1283,"children":1284},{},[1285],{"type":59,"value":1286},"end\n",{"type":45,"tag":170,"props":1288,"children":1290},{"className":172,"code":1289,"language":174,"meta":175,"style":175},"mix deps.get\n",[1291],{"type":45,"tag":110,"props":1292,"children":1293},{"__ignoreMap":175},[1294],{"type":45,"tag":181,"props":1295,"children":1296},{"class":183,"line":184},[1297,1301],{"type":45,"tag":181,"props":1298,"children":1299},{"style":198},[1300],{"type":59,"value":1113},{"type":45,"tag":181,"props":1302,"children":1303},{"style":204},[1304],{"type":59,"value":1305}," deps.get\n",{"type":45,"tag":1189,"props":1307,"children":1309},{"id":1308},"configure",[1310],{"type":59,"value":1311},"Configure",{"type":45,"tag":170,"props":1313,"children":1315},{"className":1209,"code":1314,"language":22,"meta":175,"style":175},"# config\u002Fconfig.exs\nconfig :sentry,\n  dsn: System.get_env(\"SENTRY_DSN\"),\n  environment_name: config_env(),\n  enable_source_code_context: true,\n  root_source_code_paths: [File.cwd!()],\n  in_app_otp_apps: [:my_app]\n",[1316],{"type":45,"tag":110,"props":1317,"children":1318},{"__ignoreMap":175},[1319,1327,1335,1343,1351,1359,1367],{"type":45,"tag":181,"props":1320,"children":1321},{"class":183,"line":184},[1322],{"type":45,"tag":181,"props":1323,"children":1324},{},[1325],{"type":59,"value":1326},"# config\u002Fconfig.exs\n",{"type":45,"tag":181,"props":1328,"children":1329},{"class":183,"line":194},[1330],{"type":45,"tag":181,"props":1331,"children":1332},{},[1333],{"type":59,"value":1334},"config :sentry,\n",{"type":45,"tag":181,"props":1336,"children":1337},{"class":183,"line":231},[1338],{"type":45,"tag":181,"props":1339,"children":1340},{},[1341],{"type":59,"value":1342},"  dsn: System.get_env(\"SENTRY_DSN\"),\n",{"type":45,"tag":181,"props":1344,"children":1345},{"class":183,"line":240},[1346],{"type":45,"tag":181,"props":1347,"children":1348},{},[1349],{"type":59,"value":1350},"  environment_name: config_env(),\n",{"type":45,"tag":181,"props":1352,"children":1353},{"class":183,"line":249},[1354],{"type":45,"tag":181,"props":1355,"children":1356},{},[1357],{"type":59,"value":1358},"  enable_source_code_context: true,\n",{"type":45,"tag":181,"props":1360,"children":1361},{"class":183,"line":287},[1362],{"type":45,"tag":181,"props":1363,"children":1364},{},[1365],{"type":59,"value":1366},"  root_source_code_paths: [File.cwd!()],\n",{"type":45,"tag":181,"props":1368,"children":1369},{"class":183,"line":322},[1370],{"type":45,"tag":181,"props":1371,"children":1372},{},[1373],{"type":59,"value":1374},"  in_app_otp_apps: [:my_app]\n",{"type":45,"tag":50,"props":1376,"children":1377},{},[1378],{"type":59,"value":1379},"For runtime configuration (recommended for DSN and release):",{"type":45,"tag":170,"props":1381,"children":1383},{"className":1209,"code":1382,"language":22,"meta":175,"style":175},"# config\u002Fruntime.exs\nimport Config\n\nconfig :sentry,\n  dsn: System.fetch_env!(\"SENTRY_DSN\"),\n  release: System.get_env(\"SENTRY_RELEASE\", \"my-app@#{Application.spec(:my_app, :vsn)}\")\n",[1384],{"type":45,"tag":110,"props":1385,"children":1386},{"__ignoreMap":175},[1387,1395,1403,1410,1417,1425],{"type":45,"tag":181,"props":1388,"children":1389},{"class":183,"line":184},[1390],{"type":45,"tag":181,"props":1391,"children":1392},{},[1393],{"type":59,"value":1394},"# config\u002Fruntime.exs\n",{"type":45,"tag":181,"props":1396,"children":1397},{"class":183,"line":194},[1398],{"type":45,"tag":181,"props":1399,"children":1400},{},[1401],{"type":59,"value":1402},"import Config\n",{"type":45,"tag":181,"props":1404,"children":1405},{"class":183,"line":231},[1406],{"type":45,"tag":181,"props":1407,"children":1408},{"emptyLinePlaceholder":40},[1409],{"type":59,"value":237},{"type":45,"tag":181,"props":1411,"children":1412},{"class":183,"line":240},[1413],{"type":45,"tag":181,"props":1414,"children":1415},{},[1416],{"type":59,"value":1334},{"type":45,"tag":181,"props":1418,"children":1419},{"class":183,"line":249},[1420],{"type":45,"tag":181,"props":1421,"children":1422},{},[1423],{"type":59,"value":1424},"  dsn: System.fetch_env!(\"SENTRY_DSN\"),\n",{"type":45,"tag":181,"props":1426,"children":1427},{"class":183,"line":287},[1428],{"type":45,"tag":181,"props":1429,"children":1430},{},[1431],{"type":59,"value":1432},"  release: System.get_env(\"SENTRY_RELEASE\", \"my-app@#{Application.spec(:my_app, :vsn)}\")\n",{"type":45,"tag":1189,"props":1434,"children":1436},{"id":1435},"quick-start-recommended-init-config",[1437],{"type":59,"value":1438},"Quick Start — Recommended Init Config",{"type":45,"tag":50,"props":1440,"children":1441},{},[1442],{"type":59,"value":1443},"This config enables the most features with sensible defaults:",{"type":45,"tag":170,"props":1445,"children":1447},{"className":1209,"code":1446,"language":22,"meta":175,"style":175},"# config\u002Fconfig.exs\nconfig :sentry,\n  dsn: System.get_env(\"SENTRY_DSN\"),\n  environment_name: config_env(),\n  enable_source_code_context: true,\n  root_source_code_paths: [File.cwd!()],\n  in_app_otp_apps: [:my_app],\n  # Logger handler config — captures crash reports\n  logger: [\n    {:handler, :sentry_handler, Sentry.LoggerHandler, %{\n      config: %{\n        metadata: [:request_id],\n        capture_log_messages: true,\n        level: :error\n      }\n    }}\n  ]\n",[1448],{"type":45,"tag":110,"props":1449,"children":1450},{"__ignoreMap":175},[1451,1458,1465,1472,1479,1486,1493,1501,1509,1517,1525,1533,1541,1549,1557,1565,1573],{"type":45,"tag":181,"props":1452,"children":1453},{"class":183,"line":184},[1454],{"type":45,"tag":181,"props":1455,"children":1456},{},[1457],{"type":59,"value":1326},{"type":45,"tag":181,"props":1459,"children":1460},{"class":183,"line":194},[1461],{"type":45,"tag":181,"props":1462,"children":1463},{},[1464],{"type":59,"value":1334},{"type":45,"tag":181,"props":1466,"children":1467},{"class":183,"line":231},[1468],{"type":45,"tag":181,"props":1469,"children":1470},{},[1471],{"type":59,"value":1342},{"type":45,"tag":181,"props":1473,"children":1474},{"class":183,"line":240},[1475],{"type":45,"tag":181,"props":1476,"children":1477},{},[1478],{"type":59,"value":1350},{"type":45,"tag":181,"props":1480,"children":1481},{"class":183,"line":249},[1482],{"type":45,"tag":181,"props":1483,"children":1484},{},[1485],{"type":59,"value":1358},{"type":45,"tag":181,"props":1487,"children":1488},{"class":183,"line":287},[1489],{"type":45,"tag":181,"props":1490,"children":1491},{},[1492],{"type":59,"value":1366},{"type":45,"tag":181,"props":1494,"children":1495},{"class":183,"line":322},[1496],{"type":45,"tag":181,"props":1497,"children":1498},{},[1499],{"type":59,"value":1500},"  in_app_otp_apps: [:my_app],\n",{"type":45,"tag":181,"props":1502,"children":1503},{"class":183,"line":330},[1504],{"type":45,"tag":181,"props":1505,"children":1506},{},[1507],{"type":59,"value":1508},"  # Logger handler config — captures crash reports\n",{"type":45,"tag":181,"props":1510,"children":1511},{"class":183,"line":339},[1512],{"type":45,"tag":181,"props":1513,"children":1514},{},[1515],{"type":59,"value":1516},"  logger: [\n",{"type":45,"tag":181,"props":1518,"children":1519},{"class":183,"line":379},[1520],{"type":45,"tag":181,"props":1521,"children":1522},{},[1523],{"type":59,"value":1524},"    {:handler, :sentry_handler, Sentry.LoggerHandler, %{\n",{"type":45,"tag":181,"props":1526,"children":1527},{"class":183,"line":387},[1528],{"type":45,"tag":181,"props":1529,"children":1530},{},[1531],{"type":59,"value":1532},"      config: %{\n",{"type":45,"tag":181,"props":1534,"children":1535},{"class":183,"line":396},[1536],{"type":45,"tag":181,"props":1537,"children":1538},{},[1539],{"type":59,"value":1540},"        metadata: [:request_id],\n",{"type":45,"tag":181,"props":1542,"children":1543},{"class":183,"line":429},[1544],{"type":45,"tag":181,"props":1545,"children":1546},{},[1547],{"type":59,"value":1548},"        capture_log_messages: true,\n",{"type":45,"tag":181,"props":1550,"children":1551},{"class":183,"line":437},[1552],{"type":45,"tag":181,"props":1553,"children":1554},{},[1555],{"type":59,"value":1556},"        level: :error\n",{"type":45,"tag":181,"props":1558,"children":1559},{"class":183,"line":446},[1560],{"type":45,"tag":181,"props":1561,"children":1562},{},[1563],{"type":59,"value":1564},"      }\n",{"type":45,"tag":181,"props":1566,"children":1567},{"class":183,"line":479},[1568],{"type":45,"tag":181,"props":1569,"children":1570},{},[1571],{"type":59,"value":1572},"    }}\n",{"type":45,"tag":181,"props":1574,"children":1575},{"class":183,"line":487},[1576],{"type":45,"tag":181,"props":1577,"children":1578},{},[1579],{"type":59,"value":1278},{"type":45,"tag":1189,"props":1581,"children":1583},{"id":1582},"activate-logger-handler",[1584],{"type":59,"value":1585},"Activate Logger Handler",{"type":45,"tag":50,"props":1587,"children":1588},{},[1589,1590,1596,1598,1604],{"type":59,"value":705},{"type":45,"tag":110,"props":1591,"children":1593},{"className":1592},[],[1594],{"type":59,"value":1595},"Logger.add_handlers\u002F1",{"type":59,"value":1597}," in ",{"type":45,"tag":110,"props":1599,"children":1601},{"className":1600},[],[1602],{"type":59,"value":1603},"Application.start\u002F2",{"type":59,"value":1605},":",{"type":45,"tag":170,"props":1607,"children":1609},{"className":1209,"code":1608,"language":22,"meta":175,"style":175},"# lib\u002Fmy_app\u002Fapplication.ex\ndef start(_type, _args) do\n  Logger.add_handlers(:my_app)   # activates the :sentry_handler configured above\n\n  children = [\n    MyAppWeb.Endpoint\n    # ... other children\n  ]\n\n  Supervisor.start_link(children, strategy: :one_for_one)\nend\n",[1610],{"type":45,"tag":110,"props":1611,"children":1612},{"__ignoreMap":175},[1613,1621,1629,1637,1644,1652,1660,1668,1675,1682,1690],{"type":45,"tag":181,"props":1614,"children":1615},{"class":183,"line":184},[1616],{"type":45,"tag":181,"props":1617,"children":1618},{},[1619],{"type":59,"value":1620},"# lib\u002Fmy_app\u002Fapplication.ex\n",{"type":45,"tag":181,"props":1622,"children":1623},{"class":183,"line":194},[1624],{"type":45,"tag":181,"props":1625,"children":1626},{},[1627],{"type":59,"value":1628},"def start(_type, _args) do\n",{"type":45,"tag":181,"props":1630,"children":1631},{"class":183,"line":231},[1632],{"type":45,"tag":181,"props":1633,"children":1634},{},[1635],{"type":59,"value":1636},"  Logger.add_handlers(:my_app)   # activates the :sentry_handler configured above\n",{"type":45,"tag":181,"props":1638,"children":1639},{"class":183,"line":240},[1640],{"type":45,"tag":181,"props":1641,"children":1642},{"emptyLinePlaceholder":40},[1643],{"type":59,"value":237},{"type":45,"tag":181,"props":1645,"children":1646},{"class":183,"line":249},[1647],{"type":45,"tag":181,"props":1648,"children":1649},{},[1650],{"type":59,"value":1651},"  children = [\n",{"type":45,"tag":181,"props":1653,"children":1654},{"class":183,"line":287},[1655],{"type":45,"tag":181,"props":1656,"children":1657},{},[1658],{"type":59,"value":1659},"    MyAppWeb.Endpoint\n",{"type":45,"tag":181,"props":1661,"children":1662},{"class":183,"line":322},[1663],{"type":45,"tag":181,"props":1664,"children":1665},{},[1666],{"type":59,"value":1667},"    # ... other children\n",{"type":45,"tag":181,"props":1669,"children":1670},{"class":183,"line":330},[1671],{"type":45,"tag":181,"props":1672,"children":1673},{},[1674],{"type":59,"value":1278},{"type":45,"tag":181,"props":1676,"children":1677},{"class":183,"line":339},[1678],{"type":45,"tag":181,"props":1679,"children":1680},{"emptyLinePlaceholder":40},[1681],{"type":59,"value":237},{"type":45,"tag":181,"props":1683,"children":1684},{"class":183,"line":379},[1685],{"type":45,"tag":181,"props":1686,"children":1687},{},[1688],{"type":59,"value":1689},"  Supervisor.start_link(children, strategy: :one_for_one)\n",{"type":45,"tag":181,"props":1691,"children":1692},{"class":183,"line":387},[1693],{"type":45,"tag":181,"props":1694,"children":1695},{},[1696],{"type":59,"value":1286},{"type":45,"tag":1189,"props":1698,"children":1700},{"id":1699},"phoenix-integration",[1701],{"type":59,"value":1702},"Phoenix Integration",{"type":45,"tag":50,"props":1704,"children":1705},{},[1706],{"type":45,"tag":137,"props":1707,"children":1708},{},[1709],{"type":45,"tag":110,"props":1710,"children":1712},{"className":1711},[],[1713],{"type":59,"value":1714},"lib\u002Fmy_app_web\u002Fendpoint.ex",{"type":45,"tag":170,"props":1716,"children":1718},{"className":1209,"code":1717,"language":22,"meta":175,"style":175},"defmodule MyAppWeb.Endpoint do\n  use Sentry.PlugCapture          # Add ABOVE use Phoenix.Endpoint (Cowboy adapter only)\n  use Phoenix.Endpoint, otp_app: :my_app\n\n  # ...\n\n  plug Plug.Parsers,\n    parsers: [:urlencoded, :multipart, :json],\n    pass: [\"*\u002F*\"],\n    json_decoder: Phoenix.json_library()\n\n  plug Sentry.PlugContext          # Add BELOW Plug.Parsers\n  # ...\nend\n",[1719],{"type":45,"tag":110,"props":1720,"children":1721},{"__ignoreMap":175},[1722,1730,1738,1746,1753,1761,1768,1776,1784,1792,1800,1807,1815,1822],{"type":45,"tag":181,"props":1723,"children":1724},{"class":183,"line":184},[1725],{"type":45,"tag":181,"props":1726,"children":1727},{},[1728],{"type":59,"value":1729},"defmodule MyAppWeb.Endpoint do\n",{"type":45,"tag":181,"props":1731,"children":1732},{"class":183,"line":194},[1733],{"type":45,"tag":181,"props":1734,"children":1735},{},[1736],{"type":59,"value":1737},"  use Sentry.PlugCapture          # Add ABOVE use Phoenix.Endpoint (Cowboy adapter only)\n",{"type":45,"tag":181,"props":1739,"children":1740},{"class":183,"line":231},[1741],{"type":45,"tag":181,"props":1742,"children":1743},{},[1744],{"type":59,"value":1745},"  use Phoenix.Endpoint, otp_app: :my_app\n",{"type":45,"tag":181,"props":1747,"children":1748},{"class":183,"line":240},[1749],{"type":45,"tag":181,"props":1750,"children":1751},{"emptyLinePlaceholder":40},[1752],{"type":59,"value":237},{"type":45,"tag":181,"props":1754,"children":1755},{"class":183,"line":249},[1756],{"type":45,"tag":181,"props":1757,"children":1758},{},[1759],{"type":59,"value":1760},"  # ...\n",{"type":45,"tag":181,"props":1762,"children":1763},{"class":183,"line":287},[1764],{"type":45,"tag":181,"props":1765,"children":1766},{"emptyLinePlaceholder":40},[1767],{"type":59,"value":237},{"type":45,"tag":181,"props":1769,"children":1770},{"class":183,"line":322},[1771],{"type":45,"tag":181,"props":1772,"children":1773},{},[1774],{"type":59,"value":1775},"  plug Plug.Parsers,\n",{"type":45,"tag":181,"props":1777,"children":1778},{"class":183,"line":330},[1779],{"type":45,"tag":181,"props":1780,"children":1781},{},[1782],{"type":59,"value":1783},"    parsers: [:urlencoded, :multipart, :json],\n",{"type":45,"tag":181,"props":1785,"children":1786},{"class":183,"line":339},[1787],{"type":45,"tag":181,"props":1788,"children":1789},{},[1790],{"type":59,"value":1791},"    pass: [\"*\u002F*\"],\n",{"type":45,"tag":181,"props":1793,"children":1794},{"class":183,"line":379},[1795],{"type":45,"tag":181,"props":1796,"children":1797},{},[1798],{"type":59,"value":1799},"    json_decoder: Phoenix.json_library()\n",{"type":45,"tag":181,"props":1801,"children":1802},{"class":183,"line":387},[1803],{"type":45,"tag":181,"props":1804,"children":1805},{"emptyLinePlaceholder":40},[1806],{"type":59,"value":237},{"type":45,"tag":181,"props":1808,"children":1809},{"class":183,"line":396},[1810],{"type":45,"tag":181,"props":1811,"children":1812},{},[1813],{"type":59,"value":1814},"  plug Sentry.PlugContext          # Add BELOW Plug.Parsers\n",{"type":45,"tag":181,"props":1816,"children":1817},{"class":183,"line":429},[1818],{"type":45,"tag":181,"props":1819,"children":1820},{},[1821],{"type":59,"value":1760},{"type":45,"tag":181,"props":1823,"children":1824},{"class":183,"line":437},[1825],{"type":45,"tag":181,"props":1826,"children":1827},{},[1828],{"type":59,"value":1286},{"type":45,"tag":46,"props":1830,"children":1831},{},[1832],{"type":45,"tag":50,"props":1833,"children":1834},{},[1835,1839,1841,1846,1848,1853,1855,1860,1862,1868,1870,1875],{"type":45,"tag":137,"props":1836,"children":1837},{},[1838],{"type":59,"value":141},{"type":59,"value":1840}," ",{"type":45,"tag":110,"props":1842,"children":1844},{"className":1843},[],[1845],{"type":59,"value":711},{"type":59,"value":1847}," is only needed for the ",{"type":45,"tag":137,"props":1849,"children":1850},{},[1851],{"type":59,"value":1852},"Cowboy",{"type":59,"value":1854}," adapter. Phoenix 1.7+ defaults to ",{"type":45,"tag":137,"props":1856,"children":1857},{},[1858],{"type":59,"value":1859},"Bandit",{"type":59,"value":1861},", where ",{"type":45,"tag":110,"props":1863,"children":1865},{"className":1864},[],[1866],{"type":59,"value":1867},"PlugCapture",{"type":59,"value":1869}," is harmless but unnecessary. ",{"type":45,"tag":110,"props":1871,"children":1873},{"className":1872},[],[1874],{"type":59,"value":719},{"type":59,"value":1876}," is always recommended — it enriches events with HTTP request data.",{"type":45,"tag":50,"props":1878,"children":1879},{},[1880],{"type":45,"tag":137,"props":1881,"children":1882},{},[1883,1885],{"type":59,"value":1884},"LiveView errors — ",{"type":45,"tag":110,"props":1886,"children":1888},{"className":1887},[],[1889],{"type":59,"value":1890},"lib\u002Fmy_app_web.ex",{"type":45,"tag":170,"props":1892,"children":1894},{"className":1209,"code":1893,"language":22,"meta":175,"style":175},"def live_view do\n  quote do\n    use Phoenix.LiveView\n\n    on_mount Sentry.LiveViewHook   # captures errors in mount\u002Fhandle_event\u002Fhandle_info\n  end\nend\n",[1895],{"type":45,"tag":110,"props":1896,"children":1897},{"__ignoreMap":175},[1898,1906,1914,1922,1929,1937,1945],{"type":45,"tag":181,"props":1899,"children":1900},{"class":183,"line":184},[1901],{"type":45,"tag":181,"props":1902,"children":1903},{},[1904],{"type":59,"value":1905},"def live_view do\n",{"type":45,"tag":181,"props":1907,"children":1908},{"class":183,"line":194},[1909],{"type":45,"tag":181,"props":1910,"children":1911},{},[1912],{"type":59,"value":1913},"  quote do\n",{"type":45,"tag":181,"props":1915,"children":1916},{"class":183,"line":231},[1917],{"type":45,"tag":181,"props":1918,"children":1919},{},[1920],{"type":59,"value":1921},"    use Phoenix.LiveView\n",{"type":45,"tag":181,"props":1923,"children":1924},{"class":183,"line":240},[1925],{"type":45,"tag":181,"props":1926,"children":1927},{"emptyLinePlaceholder":40},[1928],{"type":59,"value":237},{"type":45,"tag":181,"props":1930,"children":1931},{"class":183,"line":249},[1932],{"type":45,"tag":181,"props":1933,"children":1934},{},[1935],{"type":59,"value":1936},"    on_mount Sentry.LiveViewHook   # captures errors in mount\u002Fhandle_event\u002Fhandle_info\n",{"type":45,"tag":181,"props":1938,"children":1939},{"class":183,"line":287},[1940],{"type":45,"tag":181,"props":1941,"children":1942},{},[1943],{"type":59,"value":1944},"  end\n",{"type":45,"tag":181,"props":1946,"children":1947},{"class":183,"line":322},[1948],{"type":45,"tag":181,"props":1949,"children":1950},{},[1951],{"type":59,"value":1286},{"type":45,"tag":1189,"props":1953,"children":1955},{"id":1954},"plain-plug-application",[1956],{"type":59,"value":1957},"Plain Plug Application",{"type":45,"tag":170,"props":1959,"children":1961},{"className":1209,"code":1960,"language":22,"meta":175,"style":175},"defmodule MyApp.Router do\n  use Plug.Router\n  use Sentry.PlugCapture          # Cowboy only\n\n  plug Plug.Parsers, parsers: [:urlencoded, :multipart]\n  plug Sentry.PlugContext\n  # ...\nend\n",[1962],{"type":45,"tag":110,"props":1963,"children":1964},{"__ignoreMap":175},[1965,1973,1981,1989,1996,2004,2012,2019],{"type":45,"tag":181,"props":1966,"children":1967},{"class":183,"line":184},[1968],{"type":45,"tag":181,"props":1969,"children":1970},{},[1971],{"type":59,"value":1972},"defmodule MyApp.Router do\n",{"type":45,"tag":181,"props":1974,"children":1975},{"class":183,"line":194},[1976],{"type":45,"tag":181,"props":1977,"children":1978},{},[1979],{"type":59,"value":1980},"  use Plug.Router\n",{"type":45,"tag":181,"props":1982,"children":1983},{"class":183,"line":231},[1984],{"type":45,"tag":181,"props":1985,"children":1986},{},[1987],{"type":59,"value":1988},"  use Sentry.PlugCapture          # Cowboy only\n",{"type":45,"tag":181,"props":1990,"children":1991},{"class":183,"line":240},[1992],{"type":45,"tag":181,"props":1993,"children":1994},{"emptyLinePlaceholder":40},[1995],{"type":59,"value":237},{"type":45,"tag":181,"props":1997,"children":1998},{"class":183,"line":249},[1999],{"type":45,"tag":181,"props":2000,"children":2001},{},[2002],{"type":59,"value":2003},"  plug Plug.Parsers, parsers: [:urlencoded, :multipart]\n",{"type":45,"tag":181,"props":2005,"children":2006},{"class":183,"line":287},[2007],{"type":45,"tag":181,"props":2008,"children":2009},{},[2010],{"type":59,"value":2011},"  plug Sentry.PlugContext\n",{"type":45,"tag":181,"props":2013,"children":2014},{"class":183,"line":322},[2015],{"type":45,"tag":181,"props":2016,"children":2017},{},[2018],{"type":59,"value":1760},{"type":45,"tag":181,"props":2020,"children":2021},{"class":183,"line":330},[2022],{"type":45,"tag":181,"props":2023,"children":2024},{},[2025],{"type":59,"value":1286},{"type":45,"tag":1080,"props":2027,"children":2029},{"id":2028},"for-each-agreed-feature",[2030],{"type":59,"value":2031},"For Each Agreed Feature",{"type":45,"tag":50,"props":2033,"children":2034},{},[2035],{"type":59,"value":2036},"Walk through features one at a time. Load the reference file for each, follow its steps, and verify before moving to the next:",{"type":45,"tag":640,"props":2038,"children":2039},{},[2040,2060],{"type":45,"tag":644,"props":2041,"children":2042},{},[2043],{"type":45,"tag":648,"props":2044,"children":2045},{},[2046,2050,2055],{"type":45,"tag":652,"props":2047,"children":2048},{},[2049],{"type":59,"value":943},{"type":45,"tag":652,"props":2051,"children":2052},{},[2053],{"type":59,"value":2054},"Reference file",{"type":45,"tag":652,"props":2056,"children":2057},{},[2058],{"type":59,"value":2059},"Load when...",{"type":45,"tag":663,"props":2061,"children":2062},{},[2063,2084,2105,2131],{"type":45,"tag":648,"props":2064,"children":2065},{},[2066,2070,2079],{"type":45,"tag":670,"props":2067,"children":2068},{},[2069],{"type":59,"value":855},{"type":45,"tag":670,"props":2071,"children":2072},{},[2073],{"type":45,"tag":110,"props":2074,"children":2076},{"className":2075},[],[2077],{"type":59,"value":2078},"${SKILL_ROOT}\u002Freferences\u002Ferror-monitoring.md",{"type":45,"tag":670,"props":2080,"children":2081},{},[2082],{"type":59,"value":2083},"Always (baseline)",{"type":45,"tag":648,"props":2085,"children":2086},{},[2087,2091,2100],{"type":45,"tag":670,"props":2088,"children":2089},{},[2090],{"type":59,"value":885},{"type":45,"tag":670,"props":2092,"children":2093},{},[2094],{"type":45,"tag":110,"props":2095,"children":2097},{"className":2096},[],[2098],{"type":59,"value":2099},"${SKILL_ROOT}\u002Freferences\u002Ftracing.md",{"type":45,"tag":670,"props":2101,"children":2102},{},[2103],{"type":59,"value":2104},"Phoenix \u002F Ecto \u002F OpenTelemetry detected",{"type":45,"tag":648,"props":2106,"children":2107},{},[2108,2112,2121],{"type":45,"tag":670,"props":2109,"children":2110},{},[2111],{"type":59,"value":866},{"type":45,"tag":670,"props":2113,"children":2114},{},[2115],{"type":45,"tag":110,"props":2116,"children":2118},{"className":2117},[],[2119],{"type":59,"value":2120},"${SKILL_ROOT}\u002Freferences\u002Flogging.md",{"type":45,"tag":670,"props":2122,"children":2123},{},[2124,2129],{"type":45,"tag":110,"props":2125,"children":2127},{"className":2126},[],[2128],{"type":59,"value":989},{"type":59,"value":2130}," or Sentry Logs setup",{"type":45,"tag":648,"props":2132,"children":2133},{},[2134,2138,2147],{"type":45,"tag":670,"props":2135,"children":2136},{},[2137],{"type":59,"value":908},{"type":45,"tag":670,"props":2139,"children":2140},{},[2141],{"type":45,"tag":110,"props":2142,"children":2144},{"className":2143},[],[2145],{"type":59,"value":2146},"${SKILL_ROOT}\u002Freferences\u002Fcrons.md",{"type":45,"tag":670,"props":2148,"children":2149},{},[2150],{"type":59,"value":2151},"Oban, Quantum, or periodic jobs detected",{"type":45,"tag":50,"props":2153,"children":2154},{},[2155,2157,2163],{"type":59,"value":2156},"For each feature: ",{"type":45,"tag":110,"props":2158,"children":2160},{"className":2159},[],[2161],{"type":59,"value":2162},"Read ${SKILL_ROOT}\u002Freferences\u002F\u003Cfeature>.md",{"type":59,"value":2164},", follow steps exactly, verify it works.",{"type":45,"tag":155,"props":2166,"children":2167},{},[],{"type":45,"tag":83,"props":2169,"children":2171},{"id":2170},"configuration-reference",[2172],{"type":59,"value":2173},"Configuration Reference",{"type":45,"tag":1080,"props":2175,"children":2177},{"id":2176},"key-config-options",[2178],{"type":59,"value":2179},"Key Config Options",{"type":45,"tag":640,"props":2181,"children":2182},{},[2183,2209],{"type":45,"tag":644,"props":2184,"children":2185},{},[2186],{"type":45,"tag":648,"props":2187,"children":2188},{},[2189,2194,2199,2204],{"type":45,"tag":652,"props":2190,"children":2191},{},[2192],{"type":59,"value":2193},"Option",{"type":45,"tag":652,"props":2195,"children":2196},{},[2197],{"type":59,"value":2198},"Type",{"type":45,"tag":652,"props":2200,"children":2201},{},[2202],{"type":59,"value":2203},"Default",{"type":45,"tag":652,"props":2205,"children":2206},{},[2207],{"type":59,"value":2208},"Purpose",{"type":45,"tag":663,"props":2210,"children":2211},{},[2212,2253,2302,2347,2382,2417,2452,2486,2520,2554,2595,2630,2664,2698,2733,2767,2801,2834,2884],{"type":45,"tag":648,"props":2213,"children":2214},{},[2215,2224,2233,2242],{"type":45,"tag":670,"props":2216,"children":2217},{},[2218],{"type":45,"tag":110,"props":2219,"children":2221},{"className":2220},[],[2222],{"type":59,"value":2223},":dsn",{"type":45,"tag":670,"props":2225,"children":2226},{},[2227],{"type":45,"tag":110,"props":2228,"children":2230},{"className":2229},[],[2231],{"type":59,"value":2232},"string | nil",{"type":45,"tag":670,"props":2234,"children":2235},{},[2236],{"type":45,"tag":110,"props":2237,"children":2239},{"className":2238},[],[2240],{"type":59,"value":2241},"nil",{"type":45,"tag":670,"props":2243,"children":2244},{},[2245,2247],{"type":59,"value":2246},"SDK disabled if nil; env: ",{"type":45,"tag":110,"props":2248,"children":2250},{"className":2249},[],[2251],{"type":59,"value":2252},"SENTRY_DSN",{"type":45,"tag":648,"props":2254,"children":2255},{},[2256,2265,2274,2283],{"type":45,"tag":670,"props":2257,"children":2258},{},[2259],{"type":45,"tag":110,"props":2260,"children":2262},{"className":2261},[],[2263],{"type":59,"value":2264},":environment_name",{"type":45,"tag":670,"props":2266,"children":2267},{},[2268],{"type":45,"tag":110,"props":2269,"children":2271},{"className":2270},[],[2272],{"type":59,"value":2273},"atom | string",{"type":45,"tag":670,"props":2275,"children":2276},{},[2277],{"type":45,"tag":110,"props":2278,"children":2280},{"className":2279},[],[2281],{"type":59,"value":2282},"\"production\"",{"type":45,"tag":670,"props":2284,"children":2285},{},[2286,2288,2294,2296],{"type":59,"value":2287},"e.g., ",{"type":45,"tag":110,"props":2289,"children":2291},{"className":2290},[],[2292],{"type":59,"value":2293},":prod",{"type":59,"value":2295},"; env: ",{"type":45,"tag":110,"props":2297,"children":2299},{"className":2298},[],[2300],{"type":59,"value":2301},"SENTRY_ENVIRONMENT",{"type":45,"tag":648,"props":2303,"children":2304},{},[2305,2314,2322,2330],{"type":45,"tag":670,"props":2306,"children":2307},{},[2308],{"type":45,"tag":110,"props":2309,"children":2311},{"className":2310},[],[2312],{"type":59,"value":2313},":release",{"type":45,"tag":670,"props":2315,"children":2316},{},[2317],{"type":45,"tag":110,"props":2318,"children":2320},{"className":2319},[],[2321],{"type":59,"value":2232},{"type":45,"tag":670,"props":2323,"children":2324},{},[2325],{"type":45,"tag":110,"props":2326,"children":2328},{"className":2327},[],[2329],{"type":59,"value":2241},{"type":45,"tag":670,"props":2331,"children":2332},{},[2333,2334,2340,2341],{"type":59,"value":2287},{"type":45,"tag":110,"props":2335,"children":2337},{"className":2336},[],[2338],{"type":59,"value":2339},"\"my-app@1.0.0\"",{"type":59,"value":2295},{"type":45,"tag":110,"props":2342,"children":2344},{"className":2343},[],[2345],{"type":59,"value":2346},"SENTRY_RELEASE",{"type":45,"tag":648,"props":2348,"children":2349},{},[2350,2359,2368,2377],{"type":45,"tag":670,"props":2351,"children":2352},{},[2353],{"type":45,"tag":110,"props":2354,"children":2356},{"className":2355},[],[2357],{"type":59,"value":2358},":sample_rate",{"type":45,"tag":670,"props":2360,"children":2361},{},[2362],{"type":45,"tag":110,"props":2363,"children":2365},{"className":2364},[],[2366],{"type":59,"value":2367},"float",{"type":45,"tag":670,"props":2369,"children":2370},{},[2371],{"type":45,"tag":110,"props":2372,"children":2374},{"className":2373},[],[2375],{"type":59,"value":2376},"1.0",{"type":45,"tag":670,"props":2378,"children":2379},{},[2380],{"type":59,"value":2381},"Error event sample rate (0.0–1.0)",{"type":45,"tag":648,"props":2383,"children":2384},{},[2385,2394,2403,2412],{"type":45,"tag":670,"props":2386,"children":2387},{},[2388],{"type":45,"tag":110,"props":2389,"children":2391},{"className":2390},[],[2392],{"type":59,"value":2393},":enable_source_code_context",{"type":45,"tag":670,"props":2395,"children":2396},{},[2397],{"type":45,"tag":110,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":59,"value":2402},"boolean",{"type":45,"tag":670,"props":2404,"children":2405},{},[2406],{"type":45,"tag":110,"props":2407,"children":2409},{"className":2408},[],[2410],{"type":59,"value":2411},"false",{"type":45,"tag":670,"props":2413,"children":2414},{},[2415],{"type":59,"value":2416},"Include source lines around errors",{"type":45,"tag":648,"props":2418,"children":2419},{},[2420,2429,2438,2447],{"type":45,"tag":670,"props":2421,"children":2422},{},[2423],{"type":45,"tag":110,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":59,"value":2428},":root_source_code_paths",{"type":45,"tag":670,"props":2430,"children":2431},{},[2432],{"type":45,"tag":110,"props":2433,"children":2435},{"className":2434},[],[2436],{"type":59,"value":2437},"[path]",{"type":45,"tag":670,"props":2439,"children":2440},{},[2441],{"type":45,"tag":110,"props":2442,"children":2444},{"className":2443},[],[2445],{"type":59,"value":2446},"[]",{"type":45,"tag":670,"props":2448,"children":2449},{},[2450],{"type":59,"value":2451},"Required when source context is enabled",{"type":45,"tag":648,"props":2453,"children":2454},{},[2455,2464,2473,2481],{"type":45,"tag":670,"props":2456,"children":2457},{},[2458],{"type":45,"tag":110,"props":2459,"children":2461},{"className":2460},[],[2462],{"type":59,"value":2463},":in_app_otp_apps",{"type":45,"tag":670,"props":2465,"children":2466},{},[2467],{"type":45,"tag":110,"props":2468,"children":2470},{"className":2469},[],[2471],{"type":59,"value":2472},"[atom]",{"type":45,"tag":670,"props":2474,"children":2475},{},[2476],{"type":45,"tag":110,"props":2477,"children":2479},{"className":2478},[],[2480],{"type":59,"value":2446},{"type":45,"tag":670,"props":2482,"children":2483},{},[2484],{"type":59,"value":2485},"OTP apps whose modules are \"in-app\" in stacktraces",{"type":45,"tag":648,"props":2487,"children":2488},{},[2489,2498,2507,2515],{"type":45,"tag":670,"props":2490,"children":2491},{},[2492],{"type":45,"tag":110,"props":2493,"children":2495},{"className":2494},[],[2496],{"type":59,"value":2497},":before_send",{"type":45,"tag":670,"props":2499,"children":2500},{},[2501],{"type":45,"tag":110,"props":2502,"children":2504},{"className":2503},[],[2505],{"type":59,"value":2506},"(event -> event | nil) | {m, f}",{"type":45,"tag":670,"props":2508,"children":2509},{},[2510],{"type":45,"tag":110,"props":2511,"children":2513},{"className":2512},[],[2514],{"type":59,"value":2241},{"type":45,"tag":670,"props":2516,"children":2517},{},[2518],{"type":59,"value":2519},"Hook to mutate or drop error events",{"type":45,"tag":648,"props":2521,"children":2522},{},[2523,2532,2541,2549],{"type":45,"tag":670,"props":2524,"children":2525},{},[2526],{"type":45,"tag":110,"props":2527,"children":2529},{"className":2528},[],[2530],{"type":59,"value":2531},":after_send_event",{"type":45,"tag":670,"props":2533,"children":2534},{},[2535],{"type":45,"tag":110,"props":2536,"children":2538},{"className":2537},[],[2539],{"type":59,"value":2540},"(event, result -> any) | {m, f}",{"type":45,"tag":670,"props":2542,"children":2543},{},[2544],{"type":45,"tag":110,"props":2545,"children":2547},{"className":2546},[],[2548],{"type":59,"value":2241},{"type":45,"tag":670,"props":2550,"children":2551},{},[2552],{"type":59,"value":2553},"Hook called after event is sent",{"type":45,"tag":648,"props":2555,"children":2556},{},[2557,2566,2575,2584],{"type":45,"tag":670,"props":2558,"children":2559},{},[2560],{"type":45,"tag":110,"props":2561,"children":2563},{"className":2562},[],[2564],{"type":59,"value":2565},":filter",{"type":45,"tag":670,"props":2567,"children":2568},{},[2569],{"type":45,"tag":110,"props":2570,"children":2572},{"className":2571},[],[2573],{"type":59,"value":2574},"module",{"type":45,"tag":670,"props":2576,"children":2577},{},[2578],{"type":45,"tag":110,"props":2579,"children":2581},{"className":2580},[],[2582],{"type":59,"value":2583},"Sentry.DefaultEventFilter",{"type":45,"tag":670,"props":2585,"children":2586},{},[2587,2589],{"type":59,"value":2588},"Module implementing ",{"type":45,"tag":110,"props":2590,"children":2592},{"className":2591},[],[2593],{"type":59,"value":2594},"Sentry.EventFilter",{"type":45,"tag":648,"props":2596,"children":2597},{},[2598,2607,2616,2625],{"type":45,"tag":670,"props":2599,"children":2600},{},[2601],{"type":45,"tag":110,"props":2602,"children":2604},{"className":2603},[],[2605],{"type":59,"value":2606},":max_breadcrumbs",{"type":45,"tag":670,"props":2608,"children":2609},{},[2610],{"type":45,"tag":110,"props":2611,"children":2613},{"className":2612},[],[2614],{"type":59,"value":2615},"integer",{"type":45,"tag":670,"props":2617,"children":2618},{},[2619],{"type":45,"tag":110,"props":2620,"children":2622},{"className":2621},[],[2623],{"type":59,"value":2624},"100",{"type":45,"tag":670,"props":2626,"children":2627},{},[2628],{"type":59,"value":2629},"Max breadcrumbs per process",{"type":45,"tag":648,"props":2631,"children":2632},{},[2633,2642,2650,2659],{"type":45,"tag":670,"props":2634,"children":2635},{},[2636],{"type":45,"tag":110,"props":2637,"children":2639},{"className":2638},[],[2640],{"type":59,"value":2641},":max_stacktrace_arg_length",{"type":45,"tag":670,"props":2643,"children":2644},{},[2645],{"type":45,"tag":110,"props":2646,"children":2648},{"className":2647},[],[2649],{"type":59,"value":2615},{"type":45,"tag":670,"props":2651,"children":2652},{},[2653],{"type":45,"tag":110,"props":2654,"children":2656},{"className":2655},[],[2657],{"type":59,"value":2658},"10000",{"type":45,"tag":670,"props":2660,"children":2661},{},[2662],{"type":59,"value":2663},"Max length (in graphemes) of each inspected function argument in stacktrace vars (v13.2.0+)",{"type":45,"tag":648,"props":2665,"children":2666},{},[2667,2676,2684,2693],{"type":45,"tag":670,"props":2668,"children":2669},{},[2670],{"type":45,"tag":110,"props":2671,"children":2673},{"className":2672},[],[2674],{"type":59,"value":2675},":dedup_events",{"type":45,"tag":670,"props":2677,"children":2678},{},[2679],{"type":45,"tag":110,"props":2680,"children":2682},{"className":2681},[],[2683],{"type":59,"value":2402},{"type":45,"tag":670,"props":2685,"children":2686},{},[2687],{"type":45,"tag":110,"props":2688,"children":2690},{"className":2689},[],[2691],{"type":59,"value":2692},"true",{"type":45,"tag":670,"props":2694,"children":2695},{},[2696],{"type":59,"value":2697},"Deduplicate identical events within ~30 seconds",{"type":45,"tag":648,"props":2699,"children":2700},{},[2701,2710,2719,2728],{"type":45,"tag":670,"props":2702,"children":2703},{},[2704],{"type":45,"tag":110,"props":2705,"children":2707},{"className":2706},[],[2708],{"type":59,"value":2709},":tags",{"type":45,"tag":670,"props":2711,"children":2712},{},[2713],{"type":45,"tag":110,"props":2714,"children":2716},{"className":2715},[],[2717],{"type":59,"value":2718},"map",{"type":45,"tag":670,"props":2720,"children":2721},{},[2722],{"type":45,"tag":110,"props":2723,"children":2725},{"className":2724},[],[2726],{"type":59,"value":2727},"%{}",{"type":45,"tag":670,"props":2729,"children":2730},{},[2731],{"type":59,"value":2732},"Global tags sent with every event",{"type":45,"tag":648,"props":2734,"children":2735},{},[2736,2745,2754,2762],{"type":45,"tag":670,"props":2737,"children":2738},{},[2739],{"type":45,"tag":110,"props":2740,"children":2742},{"className":2741},[],[2743],{"type":59,"value":2744},":traces_sample_rate",{"type":45,"tag":670,"props":2746,"children":2747},{},[2748],{"type":45,"tag":110,"props":2749,"children":2751},{"className":2750},[],[2752],{"type":59,"value":2753},"float | nil",{"type":45,"tag":670,"props":2755,"children":2756},{},[2757],{"type":45,"tag":110,"props":2758,"children":2760},{"className":2759},[],[2761],{"type":59,"value":2241},{"type":45,"tag":670,"props":2763,"children":2764},{},[2765],{"type":59,"value":2766},"Non-nil enables tracing (requires OTel setup)",{"type":45,"tag":648,"props":2768,"children":2769},{},[2770,2779,2788,2796],{"type":45,"tag":670,"props":2771,"children":2772},{},[2773],{"type":45,"tag":110,"props":2774,"children":2776},{"className":2775},[],[2777],{"type":59,"value":2778},":traces_sampler",{"type":45,"tag":670,"props":2780,"children":2781},{},[2782],{"type":45,"tag":110,"props":2783,"children":2785},{"className":2784},[],[2786],{"type":59,"value":2787},"fn | {m, f} | nil",{"type":45,"tag":670,"props":2789,"children":2790},{},[2791],{"type":45,"tag":110,"props":2792,"children":2794},{"className":2793},[],[2795],{"type":59,"value":2241},{"type":45,"tag":670,"props":2797,"children":2798},{},[2799],{"type":59,"value":2800},"Custom per-transaction sampling",{"type":45,"tag":648,"props":2802,"children":2803},{},[2804,2813,2821,2829],{"type":45,"tag":670,"props":2805,"children":2806},{},[2807],{"type":45,"tag":110,"props":2808,"children":2810},{"className":2809},[],[2811],{"type":59,"value":2812},":enable_logs",{"type":45,"tag":670,"props":2814,"children":2815},{},[2816],{"type":45,"tag":110,"props":2817,"children":2819},{"className":2818},[],[2820],{"type":59,"value":2402},{"type":45,"tag":670,"props":2822,"children":2823},{},[2824],{"type":45,"tag":110,"props":2825,"children":2827},{"className":2826},[],[2828],{"type":59,"value":2411},{"type":45,"tag":670,"props":2830,"children":2831},{},[2832],{"type":59,"value":2833},"Enable Sentry Logs Protocol (v12.0.0+)",{"type":45,"tag":648,"props":2835,"children":2836},{},[2837,2846,2855,2863],{"type":45,"tag":670,"props":2838,"children":2839},{},[2840],{"type":45,"tag":110,"props":2841,"children":2843},{"className":2842},[],[2844],{"type":59,"value":2845},":scrubber",{"type":45,"tag":670,"props":2847,"children":2848},{},[2849],{"type":45,"tag":110,"props":2850,"children":2852},{"className":2851},[],[2853],{"type":59,"value":2854},"keyword",{"type":45,"tag":670,"props":2856,"children":2857},{},[2858],{"type":45,"tag":110,"props":2859,"children":2861},{"className":2860},[],[2862],{"type":59,"value":2446},{"type":45,"tag":670,"props":2864,"children":2865},{},[2866,2868,2874,2876,2882],{"type":59,"value":2867},"Scrubber config (v13.1.1+); keys: ",{"type":45,"tag":110,"props":2869,"children":2871},{"className":2870},[],[2872],{"type":59,"value":2873},":conn_private_allow_list",{"type":59,"value":2875}," (list of atoms kept from ",{"type":45,"tag":110,"props":2877,"children":2879},{"className":2878},[],[2880],{"type":59,"value":2881},"Plug.Conn.private",{"type":59,"value":2883},")",{"type":45,"tag":648,"props":2885,"children":2886},{},[2887,2896,2904,2912],{"type":45,"tag":670,"props":2888,"children":2889},{},[2890],{"type":45,"tag":110,"props":2891,"children":2893},{"className":2892},[],[2894],{"type":59,"value":2895},":test_mode",{"type":45,"tag":670,"props":2897,"children":2898},{},[2899],{"type":45,"tag":110,"props":2900,"children":2902},{"className":2901},[],[2903],{"type":59,"value":2402},{"type":45,"tag":670,"props":2905,"children":2906},{},[2907],{"type":45,"tag":110,"props":2908,"children":2910},{"className":2909},[],[2911],{"type":59,"value":2411},{"type":45,"tag":670,"props":2913,"children":2914},{},[2915],{"type":59,"value":2916},"Capture events in-memory for testing",{"type":45,"tag":1080,"props":2918,"children":2920},{"id":2919},"default-pii-guidance",[2921],{"type":59,"value":2922},"Default PII Guidance",{"type":45,"tag":50,"props":2924,"children":2925},{},[2926,2928,2934,2936,2941,2943,2948,2950,2956,2958,2963,2965,2970],{"type":59,"value":2927},"Most Sentry SDKs expose a send-default-PII option. As of sentry v12, the Elixir SDK does not expose a ",{"type":45,"tag":110,"props":2929,"children":2931},{"className":2930},[],[2932],{"type":59,"value":2933},"send_default_pii",{"type":59,"value":2935}," config option in its documented option list or current config schema, so do ",{"type":45,"tag":137,"props":2937,"children":2938},{},[2939],{"type":59,"value":2940},"not",{"type":59,"value":2942}," add a non-existent option. For richer user context, use ",{"type":45,"tag":110,"props":2944,"children":2946},{"className":2945},[],[2947],{"type":59,"value":719},{"type":59,"value":2949}," and explicitly set allowed fields with ",{"type":45,"tag":110,"props":2951,"children":2953},{"className":2952},[],[2954],{"type":59,"value":2955},"Sentry.Context.set_user_context\u002F1",{"type":59,"value":2957},", then scrub with ",{"type":45,"tag":110,"props":2959,"children":2961},{"className":2960},[],[2962],{"type":59,"value":2497},{"type":59,"value":2964}," if needed. If a future Elixir SDK release adds ",{"type":45,"tag":110,"props":2966,"children":2968},{"className":2967},[],[2969],{"type":59,"value":2933},{"type":59,"value":2971},", recommend setting it.",{"type":45,"tag":50,"props":2973,"children":2974},{},[2975,2980,2982,2988,2989,2995,2997,3002,3004,3009],{"type":45,"tag":137,"props":2976,"children":2977},{},[2978],{"type":59,"value":2979},"Automatic PII Scrubbing:",{"type":59,"value":2981}," As of v13.1.0, stacktrace frame variables and ",{"type":45,"tag":110,"props":2983,"children":2985},{"className":2984},[],[2986],{"type":59,"value":2987},"FunctionClauseError",{"type":59,"value":1031},{"type":45,"tag":110,"props":2990,"children":2992},{"className":2991},[],[2993],{"type":59,"value":2994},"Phoenix.ActionClauseError",{"type":59,"value":2996}," arguments are automatically scrubbed for sensitive data using the same scrubber rules as HTTP request data. Use ",{"type":45,"tag":110,"props":2998,"children":3000},{"className":2999},[],[3001],{"type":59,"value":2845},{"type":59,"value":3003}," config to customize which ",{"type":45,"tag":110,"props":3005,"children":3007},{"className":3006},[],[3008],{"type":59,"value":2881},{"type":59,"value":3010}," keys are retained.",{"type":45,"tag":1080,"props":3012,"children":3014},{"id":3013},"environment-variables",[3015],{"type":59,"value":3016},"Environment Variables",{"type":45,"tag":640,"props":3018,"children":3019},{},[3020,3040],{"type":45,"tag":644,"props":3021,"children":3022},{},[3023],{"type":45,"tag":648,"props":3024,"children":3025},{},[3026,3031,3036],{"type":45,"tag":652,"props":3027,"children":3028},{},[3029],{"type":59,"value":3030},"Variable",{"type":45,"tag":652,"props":3032,"children":3033},{},[3034],{"type":59,"value":3035},"Maps to",{"type":45,"tag":652,"props":3037,"children":3038},{},[3039],{"type":59,"value":2208},{"type":45,"tag":663,"props":3041,"children":3042},{},[3043,3067,3098],{"type":45,"tag":648,"props":3044,"children":3045},{},[3046,3054,3062],{"type":45,"tag":670,"props":3047,"children":3048},{},[3049],{"type":45,"tag":110,"props":3050,"children":3052},{"className":3051},[],[3053],{"type":59,"value":2252},{"type":45,"tag":670,"props":3055,"children":3056},{},[3057],{"type":45,"tag":110,"props":3058,"children":3060},{"className":3059},[],[3061],{"type":59,"value":2223},{"type":45,"tag":670,"props":3063,"children":3064},{},[3065],{"type":59,"value":3066},"Data Source Name",{"type":45,"tag":648,"props":3068,"children":3069},{},[3070,3078,3086],{"type":45,"tag":670,"props":3071,"children":3072},{},[3073],{"type":45,"tag":110,"props":3074,"children":3076},{"className":3075},[],[3077],{"type":59,"value":2346},{"type":45,"tag":670,"props":3079,"children":3080},{},[3081],{"type":45,"tag":110,"props":3082,"children":3084},{"className":3083},[],[3085],{"type":59,"value":2313},{"type":45,"tag":670,"props":3087,"children":3088},{},[3089,3091,3097],{"type":59,"value":3090},"App version (e.g., ",{"type":45,"tag":110,"props":3092,"children":3094},{"className":3093},[],[3095],{"type":59,"value":3096},"my-app@1.0.0",{"type":59,"value":2883},{"type":45,"tag":648,"props":3099,"children":3100},{},[3101,3109,3117],{"type":45,"tag":670,"props":3102,"children":3103},{},[3104],{"type":45,"tag":110,"props":3105,"children":3107},{"className":3106},[],[3108],{"type":59,"value":2301},{"type":45,"tag":670,"props":3110,"children":3111},{},[3112],{"type":45,"tag":110,"props":3113,"children":3115},{"className":3114},[],[3116],{"type":59,"value":2264},{"type":45,"tag":670,"props":3118,"children":3119},{},[3120],{"type":59,"value":3121},"Deployment environment",{"type":45,"tag":155,"props":3123,"children":3124},{},[],{"type":45,"tag":83,"props":3126,"children":3128},{"id":3127},"verification",[3129],{"type":59,"value":1172},{"type":45,"tag":50,"props":3131,"children":3132},{},[3133],{"type":59,"value":3134},"Test that Sentry is receiving events:",{"type":45,"tag":170,"props":3136,"children":3138},{"className":172,"code":3137,"language":174,"meta":175,"style":175},"# Send a test event from your project\nMIX_ENV=dev mix sentry.send_test_event\n",[3139],{"type":45,"tag":110,"props":3140,"children":3141},{"__ignoreMap":175},[3142,3150],{"type":45,"tag":181,"props":3143,"children":3144},{"class":183,"line":184},[3145],{"type":45,"tag":181,"props":3146,"children":3147},{"style":188},[3148],{"type":59,"value":3149},"# Send a test event from your project\n",{"type":45,"tag":181,"props":3151,"children":3152},{"class":183,"line":194},[3153,3159,3164,3169,3174],{"type":45,"tag":181,"props":3154,"children":3156},{"style":3155},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[3157],{"type":59,"value":3158},"MIX_ENV",{"type":45,"tag":181,"props":3160,"children":3161},{"style":220},[3162],{"type":59,"value":3163},"=",{"type":45,"tag":181,"props":3165,"children":3166},{"style":204},[3167],{"type":59,"value":3168},"dev",{"type":45,"tag":181,"props":3170,"children":3171},{"style":198},[3172],{"type":59,"value":3173}," mix",{"type":45,"tag":181,"props":3175,"children":3176},{"style":204},[3177],{"type":59,"value":3178}," sentry.send_test_event\n",{"type":45,"tag":50,"props":3180,"children":3181},{},[3182],{"type":59,"value":3183},"Or add a temporary call in a controller action:",{"type":45,"tag":170,"props":3185,"children":3187},{"className":1209,"code":3186,"language":22,"meta":175,"style":175},"# Temporary test — remove after confirming\ndef index(conn, _params) do\n  Sentry.capture_message(\"Sentry Elixir SDK test event\")\n  text(conn, \"sent\")\nend\n",[3188],{"type":45,"tag":110,"props":3189,"children":3190},{"__ignoreMap":175},[3191,3199,3207,3215,3223],{"type":45,"tag":181,"props":3192,"children":3193},{"class":183,"line":184},[3194],{"type":45,"tag":181,"props":3195,"children":3196},{},[3197],{"type":59,"value":3198},"# Temporary test — remove after confirming\n",{"type":45,"tag":181,"props":3200,"children":3201},{"class":183,"line":194},[3202],{"type":45,"tag":181,"props":3203,"children":3204},{},[3205],{"type":59,"value":3206},"def index(conn, _params) do\n",{"type":45,"tag":181,"props":3208,"children":3209},{"class":183,"line":231},[3210],{"type":45,"tag":181,"props":3211,"children":3212},{},[3213],{"type":59,"value":3214},"  Sentry.capture_message(\"Sentry Elixir SDK test event\")\n",{"type":45,"tag":181,"props":3216,"children":3217},{"class":183,"line":240},[3218],{"type":45,"tag":181,"props":3219,"children":3220},{},[3221],{"type":59,"value":3222},"  text(conn, \"sent\")\n",{"type":45,"tag":181,"props":3224,"children":3225},{"class":183,"line":249},[3226],{"type":45,"tag":181,"props":3227,"children":3228},{},[3229],{"type":59,"value":1286},{"type":45,"tag":50,"props":3231,"children":3232},{},[3233],{"type":59,"value":3234},"Check the Sentry dashboard within a few seconds. If nothing appears:",{"type":45,"tag":3236,"props":3237,"children":3238},"ol",{},[3239,3252,3264],{"type":45,"tag":94,"props":3240,"children":3241},{},[3242,3244,3250],{"type":59,"value":3243},"Set ",{"type":45,"tag":110,"props":3245,"children":3247},{"className":3246},[],[3248],{"type":59,"value":3249},"config :sentry, log_level: :debug",{"type":59,"value":3251}," for verbose SDK output",{"type":45,"tag":94,"props":3253,"children":3254},{},[3255,3257,3262],{"type":59,"value":3256},"Verify ",{"type":45,"tag":110,"props":3258,"children":3260},{"className":3259},[],[3261],{"type":59,"value":2252},{"type":59,"value":3263}," is set and the project exists",{"type":45,"tag":94,"props":3265,"children":3266},{},[3267,3269,3274],{"type":59,"value":3268},"Confirm ",{"type":45,"tag":110,"props":3270,"children":3272},{"className":3271},[],[3273],{"type":59,"value":2264},{"type":59,"value":3275}," is not set to a value Sentry filters in your alert rules",{"type":45,"tag":155,"props":3277,"children":3278},{},[],{"type":45,"tag":83,"props":3280,"children":3282},{"id":3281},"phase-4-cross-link",[3283],{"type":59,"value":3284},"Phase 4: Cross-Link",{"type":45,"tag":50,"props":3286,"children":3287},{},[3288],{"type":59,"value":3289},"After completing Elixir setup, check for a companion frontend missing Sentry coverage:",{"type":45,"tag":170,"props":3291,"children":3293},{"className":172,"code":3292,"language":174,"meta":175,"style":175},"ls assets\u002F frontend\u002F web\u002F client\u002F ui\u002F 2>\u002Fdev\u002Fnull\ncat assets\u002Fpackage.json frontend\u002Fpackage.json 2>\u002Fdev\u002Fnull | grep -E '\"react\"|\"svelte\"|\"vue\"|\"next\"'\n",[3294],{"type":45,"tag":110,"props":3295,"children":3296},{"__ignoreMap":175},[3297,3333],{"type":45,"tag":181,"props":3298,"children":3299},{"class":183,"line":184},[3300,3304,3308,3312,3316,3320,3325,3329],{"type":45,"tag":181,"props":3301,"children":3302},{"style":198},[3303],{"type":59,"value":602},{"type":45,"tag":181,"props":3305,"children":3306},{"style":204},[3307],{"type":59,"value":607},{"type":45,"tag":181,"props":3309,"children":3310},{"style":204},[3311],{"type":59,"value":612},{"type":45,"tag":181,"props":3313,"children":3314},{"style":204},[3315],{"type":59,"value":617},{"type":45,"tag":181,"props":3317,"children":3318},{"style":204},[3319],{"type":59,"value":622},{"type":45,"tag":181,"props":3321,"children":3322},{"style":204},[3323],{"type":59,"value":3324}," ui\u002F",{"type":45,"tag":181,"props":3326,"children":3327},{"style":220},[3328],{"type":59,"value":223},{"type":45,"tag":181,"props":3330,"children":3331},{"style":204},[3332],{"type":59,"value":228},{"type":45,"tag":181,"props":3334,"children":3335},{"class":183,"line":194},[3336,3340,3345,3350,3354,3358,3362,3366,3370,3374,3379],{"type":45,"tag":181,"props":3337,"children":3338},{"style":198},[3339],{"type":59,"value":255},{"type":45,"tag":181,"props":3341,"children":3342},{"style":204},[3343],{"type":59,"value":3344}," assets\u002Fpackage.json",{"type":45,"tag":181,"props":3346,"children":3347},{"style":204},[3348],{"type":59,"value":3349}," frontend\u002Fpackage.json",{"type":45,"tag":181,"props":3351,"children":3352},{"style":220},[3353],{"type":59,"value":223},{"type":45,"tag":181,"props":3355,"children":3356},{"style":204},[3357],{"type":59,"value":269},{"type":45,"tag":181,"props":3359,"children":3360},{"style":220},[3361],{"type":59,"value":274},{"type":45,"tag":181,"props":3363,"children":3364},{"style":198},[3365],{"type":59,"value":279},{"type":45,"tag":181,"props":3367,"children":3368},{"style":204},[3369],{"type":59,"value":349},{"type":45,"tag":181,"props":3371,"children":3372},{"style":220},[3373],{"type":59,"value":354},{"type":45,"tag":181,"props":3375,"children":3376},{"style":204},[3377],{"type":59,"value":3378},"\"react\"|\"svelte\"|\"vue\"|\"next\"",{"type":45,"tag":181,"props":3380,"children":3381},{"style":220},[3382],{"type":59,"value":3383},"'\n",{"type":45,"tag":50,"props":3385,"children":3386},{},[3387],{"type":59,"value":3388},"If a frontend directory exists without Sentry configured, suggest the matching skill:",{"type":45,"tag":640,"props":3390,"children":3391},{},[3392,3408],{"type":45,"tag":644,"props":3393,"children":3394},{},[3395],{"type":45,"tag":648,"props":3396,"children":3397},{},[3398,3403],{"type":45,"tag":652,"props":3399,"children":3400},{},[3401],{"type":59,"value":3402},"Frontend detected",{"type":45,"tag":652,"props":3404,"children":3405},{},[3406],{"type":59,"value":3407},"Suggest skill",{"type":45,"tag":663,"props":3409,"children":3410},{},[3411,3436,3453,3473],{"type":45,"tag":648,"props":3412,"children":3413},{},[3414,3419],{"type":45,"tag":670,"props":3415,"children":3416},{},[3417],{"type":59,"value":3418},"React \u002F Next.js",{"type":45,"tag":670,"props":3420,"children":3421},{},[3422,3428,3430],{"type":45,"tag":110,"props":3423,"children":3425},{"className":3424},[],[3426],{"type":59,"value":3427},"sentry-react-sdk",{"type":59,"value":3429}," or ",{"type":45,"tag":110,"props":3431,"children":3433},{"className":3432},[],[3434],{"type":59,"value":3435},"sentry-nextjs-sdk",{"type":45,"tag":648,"props":3437,"children":3438},{},[3439,3444],{"type":45,"tag":670,"props":3440,"children":3441},{},[3442],{"type":59,"value":3443},"Svelte \u002F SvelteKit",{"type":45,"tag":670,"props":3445,"children":3446},{},[3447],{"type":45,"tag":110,"props":3448,"children":3450},{"className":3449},[],[3451],{"type":59,"value":3452},"sentry-svelte-sdk",{"type":45,"tag":648,"props":3454,"children":3455},{},[3456,3461],{"type":45,"tag":670,"props":3457,"children":3458},{},[3459],{"type":59,"value":3460},"Vue",{"type":45,"tag":670,"props":3462,"children":3463},{},[3464,3466],{"type":59,"value":3465},"See ",{"type":45,"tag":54,"props":3467,"children":3470},{"href":3468,"rel":3469},"https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fvue\u002F",[148],[3471],{"type":59,"value":3472},"docs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fvue\u002F",{"type":45,"tag":648,"props":3474,"children":3475},{},[3476,3481],{"type":45,"tag":670,"props":3477,"children":3478},{},[3479],{"type":59,"value":3480},"Other JS\u002FTS",{"type":45,"tag":670,"props":3482,"children":3483},{},[3484],{"type":45,"tag":110,"props":3485,"children":3487},{"className":3486},[],[3488],{"type":59,"value":3489},"sentry-browser-sdk",{"type":45,"tag":50,"props":3491,"children":3492},{},[3493,3495,3500],{"type":59,"value":3494},"Connecting Phoenix backend and JavaScript frontend with linked Sentry projects enables ",{"type":45,"tag":137,"props":3496,"children":3497},{},[3498],{"type":59,"value":3499},"distributed tracing",{"type":59,"value":3501}," — stack traces that span the browser, Phoenix HTTP server, and downstream services in a single trace view.",{"type":45,"tag":155,"props":3503,"children":3504},{},[],{"type":45,"tag":83,"props":3506,"children":3508},{"id":3507},"troubleshooting",[3509],{"type":59,"value":3510},"Troubleshooting",{"type":45,"tag":640,"props":3512,"children":3513},{},[3514,3530],{"type":45,"tag":644,"props":3515,"children":3516},{},[3517],{"type":45,"tag":648,"props":3518,"children":3519},{},[3520,3525],{"type":45,"tag":652,"props":3521,"children":3522},{},[3523],{"type":59,"value":3524},"Issue",{"type":45,"tag":652,"props":3526,"children":3527},{},[3528],{"type":59,"value":3529},"Solution",{"type":45,"tag":663,"props":3531,"children":3532},{},[3533,3566,3601,3629,3650,3669,3690,3716,3743],{"type":45,"tag":648,"props":3534,"children":3535},{},[3536,3541],{"type":45,"tag":670,"props":3537,"children":3538},{},[3539],{"type":59,"value":3540},"Events not appearing",{"type":45,"tag":670,"props":3542,"children":3543},{},[3544,3545,3550,3552,3558,3560],{"type":59,"value":3256},{"type":45,"tag":110,"props":3546,"children":3548},{"className":3547},[],[3549],{"type":59,"value":2252},{"type":59,"value":3551}," is set; run ",{"type":45,"tag":110,"props":3553,"children":3555},{"className":3554},[],[3556],{"type":59,"value":3557},"mix sentry.send_test_event",{"type":59,"value":3559},"; set ",{"type":45,"tag":110,"props":3561,"children":3563},{"className":3562},[],[3564],{"type":59,"value":3565},"log_level: :debug",{"type":45,"tag":648,"props":3567,"children":3568},{},[3569,3574],{"type":45,"tag":670,"props":3570,"children":3571},{},[3572],{"type":59,"value":3573},"Missing stack traces on captured exceptions",{"type":45,"tag":670,"props":3575,"children":3576},{},[3577,3579,3585,3587,3593,3595],{"type":59,"value":3578},"Pass ",{"type":45,"tag":110,"props":3580,"children":3582},{"className":3581},[],[3583],{"type":59,"value":3584},"stacktrace: __STACKTRACE__",{"type":59,"value":3586}," in the ",{"type":45,"tag":110,"props":3588,"children":3590},{"className":3589},[],[3591],{"type":59,"value":3592},"rescue",{"type":59,"value":3594}," block: ",{"type":45,"tag":110,"props":3596,"children":3598},{"className":3597},[],[3599],{"type":59,"value":3600},"Sentry.capture_exception(e, stacktrace: __STACKTRACE__)",{"type":45,"tag":648,"props":3602,"children":3603},{},[3604,3614],{"type":45,"tag":670,"props":3605,"children":3606},{},[3607,3612],{"type":45,"tag":110,"props":3608,"children":3610},{"className":3609},[],[3611],{"type":59,"value":1867},{"type":59,"value":3613}," not working on Bandit",{"type":45,"tag":670,"props":3615,"children":3616},{},[3617,3622,3624],{"type":45,"tag":110,"props":3618,"children":3620},{"className":3619},[],[3621],{"type":59,"value":711},{"type":59,"value":3623}," is Cowboy-only; with Bandit errors surface via ",{"type":45,"tag":110,"props":3625,"children":3627},{"className":3626},[],[3628],{"type":59,"value":989},{"type":45,"tag":648,"props":3630,"children":3631},{},[3632,3637],{"type":45,"tag":670,"props":3633,"children":3634},{},[3635],{"type":59,"value":3636},"Source code context missing in production",{"type":45,"tag":670,"props":3638,"children":3639},{},[3640,3642,3648],{"type":59,"value":3641},"Run ",{"type":45,"tag":110,"props":3643,"children":3645},{"className":3644},[],[3646],{"type":59,"value":3647},"mix sentry.package_source_code",{"type":59,"value":3649}," before building your OTP release",{"type":45,"tag":648,"props":3651,"children":3652},{},[3653,3658],{"type":45,"tag":670,"props":3654,"children":3655},{},[3656],{"type":59,"value":3657},"Context not appearing on async events",{"type":45,"tag":670,"props":3659,"children":3660},{},[3661,3667],{"type":45,"tag":110,"props":3662,"children":3664},{"className":3663},[],[3665],{"type":59,"value":3666},"Sentry.Context.*",{"type":59,"value":3668}," is process-scoped; pass values explicitly or propagate Logger metadata across processes",{"type":45,"tag":648,"props":3670,"children":3671},{},[3672,3677],{"type":45,"tag":670,"props":3673,"children":3674},{},[3675],{"type":59,"value":3676},"Oban integration not reporting crons",{"type":45,"tag":670,"props":3678,"children":3679},{},[3680,3682,3688],{"type":59,"value":3681},"Requires Oban v2.17.6+ or Oban Pro; cron jobs must have ",{"type":45,"tag":110,"props":3683,"children":3685},{"className":3684},[],[3686],{"type":59,"value":3687},"\"cron\" => true",{"type":59,"value":3689}," in job meta",{"type":45,"tag":648,"props":3691,"children":3692},{},[3693,3698],{"type":45,"tag":670,"props":3694,"children":3695},{},[3696],{"type":59,"value":3697},"Duplicate events from Cowboy\u002FBandit crashes",{"type":45,"tag":670,"props":3699,"children":3700},{},[3701,3702,3708,3709,3714],{"type":59,"value":3243},{"type":45,"tag":110,"props":3703,"children":3705},{"className":3704},[],[3706],{"type":59,"value":3707},"excluded_domains: [:cowboy, :bandit]",{"type":59,"value":1597},{"type":45,"tag":110,"props":3710,"children":3712},{"className":3711},[],[3713],{"type":59,"value":989},{"type":59,"value":3715}," config (both excluded by default as of v13.1.0)",{"type":45,"tag":648,"props":3717,"children":3718},{},[3719,3730],{"type":45,"tag":670,"props":3720,"children":3721},{},[3722,3728],{"type":45,"tag":110,"props":3723,"children":3725},{"className":3724},[],[3726],{"type":59,"value":3727},"finch",{"type":59,"value":3729}," not starting",{"type":45,"tag":670,"props":3731,"children":3732},{},[3733,3735,3741],{"type":59,"value":3734},"Ensure ",{"type":45,"tag":110,"props":3736,"children":3738},{"className":3737},[],[3739],{"type":59,"value":3740},"{:finch, \"~> 0.21\"}",{"type":59,"value":3742}," is in deps; Finch is the default HTTP client since v12.0.0",{"type":45,"tag":648,"props":3744,"children":3745},{},[3746,3751],{"type":45,"tag":670,"props":3747,"children":3748},{},[3749],{"type":59,"value":3750},"JSON encoding error",{"type":45,"tag":670,"props":3752,"children":3753},{},[3754,3755,3761,3763,3769],{"type":59,"value":705},{"type":45,"tag":110,"props":3756,"children":3758},{"className":3757},[],[3759],{"type":59,"value":3760},"{:jason, \"~> 1.4\"}",{"type":59,"value":3762}," and set ",{"type":45,"tag":110,"props":3764,"children":3766},{"className":3765},[],[3767],{"type":59,"value":3768},"json_library: Jason",{"type":59,"value":3770}," for Elixir \u003C 1.18",{"type":45,"tag":3772,"props":3773,"children":3774},"style",{},[3775],{"type":59,"value":3776},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3778,"total":3877},[3779,3797,3811,3827,3843,3857,3864],{"slug":3780,"name":3780,"fn":3781,"description":3782,"org":3783,"tags":3784,"stars":24,"repoUrl":25,"updatedAt":3796},"sentry-android-sdk","setup Sentry SDK for Android","Full Sentry SDK setup for Android. Use when asked to \"add Sentry to Android\", \"install sentry-android\", \"setup Sentry in Android\", or configure error monitoring, tracing, profiling, session replay, or logging for Android applications. Supports Kotlin and Java codebases.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3785,3788,3791,3792,3795],{"name":3786,"slug":3787,"type":16},"Android","android",{"name":3789,"slug":3790,"type":16},"Debugging","debugging",{"name":14,"slug":15,"type":16},{"name":3793,"slug":3794,"type":16},"SDK","sdk",{"name":9,"slug":8,"type":16},"2026-07-12T06:08:32.396344",{"slug":3489,"name":3489,"fn":3798,"description":3799,"org":3800,"tags":3801,"stars":24,"repoUrl":25,"updatedAt":3810},"setup Sentry error monitoring for browser applications","Full Sentry SDK setup for browser JavaScript. Use when asked to \"add Sentry to a website\", \"install @sentry\u002Fbrowser\", or configure error monitoring, tracing, session replay, or logging for vanilla JavaScript, jQuery, static sites, or WordPress.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3802,3803,3806,3809],{"name":3789,"slug":3790,"type":16},{"name":3804,"slug":3805,"type":16},"JavaScript","javascript",{"name":3807,"slug":3808,"type":16},"Monitoring","monitoring",{"name":9,"slug":8,"type":16},"2026-07-18T05:47:44.437436",{"slug":3812,"name":3812,"fn":3813,"description":3814,"org":3815,"tags":3816,"stars":24,"repoUrl":25,"updatedAt":3826},"sentry-cloudflare-sdk","setup Sentry monitoring for Cloudflare","Full Sentry SDK setup for Cloudflare Workers and Pages. Use when asked to \"add Sentry to Cloudflare Workers\", \"install @sentry\u002Fcloudflare\", or configure error monitoring, tracing, logging, crons, or AI monitoring for Cloudflare Workers, Pages, Durable Objects, Queues, Workflows, or Hono on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3817,3820,3823,3824,3825],{"name":3818,"slug":3819,"type":16},"Cloudflare","cloudflare",{"name":3821,"slug":3822,"type":16},"Edge Functions","edge-functions",{"name":3807,"slug":3808,"type":16},{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-11T05:53:25.361175",{"slug":3828,"name":3828,"fn":3829,"description":3830,"org":3831,"tags":3832,"stars":24,"repoUrl":25,"updatedAt":3842},"sentry-cocoa-sdk","integrate Sentry SDK into Apple applications","Full Sentry SDK setup for Apple platforms (iOS, macOS, tvOS, watchOS, visionOS). Use when asked to \"add Sentry to iOS\", \"add Sentry to Swift\", \"install sentry-cocoa\", or configure error monitoring, tracing, profiling, session replay, logging, or metrics for Apple applications. Supports SwiftUI and UIKit.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3833,3836,3839,3840,3841],{"name":3834,"slug":3835,"type":16},"iOS","ios",{"name":3837,"slug":3838,"type":16},"macOS","macos",{"name":3807,"slug":3808,"type":16},{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-11T05:52:57.042493",{"slug":3844,"name":3844,"fn":3845,"description":3846,"org":3847,"tags":3848,"stars":24,"repoUrl":25,"updatedAt":3856},"sentry-dotnet-sdk","setup Sentry SDK for .NET","Full Sentry SDK setup for .NET. Use when asked to \"add Sentry to .NET\", \"install Sentry for C#\", or configure error monitoring, tracing, profiling, logging, or crons for ASP.NET Core, MAUI, WPF, WinForms, Blazor, Azure Functions, or any other .NET application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3849,3852,3853,3854,3855],{"name":3850,"slug":3851,"type":16},".NET","net",{"name":3789,"slug":3790,"type":16},{"name":14,"slug":15,"type":16},{"name":3793,"slug":3794,"type":16},{"name":9,"slug":8,"type":16},"2026-07-12T06:08:33.793148",{"slug":4,"name":4,"fn":5,"description":6,"org":3858,"tags":3859,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3860,3861,3862,3863],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},{"slug":3865,"name":3865,"fn":3866,"description":3867,"org":3868,"tags":3869,"stars":24,"repoUrl":25,"updatedAt":3876},"sentry-fix-issues","fix production issues with Sentry","Find and fix issues from Sentry using MCP. Use when asked to fix Sentry errors, debug production issues, investigate exceptions, or resolve bugs reported in Sentry. Methodically analyzes stack traces, breadcrumbs, traces, and context to identify root causes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3870,3871,3874,3875],{"name":3789,"slug":3790,"type":16},{"name":3872,"slug":3873,"type":16},"Incident Response","incident-response",{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-12T06:08:35.550824",27,{"items":3879,"total":4051},[3880,3899,3913,3928,3942,3959,3975,3989,3999,4010,4020,4038],{"slug":3881,"name":3881,"fn":3882,"description":3883,"org":3884,"tags":3885,"stars":3896,"repoUrl":3897,"updatedAt":3898},"xcodebuildmcp","build and test Apple apps with XcodeBuildMCP","Official skill for XcodeBuildMCP. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3886,3887,3888,3889,3890,3893],{"name":3789,"slug":3790,"type":16},{"name":3834,"slug":3835,"type":16},{"name":3837,"slug":3838,"type":16},{"name":9,"slug":8,"type":16},{"name":3891,"slug":3892,"type":16},"Testing","testing",{"name":3894,"slug":3895,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":3900,"name":3900,"fn":3901,"description":3902,"org":3903,"tags":3904,"stars":3896,"repoUrl":3897,"updatedAt":3912},"xcodebuildmcp-cli","build and test Apple apps via CLI","Official skill for the XcodeBuildMCP CLI. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3905,3908,3909,3910,3911],{"name":3906,"slug":3907,"type":16},"CLI","cli",{"name":3834,"slug":3835,"type":16},{"name":3837,"slug":3838,"type":16},{"name":3891,"slug":3892,"type":16},{"name":3894,"slug":3895,"type":16},"2026-04-06T18:13:36.13414",{"slug":3914,"name":3914,"fn":3915,"description":3916,"org":3917,"tags":3918,"stars":3925,"repoUrl":3926,"updatedAt":3927},"agents-md","maintain project instruction files","Creates and maintains concise AGENTS.md and CLAUDE.md project instruction files. Use when asked to create AGENTS.md, update AGENTS.md, maintain agent docs, set up CLAUDE.md, document repository agent conventions, or keep coding-agent instructions minimal and reference-backed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3919,3922],{"name":3920,"slug":3921,"type":16},"Documentation","documentation",{"name":3923,"slug":3924,"type":16},"Engineering","engineering",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-15T06:16:29.695991",{"slug":3929,"name":3929,"fn":3930,"description":3931,"org":3932,"tags":3933,"stars":3925,"repoUrl":3926,"updatedAt":3941},"blog-writing-guide","write and review engineering blog posts","Write, review, and improve blog posts for the Sentry engineering blog following Sentry's specific writing standards, voice, and quality bar. Use this skill whenever someone asks to write a blog post, draft a technical article, review blog content, improve a draft, write a product announcement, create an engineering deep-dive, or produce any written content destined for the Sentry blog or developer audience. Also trigger when the user mentions \"blog post,\" \"blog draft,\" \"write-up,\" \"announcement post,\" \"engineering post,\" \"deep dive,\" \"postmortem,\" or asks for help with technical writing for Sentry. Even if the user just says \"help me write about [feature\u002Ftopic]\" — if it sounds like it could become a Sentry blog post, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3934,3937,3938],{"name":3935,"slug":3936,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":3939,"slug":3940,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":3943,"name":3943,"fn":3944,"description":3945,"org":3946,"tags":3947,"stars":3925,"repoUrl":3926,"updatedAt":3958},"brand-guidelines","write copy following Sentry brand guidelines","Write copy following Sentry brand guidelines. Use when writing UI text, error messages, empty states, onboarding flows, 404 pages, documentation, marketing copy, or any user-facing content. Covers both Plain Speech (default) and Sentry Voice tones.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3948,3951,3954,3955],{"name":3949,"slug":3950,"type":16},"Branding","branding",{"name":3952,"slug":3953,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":3956,"slug":3957,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":3960,"name":3960,"fn":3961,"description":3962,"org":3963,"tags":3964,"stars":3925,"repoUrl":3926,"updatedAt":3974},"claude-settings-audit","generate Claude Code settings permissions","Analyze a repository to generate recommended Claude Code settings.json permissions. Use when setting up a new project, auditing existing settings, or determining which read-only bash commands to allow. Detects tech stack, build tools, and monorepo structure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3965,3968,3971],{"name":3966,"slug":3967,"type":16},"Claude Code","claude-code",{"name":3969,"slug":3970,"type":16},"Configuration","configuration",{"name":3972,"slug":3973,"type":16},"Security","security","2026-05-15T06:16:44.335977",{"slug":3976,"name":3976,"fn":3977,"description":3978,"org":3979,"tags":3980,"stars":3925,"repoUrl":3926,"updatedAt":3988},"code-review","perform code reviews for Sentry projects","Perform code reviews following Sentry engineering practices. Use when reviewing pull requests, examining code changes, or providing feedback on code quality. Covers security, performance, testing, and design review.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3981,3983,3984,3987],{"name":3982,"slug":3976,"type":16},"Code Review",{"name":3923,"slug":3924,"type":16},{"name":3985,"slug":3986,"type":16},"Performance","performance",{"name":3972,"slug":3973,"type":16},"2026-05-15T06:16:35.824864",{"slug":3990,"name":3990,"fn":3991,"description":3992,"org":3993,"tags":3994,"stars":3925,"repoUrl":3926,"updatedAt":3998},"code-simplifier","simplify and refine source code","Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Use when asked to \"simplify code\", \"clean up code\", \"refactor for clarity\", \"improve readability\", or review recently modified code for elegance. Focuses on project-specific best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3995],{"name":3996,"slug":3997,"type":16},"Code Analysis","code-analysis","2026-05-15T06:16:32.127981",{"slug":4000,"name":4000,"fn":4001,"description":4002,"org":4003,"tags":4004,"stars":3925,"repoUrl":3926,"updatedAt":4009},"commit","create commits with Sentry conventions","Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4005,4008],{"name":4006,"slug":4007,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":4011,"name":4011,"fn":4012,"description":4013,"org":4014,"tags":4015,"stars":3925,"repoUrl":3926,"updatedAt":4019},"create-branch","create git branches for Sentry workflows","Create a git branch following Sentry naming conventions. Use when asked to \"create a branch\", \"new branch\", \"start a branch\", \"make a branch\", \"switch to a new branch\", or when starting new work on the default branch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4016,4017,4018],{"name":3923,"slug":3924,"type":16},{"name":4006,"slug":4007,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":4021,"name":4021,"fn":4022,"description":4023,"org":4024,"tags":4025,"stars":3925,"repoUrl":3926,"updatedAt":4037},"django-access-review","review Django access control and IDOR","Django access control and IDOR security review. Use when reviewing Django views, DRF viewsets, ORM queries, or any Python\u002FDjango code handling user authorization. Trigger keywords: \"IDOR\", \"access control\", \"authorization\", \"Django permissions\", \"object permissions\", \"tenant isolation\", \"broken access\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4026,4029,4030,4033,4036],{"name":4027,"slug":4028,"type":16},"Access Control","access-control",{"name":3996,"slug":3997,"type":16},{"name":4031,"slug":4032,"type":16},"Django","django",{"name":4034,"slug":4035,"type":16},"Python","python",{"name":3972,"slug":3973,"type":16},"2026-05-15T06:16:43.098698",{"slug":4039,"name":4039,"fn":4040,"description":4041,"org":4042,"tags":4043,"stars":3925,"repoUrl":3926,"updatedAt":4050},"django-perf-review","review and optimize Django performance","Django performance code review. Use when asked to \"review Django performance\", \"find N+1 queries\", \"optimize Django\", \"check queryset performance\", \"database performance\", \"Django ORM issues\", or audit Django code for performance problems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4044,4045,4048,4049],{"name":3982,"slug":3976,"type":16},{"name":4046,"slug":4047,"type":16},"Database","database",{"name":4031,"slug":4032,"type":16},{"name":3985,"slug":3986,"type":16},"2026-05-15T06:16:24.832813",88]