We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229f481 commit 6f91745Copy full SHA for 6f91745
src/faas/v0/traceProvider.ts
@@ -54,9 +54,11 @@ const newTracerProvider = (): NodeTracerProvider => {
54
55
const processor = localRun
56
? new NoopSpanProcessor()
57
- : new BatchSpanProcessor(new OTLPTraceExporter({
58
- url: 'http://localhost:4317',
59
- }));
+ : new BatchSpanProcessor(
+ new OTLPTraceExporter({
+ url: 'http://localhost:4317',
60
+ })
61
+ );
62
63
provider.addSpanProcessor(processor);
64
provider.register();
0 commit comments