Thank you for the great package.
I am getting some issues.
I am unable to get the service method spans in Datadog.
No tracing with following configs
DatadogTraceModule.forRoot({
controllers: true,
providers: true,
} as any),
Only showing controller spans
DatadogTraceModule.forRoot({
controllers: true,
services: true,
}),
Typescript error with following config
DatadogTraceModule.forRoot({
controllers: true,
providers: true,
}),

When I add span decorator to individual services then I am able to see the traces.