Skip to content

Commit fa8dbac

Browse files
authored
Increase upper bound for inbox size metric (#3742)
## Motivation I've seen inbox size p99 reach half a million during benchmarks ## Proposal Bump it to 2 million ## Test Plan Will deploy a network with this ## Release Plan - Nothing to do / These changes follow the usual release cycle.
1 parent e759945 commit fa8dbac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linera-chain/src/inbox.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static INBOX_SIZE: LazyLock<HistogramVec> = LazyLock::new(|| {
3939
"inbox_size",
4040
"Inbox size",
4141
&[],
42-
exponential_bucket_interval(1.0, 500_000.0),
42+
exponential_bucket_interval(1.0, 2_000_000.0),
4343
)
4444
});
4545

0 commit comments

Comments
 (0)