Skip to content

Commit

Permalink
Put batch size back up as smaller size didn't help
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Oct 23, 2023
1 parent 1409deb commit 4b6cfb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/otel/otel.client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ provider.addSpanProcessor(
new BatchSpanProcessor(exporter, {
// max number of spans pulled from the qeuue and exported in a single batch
// this can't be much higher or the export will be too big for the sendBeacon() API
maxExportBatchSize: 10,
maxExportBatchSize: 15,
// minimum time between exports
scheduledDelayMillis: 1000,
maxQueueSize: 5000, // default: 2048
Expand Down

0 comments on commit 4b6cfb1

Please sign in to comment.