nest-raven
nest-raven copied to clipboard
Sentry Module for Nest.js Framework
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Awaiting Schedule These updates are awaiting their schedule. Click on a checkbox to...
Hello there, I was wondering is there a particular reason that `nest-raven` doesn't set the request prop on events and relies on the `extra` param. ```js app.use(Sentry.Handlers.requestHandler()); ``` thank you
Currently, my package.json is ```javascript "@nestjs/common": "^8.0.6", "@nestjs/core": "^8.0.6", "@nestjs/jwt": "^8.0.0", "@nestjs/microservices": "^8.0.6", "@nestjs/platform-express": "^8.0.6", "@sentry/node": "^6.16.1", "@sentry/tracing": "^6.16.1", "nest-raven": "^8.0.0", ``` And I have configured it like this in...
Does anyone know how to configure Sentry Tracing in NestJS to allow monitoring performance?
In sentry JS package we were able to use ```Sentry.captureException``` or ```Sentry.captureMessage``` to capture any exceptions or messages outside of fatal errors. In your package only example I see here...
In the document is say that "Interceptor automatically adds req and req.user (as user) to additional data." but it does not unless we say to do: ``` new RavenInterceptor({ user:...
### Summary After adding `nest-raven` to a new project I am seeing a lot of new warnings when a project has no dependence on GraphQL. See screenshot below. Any recommendations...
- [ ] `test.yaml` should only be executed on `pull_request` - [ ] `release.yaml` should be split in to `pre_release.yaml` that looks for tags `^v(\d+\.)?(\d+\.)?(\*|\d+)-alpha(\d+\.)?$` (and same for `beta`). This...
## Package + Version - [ ] `@sentry/node` - [ ] other: `nest-raven` ### Version: ``` latest ``` ## Description When my code throw error, I can get the `ADDITIONAL...
Hey, me again. Haven't yet gotten around to the last two issues but wanted to drop this in before I forget. I'm a _really_ big fan of avoiding `@UseInterceptors`. It...