1.6.7 • Published 2 years ago

dd-trace-nestjs v1.6.7

Weekly downloads
-
License
ISC
Repository
-
Last release
2 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

2 years ago

1.6.6

2 years ago

1.6.5

2 years ago

1.6.4

2 years ago

1.6.3

2 years ago

1.6.2

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.0

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago