1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use diem_metrics::{
register_histogram, register_int_counter_vec, register_int_gauge_vec, DurationHistogram,
IntCounterVec, IntGaugeVec,
};
use once_cell::sync::Lazy;
pub static EVENT_PROCESSING_LOOP_BUSY_DURATION_S: Lazy<DurationHistogram> = Lazy::new(|| {
DurationHistogram::new(
register_histogram!(
"simple_onchain_discovery_event_processing_loop_busy_duration_s",
"Histogram of busy time of spent in event processing loop"
)
.unwrap(),
)
});
pub static DISCOVERY_COUNTS: Lazy<IntCounterVec> = Lazy::new(|| {
register_int_counter_vec!(
"diem_simple_onchain_discovery_counts",
"Histogram of busy time of spent in event processing loop",
&["role_type", "network_id", "peer_id", "metric"]
)
.unwrap()
});
pub static NETWORK_KEY_MISMATCH: Lazy<IntGaugeVec> = Lazy::new(|| {
register_int_gauge_vec!(
"diem_network_key_mismatch",
"Gauge of whether the network key mismatches onchain state",
&["role_type", "network_id", "peer_id"]
)
.unwrap()
});