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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
use crate::EndpointMetrics;
use mysten_network::metrics::MetricsCallbackProvider;
use network::metrics::NetworkMetrics;
use prometheus::{
core::{AtomicI64, GenericGauge},
default_registry, register_histogram_vec_with_registry, register_int_counter_vec_with_registry,
register_int_gauge_vec_with_registry, register_int_gauge_with_registry, HistogramVec,
IntCounterVec, IntGauge, IntGaugeVec, Registry,
};
use std::time::Duration;
use tonic::Code;
#[derive(Clone)]
pub(crate) struct Metrics {
pub(crate) endpoint_metrics: Option<EndpointMetrics>,
pub(crate) inbound_network_metrics: Option<NetworkMetrics>,
pub(crate) outbound_network_metrics: Option<NetworkMetrics>,
pub(crate) primary_channel_metrics: Option<PrimaryChannelMetrics>,
pub(crate) node_metrics: Option<PrimaryMetrics>,
}
pub(crate) fn initialise_metrics(metrics_registry: &Registry) -> Metrics {
let endpoint_metrics = EndpointMetrics::new(metrics_registry);
let inbound_network_metrics = NetworkMetrics::new("primary", "inbound", metrics_registry);
let outbound_network_metrics = NetworkMetrics::new("primary", "outbound", metrics_registry);
let primary_channel_metrics = PrimaryChannelMetrics::new(metrics_registry);
let node_metrics = PrimaryMetrics::new(metrics_registry);
Metrics {
node_metrics: Some(node_metrics),
endpoint_metrics: Some(endpoint_metrics),
primary_channel_metrics: Some(primary_channel_metrics),
inbound_network_metrics: Some(inbound_network_metrics),
outbound_network_metrics: Some(outbound_network_metrics),
}
}
#[derive(Clone)]
pub struct PrimaryChannelMetrics {
pub tx_others_digests: IntGauge,
pub tx_our_digests: IntGauge,
pub tx_parents: IntGauge,
pub tx_headers: IntGauge,
pub tx_sync_headers: IntGauge,
pub tx_sync_certificates: IntGauge,
pub tx_headers_loopback: IntGauge,
pub tx_certificates_loopback: IntGauge,
pub tx_primary_messages: IntGauge,
pub tx_helper_requests: IntGauge,
pub tx_get_block_commands: IntGauge,
pub tx_batches: IntGauge,
pub tx_block_removal_commands: IntGauge,
pub tx_batch_removal: IntGauge,
pub tx_block_synchronizer_commands: IntGauge,
pub tx_availability_responses: IntGauge,
pub tx_state_handler: IntGauge,
pub tx_reconfigure: IntGauge,
pub tx_committed_certificates: IntGauge,
pub tx_new_certificates: IntGauge,
}
impl PrimaryChannelMetrics {
pub const NAME_COMMITTED_CERTS: &'static str = "tx_committed_certificates";
pub const DESC_COMMITTED_CERTS: &'static str =
"occupancy of the channel from the `Consensus` to the `primary::Core`";
pub const NAME_NEW_CERTS: &'static str = "tx_new_certificates";
pub const DESC_NEW_CERTS: &'static str =
"occupancy of the channel from the `primary::Core` to the `Consensus`";
pub const NAME_GET_BLOCK_COMMANDS: &'static str = "tx_get_block_commands";
pub const DESC_GET_BLOCK_COMMANDS: &'static str =
"occupancy of the channel from the `primary::ConsensusAPIGrpc` & `executor::Subscriber` to the `primary::BlockWaiter`";
pub fn new(registry: &Registry) -> Self {
Self {
tx_others_digests: register_int_gauge_with_registry!(
"tx_others_digests",
"occupancy of the channel from the `primary::WorkerReceiverHandler` to the `primary::PayloadReceiver`",
registry
).unwrap(),
tx_our_digests: register_int_gauge_with_registry!(
"tx_our_digests",
"occupancy of the channel from the `primary::WorkerReceiverHandler` to the `primary::Proposer`",
registry
).unwrap(),
tx_parents: register_int_gauge_with_registry!(
"tx_parents",
"occupancy of the channel from the `primary::Core` to the `primary::Proposer`",
registry
).unwrap(),
tx_headers: register_int_gauge_with_registry!(
"tx_headers",
"occupancy of the channel from the `primary::Proposer` to the `primary::Core`",
registry
).unwrap(),
tx_sync_headers: register_int_gauge_with_registry!(
"tx_sync_headers",
"occupancy of the channel from the `primary::Synchronizer` to the `primary::HeaderWaiter`",
registry
).unwrap(),
tx_sync_certificates: register_int_gauge_with_registry!(
"tx_sync_certificates",
"occupancy of the channel from the `primary::Synchronizer` to the `primary::CertificaterWaiter`",
registry
).unwrap(),
tx_headers_loopback: register_int_gauge_with_registry!(
"tx_headers_loopback",
"occupancy of the channel from the `primary::HeaderWaiter` to the `primary::Core`",
registry
).unwrap(),
tx_certificates_loopback: register_int_gauge_with_registry!(
"tx_certificates_loopback",
"occupancy of the channel from the `primary::CertificateWaiter` to the `primary::Core`",
registry
).unwrap(),
tx_primary_messages: register_int_gauge_with_registry!(
"tx_primary_messages",
"occupancy of the channel from the `primary::PrimaryReceiverHandler` to the `primary::Core`",
registry
).unwrap(),
tx_helper_requests: register_int_gauge_with_registry!(
"tx_helper_requests",
"occupancy of the channel from the `primary::PrimaryReceiverHandler` to the `primary::Helper`",
registry
).unwrap(),
tx_get_block_commands: register_int_gauge_with_registry!(
"tx_get_block_commands",
"occupancy of the channel from the `primary::ConsensusAPIGrpc` & `executor::Subscriber` to the `primary::BlockWaiter`",
registry
).unwrap(),
tx_batches: register_int_gauge_with_registry!(
"tx_batches",
"occupancy of the channel from the `primary::WorkerReceiverHandler` to the `primary::BlockWaiter`",
registry
).unwrap(),
tx_block_removal_commands: register_int_gauge_with_registry!(
"tx_block_removal_commands",
"occupancy of the channel from the `primary::ConsensusAPIGrpc` to the `primary::BlockRemover`",
registry
).unwrap(),
tx_batch_removal: register_int_gauge_with_registry!(
"tx_batch_removal",
"occupancy of the channel from the `primary::WorkerReceiverHandler` to the `primary::BlockRemover`",
registry
).unwrap(),
tx_block_synchronizer_commands: register_int_gauge_with_registry!(
"tx_block_synchronizer_commands",
"occupancy of the channel from the `primary::BlockSynchronizerHandler` to the `primary::BlockSynchronizer`",
registry
).unwrap(),
tx_availability_responses: register_int_gauge_with_registry!(
"tx_availability_responses",
"occupancy of the channel from the `primary::PrimaryReceiverHandler` to the `primary::BlockSynchronizer`",
registry
).unwrap(),
tx_state_handler: register_int_gauge_with_registry!(
"tx_state_handler",
"occupancy of the channel from the `primary::WorkerReceiverHandler` to the `primary::StateHandler`",
registry
).unwrap(),
tx_reconfigure: register_int_gauge_with_registry!(
"tx_reconfigure",
"occupancy of the channel from the reconfigure notification to most components.",
registry
).unwrap(),
tx_committed_certificates: register_int_gauge_with_registry!(
Self::NAME_COMMITTED_CERTS,
Self::DESC_COMMITTED_CERTS,
registry
).unwrap(),
tx_new_certificates: register_int_gauge_with_registry!(
Self::NAME_NEW_CERTS,
Self::DESC_NEW_CERTS,
registry
).unwrap(),
}
}
pub fn replace_registered_new_certificates_metric(
&mut self,
registry: &Registry,
collector: Box<GenericGauge<AtomicI64>>,
) {
let new_certificates_counter =
IntGauge::new(Self::NAME_NEW_CERTS, Self::DESC_NEW_CERTS).unwrap();
registry
.unregister(Box::new(new_certificates_counter.clone()))
.unwrap();
registry.register(collector).unwrap();
self.tx_new_certificates = new_certificates_counter;
}
pub fn replace_registered_committed_certificates_metric(
&mut self,
registry: &Registry,
collector: Box<GenericGauge<AtomicI64>>,
) {
let committed_certificates_counter =
IntGauge::new(Self::NAME_COMMITTED_CERTS, Self::DESC_COMMITTED_CERTS).unwrap();
registry
.unregister(Box::new(committed_certificates_counter.clone()))
.unwrap();
registry.register(collector).unwrap();
self.tx_committed_certificates = committed_certificates_counter;
}
pub fn replace_registered_get_block_commands_metric(
&mut self,
registry: &Registry,
collector: Box<GenericGauge<AtomicI64>>,
) {
let tx_get_block_commands_counter =
IntGauge::new(Self::NAME_GET_BLOCK_COMMANDS, Self::DESC_GET_BLOCK_COMMANDS).unwrap();
registry
.unregister(Box::new(tx_get_block_commands_counter.clone()))
.unwrap();
registry.register(collector).unwrap();
self.tx_get_block_commands = tx_get_block_commands_counter;
}
}
#[derive(Clone)]
pub struct PrimaryMetrics {
pub headers_processed: IntCounterVec,
pub unique_headers_received: IntCounterVec,
pub headers_suspended: IntCounterVec,
pub certificates_created: IntCounterVec,
pub certificates_processed: IntCounterVec,
pub certificates_suspended: IntCounterVec,
pub batches_received: IntCounterVec,
pub gc_core_latency: HistogramVec,
pub core_cancel_handlers_total: IntGaugeVec,
pub current_round: IntGaugeVec,
pub gc_header_waiter_latency: HistogramVec,
pub pending_elements_header_waiter: IntGaugeVec,
pub parent_requests_header_waiter: IntGaugeVec,
pub waiting_elements_header_waiter: IntGaugeVec,
pub pending_elements_certificate_waiter: IntGaugeVec,
pub waiting_elements_certificate_waiter: IntGaugeVec,
pub votes_dropped_equivocation_protection: IntCounterVec,
}
impl PrimaryMetrics {
pub fn new(registry: &Registry) -> Self {
Self {
headers_processed: register_int_counter_vec_with_registry!(
"headers_processed",
"Number of headers that node processed (others + own)",
&["epoch", "source"],
registry
)
.unwrap(),
unique_headers_received: register_int_counter_vec_with_registry!(
"unique_headers_received",
"Number of unique headers that received for processing (others + own)",
&["epoch", "source"],
registry
)
.unwrap(),
headers_suspended: register_int_counter_vec_with_registry!(
"headers_suspended",
"Number of headers that node suspended processing for",
&["epoch", "reason"],
registry
)
.unwrap(),
certificates_created: register_int_counter_vec_with_registry!(
"certificates_created",
"Number of certificates that node created",
&["epoch"],
registry
)
.unwrap(),
certificates_processed: register_int_counter_vec_with_registry!(
"certificates_processed",
"Number of certificates that node processed (others + own)",
&["epoch", "source"],
registry
)
.unwrap(),
certificates_suspended: register_int_counter_vec_with_registry!(
"certificates_suspended",
"Number of certificates that node suspended processing of",
&["epoch", "reason"],
registry
)
.unwrap(),
batches_received: register_int_counter_vec_with_registry!(
"batches_received",
"Number of batches received - either own or others",
&["worker_id", "source"],
registry
)
.unwrap(),
gc_core_latency: register_histogram_vec_with_registry!(
"gc_core_latency",
"Latency of a the garbage collection process for core module",
&["epoch"],
registry
)
.unwrap(),
core_cancel_handlers_total: register_int_gauge_vec_with_registry!(
"core_cancel_handlers_total",
"Number of cancel handlers in the core module",
&["epoch"],
registry
)
.unwrap(),
current_round: register_int_gauge_vec_with_registry!(
"current_round",
"Current round the node is in",
&["epoch"],
registry
)
.unwrap(),
gc_header_waiter_latency: register_histogram_vec_with_registry!(
"gc_header_waiter_latency",
"Latency of a the garbage collection process for header module",
&["epoch"],
registry
)
.unwrap(),
pending_elements_header_waiter: register_int_gauge_vec_with_registry!(
"pending_elements_header_waiter",
"Number of pending elements in header waiter",
&["epoch"],
registry
)
.unwrap(),
parent_requests_header_waiter: register_int_gauge_vec_with_registry!(
"parent_requests_header_waiter",
"Number of parent requests in header waiter",
&["epoch"],
registry
)
.unwrap(),
waiting_elements_header_waiter: register_int_gauge_vec_with_registry!(
"waiting_elements_header_waiter",
"Number of waiting elements in header waiter",
&["epoch"],
registry
)
.unwrap(),
pending_elements_certificate_waiter: register_int_gauge_vec_with_registry!(
"pending_elements_certificate_waiter",
"Number of pending elements in certificate waiter",
&["epoch"],
registry
)
.unwrap(),
waiting_elements_certificate_waiter: register_int_gauge_vec_with_registry!(
"waiting_elements_certificate_waiter",
"Number of waiting elements in certificate waiter",
&["epoch"],
registry
)
.unwrap(),
votes_dropped_equivocation_protection: register_int_counter_vec_with_registry!(
"votes_dropped_equivocation_protection",
"Number of votes that were requested but not sent due to previously having voted differently",
&["epoch", "source"],
registry
)
.unwrap(),
}
}
}
impl Default for PrimaryMetrics {
fn default() -> Self {
Self::new(default_registry())
}
}
#[derive(Clone)]
pub struct PrimaryEndpointMetrics {
requests_by_route: IntCounterVec,
req_latency_by_route: HistogramVec,
}
impl PrimaryEndpointMetrics {
pub fn new(registry: &Registry) -> Self {
Self {
requests_by_route: register_int_counter_vec_with_registry!(
"primary_requests_by_route",
"Number of requests by route",
&["route", "status", "grpc_status_code"],
registry
)
.unwrap(),
req_latency_by_route: register_histogram_vec_with_registry!(
"primary_req_latency_by_route",
"Latency of a request by route",
&["route", "status", "grpc_status_code"],
registry
)
.unwrap(),
}
}
}
impl MetricsCallbackProvider for PrimaryEndpointMetrics {
fn on_request(&self, _path: String) {
}
fn on_response(&self, path: String, latency: Duration, status: u16, grpc_status_code: Code) {
let code: i32 = grpc_status_code.into();
let labels = [path.as_str(), &status.to_string(), &code.to_string()];
self.requests_by_route.with_label_values(&labels).inc();
let req_latency_secs = latency.as_secs_f64();
self.req_latency_by_route
.with_label_values(&labels)
.observe(req_latency_secs);
}
}
impl Default for PrimaryEndpointMetrics {
fn default() -> Self {
Self::new(default_registry())
}
}