mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-04-04 15:35:18 +00:00
9 lines
348 B
Rust
9 lines
348 B
Rust
![]() |
use std::sync::Arc;
|
||
|
|
||
|
use metrics::{register_timer, Timer};
|
||
|
|
||
|
lazy_static::lazy_static! {
|
||
|
pub static ref SERIAL_SYNC_FILE_COMPLETED: Arc<dyn Timer> = register_timer("sync_controllers_serial_sync_file_completed");
|
||
|
pub static ref SERIAL_SYNC_CHUNKS_COMPLETED: Arc<dyn Timer> = register_timer("sync_controllers_serial_sync_chunks_completed");
|
||
|
}
|