Skip to content

Commit 7da7c1b

Browse files
committed
Inceased delay interval in milliseconds between two consecutive exports
1 parent c4181f8 commit 7da7c1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/frontend/utils/telemetry/FrontendTracer.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ const FrontendTracer = async (collectorString: string) => {
3434
new BatchSpanProcessor(
3535
new OTLPTraceExporter({
3636
url: NEXT_PUBLIC_OTEL_EXPORTER_OTLP_TRACES_ENDPOINT || collectorString || 'http://localhost:4318/v1/traces',
37-
})
37+
}), {
38+
scheduledDelayMillis : 500
39+
}
3840
)
3941
);
4042

0 commit comments

Comments
 (0)