Skip to content

Commit 729f6e1

Browse files
authored
fix(metrics-util): Replace std AtomicU64 with metrics (#585)
1 parent b7ddff7 commit 729f6e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

metrics-util/src/storage/reservoir.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
//! An atomic sampling reservoir.
22
3+
use metrics::atomics::AtomicU64;
34
use std::{
45
cell::UnsafeCell,
56
sync::{
67
atomic::{
7-
AtomicBool, AtomicU64, AtomicUsize,
8+
AtomicBool, AtomicUsize,
89
Ordering::{Acquire, Relaxed, Release},
910
},
1011
Mutex,

0 commit comments

Comments
 (0)