Socket
Socket
Sign inDemoInstall

@bluepic/logdna-nestjs

Package Overview
Dependencies
224
Maintainers
4
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bluepic/logdna-nestjs

Provides an injectable LogDNA client for logging in nestjs modules


Version published
Weekly downloads
172
decreased by-7.53%
Maintainers
4
Install size
8.89 MB
Created
Weekly downloads
 

Readme

Source

npm version ISC license

@bluepic/logdna-nestjs

Provides an injectable LogDNA client for logging in nestjs modules

This is a fork of @ntegral/nestjs-sentry

Table Of Contents

About

@bluepic/logdna-nestjs implements a module, LogDNAModule, which when imported into your nestjs project provides a LogDNA client to any class that injects it. This lets LogDNA be worked into your dependency injection workflow without having to do any extra work outside of the initial setup.

Installation

npm install --save @bluepic/logdna-nestjs @logdna/logger

Getting Started

The simplest way to use @bluepic/logdna-nestjs is to use LogDNAModule.forRootAsync

import { Module } from '@nestjs-common';
import { LogDNAModule } from '@bluepic/logdna-nestjs';
import { ConfigModule, ConfigService } from '@nestjs/config';

@Module({
  imports: [
    LogDNAModule.forRootAsync({
      imports: [ConfigModule],
      useFactory: async (configService: ConfigService) => ({
        ingestionKey: configService.get('LOGDNA_INGESTION_KEY'),
        logDNAOptions: {
          app: 'App Name',
          env: process.env.NODE_ENV,
          defaultLevel: 'info',
          hostname: 'Hostname',
        },
      }),
      inject: [ConfigService],
    });
  ],
})
export class AppModule {}

You can then inject the LogDNA client into any of your injectables by using a custom decorator

import { Injectable } from '@nestjs/common';
import { LogDNAService, InjectLogDNA } from '@bluepic/logdna-nestjs';

@Injectable()
export class AppService {
  constructor(@InjectLogDNA() private readonly logger: LogDNAService) {}
  testLogger() {
    this.logger.log('TEST');
  }
}

You can instruct Nest to use the LogDNAService as the default logger:

import { LogDNAService } from '@bluepic/logdna-nestjs';

async function bootstrap() {
  const app = await NestFactory.create(AppModule, { logger: false });

  app.useLogger(LogDNAService.LogDNAServiceInstance());

  await app.listen(3000);
}
bootstrap();

Middleware

You can use the LogDNAhttpLogger Middleware to automatically log all incoming requests/outgoing responses

import { LogDNAhttpLogger } from '@bluepic/logdna-nestjs';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);

  app.use(LogDNAhttpLogger({
    filter: (req, res) => res.statusCode == 500
  }))

  await app.listen(3000);
}
bootstrap();

Exception Filter

You can use the LogDNAhttpExceptionLogger to automatically log exceptions

import { LogDNAhttpExceptionLogger } from '@bluepic/logdna-nestjs';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);

  app.useGlobalFilters(new LogDNAhttpExceptionLogger({
    generateReference: true
  }));

  await app.listen(3000);
}
bootstrap();

License

Distributed under the ISC License. See LICENSE for more information.

Acknowledgements

Keywords

FAQs

Last updated on 13 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc