Skip to content

Commit 105185d

Browse files
devin-ai-integration[bot]Jayant Krishnamurthy
and
Jayant Krishnamurthy
authored
feat: add minute buckets to request_duration_ms histogram (#2198)
- Add minute-by-minute buckets up to 5 minutes (300000ms) - Add 10-minute bucket (600000ms) - Bump patch version to 6.7.1 Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Jayant Krishnamurthy <jayant@dourolabs.xyz>
1 parent 3a688cc commit 105185d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/fortuna/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/fortuna/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fortuna"
3-
version = "6.7.0"
3+
version = "6.7.1"
44
edition = "2021"
55

66
[dependencies]

apps/fortuna/src/keeper.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ impl Default for KeeperMetrics {
9393
Histogram::new(
9494
vec![
9595
1000.0, 2500.0, 5000.0, 7500.0, 10000.0, 20000.0, 30000.0, 40000.0,
96-
50000.0, 60000.0,
96+
50000.0, 60000.0, 120000.0, 180000.0, 240000.0, 300000.0, 600000.0,
9797
]
9898
.into_iter(),
9999
)

0 commit comments

Comments
 (0)