> For the complete documentation index, see [llms.txt](https://docs.zipy.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zipy.ai/integration/sentry.md).

# Sentry

### Add a Zipy session recording URL to every Sentry exception report.

```javascript
const zipySessionUrl = window.zipy.getCurrentSessionURL();

Sentry.configureScope(scope => {
  scope.setExtra("zipy_session_url", zipySessionUrl);
});
```
