nestjs-sentry icon indicating copy to clipboard operation
nestjs-sentry copied to clipboard

Provides an injectable sentry.io client to provide enterprise logging nestjs modules

Results 65 nestjs-sentry issues
Sort by recently updated
recently updated
newest added

- get rid of ConsoleLogger inheritance: - use `SentryService implements LoggerService` instead of `SentryService extends ConsoleLogger`; - add an ability to provide custom logger; - add an ability to disable...

Error exceptions does not show stacktrace / code inside Sentry. Is there a way to enable this?

The README mentions that you don't need to use GraphQL to use `SentryInterceptor`, but there's no example of how to use it. Did a section get accidentally removed from the...

Hi, I'm using version 2.x because I have Nest 7.x Everything seems to be working (logs are sending to sentry and local debug works) but I am curious about this...

The default behaviour of any Sentry SDK is to capture non-error logs as breadcrumbs and send them all together as soon as an error happens. I see `SentryService` extends `Logger`...

The package.json lists the dependency on `@nestjs/graphql` under `optionalDependencies` I think the intention here was to express "if you use graphql, we are compatible with these versions." However, `optionalDependencies` is...

It looks like by default`@Cron` jobs don't get into Sentry: https://dev.to/chiubaka/integrating-sentry-with-nestjs-scheduled-jobs-19bj. The linked post also describes a workaround. Perhaps this should be incorporated into nestjs-sentry?

Looks like the implementation of SentryModule.forRoot on version 6.17.4 changed on how logLevel is passed. Now it's spelled as logLevels and it receives a type of LogLevel[]. Also the type...

Hey! In my Nest project I have a custom Logger implementation which is optimized for SumoLogic format. In case of errors I use my logger to print logs and `@ntegral/nestjs-sentry`...