Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add browser traffic in loadgenerator and export traces in frontend #1345

Merged
merged 14 commits into from
Jan 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Inceased delay interval in milliseconds between two consecutive exports
  • Loading branch information
jordibisbal8 committed Jan 23, 2024
commit 7da7c1b42c3ba65e9358ba4919bf2a4ae0d6fb7b
4 changes: 3 additions & 1 deletion src/frontend/utils/telemetry/FrontendTracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ const FrontendTracer = async (collectorString: string) => {
new BatchSpanProcessor(
new OTLPTraceExporter({
url: NEXT_PUBLIC_OTEL_EXPORTER_OTLP_TRACES_ENDPOINT || collectorString || 'http://localhost:4318/v1/traces',
})
}), {
scheduledDelayMillis : 500
}
)
);

Expand Down