Skip to content
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions crates/devtools-core/src/aggregator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ pub struct Aggregator {
new_metadata: Vec<NewMetadata>,

/// Buffered log events.
/// Up to 256 events are retained before the oldest will be dropped.
/// Up to 512 events are retained before the oldest will be dropped.
logs: EventBuf<LogEvent, 512>,
/// Buffered span events.
/// Up to 256 events are retained before the oldest will be dropped.
spans: EventBuf<SpanEvent, 512>,
/// Up to 2048 events are retained before the oldest will be dropped.
spans: EventBuf<SpanEvent, 2048>,

/// All connected clients
watchers: Vec<Watcher>,
Expand Down