feat: increase trace buffer size (#3614)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Raphael Taylor-Davies 2022-02-02 15:37:50 +00:00 committed by GitHub
parent c2bd9945de
commit b2669a8525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ use observability_deps::tracing::{error, info, warn};
use trace::{span::Span, TraceCollector};
/// Size of the exporter buffer
const CHANNEL_SIZE: usize = 1000;
const CHANNEL_SIZE: usize = 100_000;
/// An `AsyncExport` is a batched async version of `trace::TraceCollector`
#[async_trait]