1.6.7 • Published 3 years ago

dd-trace-nestjs v1.6.7

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

DD-trace

usage

  • install package
    yarn dd-trace-nestjs
  • import package in main file
import tracer from 'dd-trace-nestjs'; //first import

async function bootstrapApi() {
  const { NestFactory } = await import('@nestjs/core');
  const { ApiModule } = await import('./cmd/api.module');

  const app = await NestFactory.create(ApiModule, {
    bufferLogs: true,
    logger: console,
  });

  app.useGlobalInterceptors(new tracer.LoggingHttpInterceptor(["password", "cellphone"]));

  await app.listen(80);
}
1.6.7

3 years ago

1.6.6

3 years ago

1.6.5

3 years ago

1.6.4

3 years ago

1.6.3

3 years ago

1.6.2

3 years ago

1.6.1

3 years ago

1.6.0

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago