Skip to content

Commit

Permalink
chore(derive): refine channel frame count buckets
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Jul 12, 2024
1 parent a78b98e commit 94902c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/derive/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const RESPONSE_TIME_CUSTOM_BUCKETS: &[f64; 18] = &[
0.1, 0.2, 0.5, 0.8, 1.0,
];

const FRAME_COUNT_BUCKETS: &[f64; 8] = &[1.0, 2.0, 5.0, 20.0, 50.0, 200.0, 500.0, 1000.0];
const FRAME_COUNT_BUCKETS: &[f64; 10] = &[1.0, 2.0, 3.0, 5.0, 8.0, 10.0, 12.0, 15.0, 18.0, 20.0];

lazy_static! {
/// Tracks the L1 origin for the L1 Traversal Stage.
Expand Down

0 comments on commit 94902c3

Please sign in to comment.