fix: correct time range buckets
Turns out there are 60 seconds in a minute, not 3,600.pull/24376/head
parent
522b1fca4f
commit
0a31afd00d
|
@ -7,7 +7,7 @@ use metric::{
|
|||
|
||||
use super::completion_observer::{CompletedPersist, PersistCompletionObserver};
|
||||
|
||||
const MINUTES: Duration = Duration::from_secs(60 * 60);
|
||||
const MINUTES: Duration = Duration::from_secs(60);
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct ParquetFileInstrumentation<T> {
|
||||
|
|
Loading…
Reference in New Issue