forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetrics.rs
More file actions
1315 lines (1112 loc) · 47.3 KB
/
metrics.rs
File metadata and controls
1315 lines (1112 loc) · 47.3 KB
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use std::time::Duration;
use serde::Serialize;
use torrust_tracker_metrics::label::LabelSet;
use torrust_tracker_metrics::metric::MetricName;
use torrust_tracker_metrics::metric_collection::aggregate::avg::Avg;
use torrust_tracker_metrics::metric_collection::aggregate::sum::Sum;
use torrust_tracker_metrics::metric_collection::{Error, MetricCollection};
use torrust_tracker_metrics::metric_name;
use torrust_tracker_primitives::DurationSinceUnixEpoch;
use crate::statistics::{
UDP_TRACKER_SERVER_ERRORS_TOTAL, UDP_TRACKER_SERVER_IPS_BANNED_TOTAL,
UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSED_REQUESTS_TOTAL, UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS,
UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL, UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL,
UDP_TRACKER_SERVER_REQUESTS_BANNED_TOTAL, UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL,
UDP_TRACKER_SERVER_RESPONSES_SENT_TOTAL,
};
/// Metrics collected by the UDP tracker server.
#[derive(Debug, PartialEq, Default, Serialize)]
pub struct Metrics {
/// A collection of metrics.
pub metric_collection: MetricCollection,
}
impl Metrics {
/// # Errors
///
/// Returns an error if the metric does not exist and it cannot be created.
pub fn increase_counter(
&mut self,
metric_name: &MetricName,
labels: &LabelSet,
now: DurationSinceUnixEpoch,
) -> Result<(), Error> {
self.metric_collection.increment_counter(metric_name, labels, now)
}
/// # Errors
///
/// Returns an error if the metric does not exist and it cannot be created.
pub fn set_gauge(
&mut self,
metric_name: &MetricName,
labels: &LabelSet,
value: f64,
now: DurationSinceUnixEpoch,
) -> Result<(), Error> {
self.metric_collection.set_gauge(metric_name, labels, value, now)
}
}
impl Metrics {
#[allow(clippy::cast_precision_loss)]
pub fn recalculate_udp_avg_processing_time_ns(
&mut self,
req_processing_time: Duration,
label_set: &LabelSet,
now: DurationSinceUnixEpoch,
) -> f64 {
self.increment_udp_processed_requests_total(label_set, now);
let processed_requests_total = self.udp_processed_requests_total(label_set) as f64;
let previous_avg = self.udp_avg_processing_time_ns(label_set);
let req_processing_time = req_processing_time.as_nanos() as f64;
// Moving average: https://en.wikipedia.org/wiki/Moving_average
let new_avg = previous_avg as f64 + (req_processing_time - previous_avg as f64) / processed_requests_total;
tracing::debug!(
"Recalculated UDP average processing time for labels {}: {} ns (previous: {} ns, req_processing_time: {} ns, request_processed_total: {})",
label_set,
new_avg,
previous_avg,
req_processing_time,
processed_requests_total
);
self.update_udp_avg_processing_time_ns(new_avg, label_set, now);
new_avg
}
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
fn udp_avg_processing_time_ns(&self, label_set: &LabelSet) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS),
label_set,
)
.unwrap_or_default() as u64
}
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_request_accepted_total(&self, label_set: &LabelSet) -> u64 {
self.metric_collection
.sum(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), label_set)
.unwrap_or_default() as u64
}
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
fn udp_processed_requests_total(&self, label_set: &LabelSet) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSED_REQUESTS_TOTAL),
label_set,
)
.unwrap_or_default() as u64
}
fn update_udp_avg_processing_time_ns(&mut self, new_avg: f64, label_set: &LabelSet, now: DurationSinceUnixEpoch) {
tracing::debug!(
"Updating average processing time metric to {} ns for label set {}",
new_avg,
label_set,
);
match self.set_gauge(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS),
label_set,
new_avg,
now,
) {
Ok(()) => {}
Err(err) => tracing::error!("Failed to set gauge: {}", err),
}
}
fn increment_udp_processed_requests_total(&mut self, label_set: &LabelSet, now: DurationSinceUnixEpoch) {
tracing::debug!("Incrementing processed requests total for label set {}", label_set,);
match self.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSED_REQUESTS_TOTAL),
label_set,
now,
) {
Ok(()) => {}
Err(err) => tracing::error!("Failed to increment counter: {}", err),
}
}
// UDP
/// Total number of UDP (UDP tracker) requests aborted.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_requests_aborted_total(&self) -> u64 {
self.metric_collection
.sum(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL), &LabelSet::empty())
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) requests banned.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_requests_banned_total(&self) -> u64 {
self.metric_collection
.sum(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_BANNED_TOTAL), &LabelSet::empty())
.unwrap_or_default() as u64
}
/// Total number of banned IPs.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_banned_ips_total(&self) -> u64 {
self.metric_collection
.sum(&metric_name!(UDP_TRACKER_SERVER_IPS_BANNED_TOTAL), &LabelSet::empty())
.unwrap_or_default() as u64
}
/// Average processing time for UDP connect requests across all servers (in nanoseconds).
/// This calculates the average of all gauge samples for connect requests.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_avg_connect_processing_time_ns_averaged(&self) -> u64 {
self.metric_collection
.avg(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS),
&[("request_kind", "connect")].into(),
)
.unwrap_or(0.0) as u64
}
/// Average processing time for UDP announce requests across all servers (in nanoseconds).
/// This calculates the average of all gauge samples for announce requests.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_avg_announce_processing_time_ns_averaged(&self) -> u64 {
self.metric_collection
.avg(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS),
&[("request_kind", "announce")].into(),
)
.unwrap_or(0.0) as u64
}
/// Average processing time for UDP scrape requests across all servers (in nanoseconds).
/// This calculates the average of all gauge samples for scrape requests.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp_avg_scrape_processing_time_ns_averaged(&self) -> u64 {
self.metric_collection
.avg(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS),
&[("request_kind", "scrape")].into(),
)
.unwrap_or(0.0) as u64
}
// UDPv4
/// Total number of UDP (UDP tracker) requests from IPv4 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp4_requests_received_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL),
&[("server_binding_address_ip_family", "inet")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) connections from IPv4 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp4_connect_requests_accepted_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&[("server_binding_address_ip_family", "inet"), ("request_kind", "connect")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `announce` requests from IPv4 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp4_announce_requests_accepted_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&[("server_binding_address_ip_family", "inet"), ("request_kind", "announce")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `scrape` requests from IPv4 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp4_scrape_requests_accepted_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&[("server_binding_address_ip_family", "inet"), ("request_kind", "scrape")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) responses from IPv4 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp4_responses_sent_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_RESPONSES_SENT_TOTAL),
&[("server_binding_address_ip_family", "inet")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `error` requests from IPv4 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp4_errors_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_ERRORS_TOTAL),
&[("server_binding_address_ip_family", "inet")].into(),
)
.unwrap_or_default() as u64
}
// UDPv6
/// Total number of UDP (UDP tracker) requests from IPv6 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp6_requests_received_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL),
&[("server_binding_address_ip_family", "inet6")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `connection` requests from IPv6 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp6_connect_requests_accepted_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&[("server_binding_address_ip_family", "inet6"), ("request_kind", "connect")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `announce` requests from IPv6 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp6_announce_requests_accepted_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&[("server_binding_address_ip_family", "inet6"), ("request_kind", "announce")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `scrape` requests from IPv6 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp6_scrape_requests_accepted_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&[("server_binding_address_ip_family", "inet6"), ("request_kind", "scrape")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) responses from IPv6 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp6_responses_sent_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_RESPONSES_SENT_TOTAL),
&[("server_binding_address_ip_family", "inet6")].into(),
)
.unwrap_or_default() as u64
}
/// Total number of UDP (UDP tracker) `error` requests from IPv6 peers.
#[must_use]
#[allow(clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation)]
pub fn udp6_errors_total(&self) -> u64 {
self.metric_collection
.sum(
&metric_name!(UDP_TRACKER_SERVER_ERRORS_TOTAL),
&[("server_binding_address_ip_family", "inet6")].into(),
)
.unwrap_or_default() as u64
}
}
#[cfg(test)]
mod tests {
use torrust_tracker_clock::clock::Time;
use torrust_tracker_metrics::metric_name;
use super::*;
use crate::statistics::{
UDP_TRACKER_SERVER_ERRORS_TOTAL, UDP_TRACKER_SERVER_IPS_BANNED_TOTAL,
UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSED_REQUESTS_TOTAL, UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS,
UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL, UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL,
UDP_TRACKER_SERVER_REQUESTS_BANNED_TOTAL, UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL,
UDP_TRACKER_SERVER_RESPONSES_SENT_TOTAL,
};
use crate::CurrentClock;
#[test]
fn it_should_implement_default() {
let metrics = Metrics::default();
// MetricCollection starts with empty collections
assert_eq!(metrics, Metrics::default());
}
#[test]
fn it_should_implement_debug() {
let metrics = Metrics::default();
let debug_string = format!("{metrics:?}");
assert!(debug_string.contains("Metrics"));
assert!(debug_string.contains("metric_collection"));
}
#[test]
fn it_should_implement_partial_eq() {
let metrics1 = Metrics::default();
let metrics2 = Metrics::default();
assert_eq!(metrics1, metrics2);
}
#[test]
fn it_should_increase_counter_metric() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
let result = metrics.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL), &labels, now);
assert!(result.is_ok());
}
#[test]
fn it_should_increase_counter_metric_with_labels() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet")]);
let result = metrics.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL), &labels, now);
assert!(result.is_ok());
}
#[test]
fn it_should_set_gauge_metric() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
let result = metrics.set_gauge(&metric_name!(UDP_TRACKER_SERVER_IPS_BANNED_TOTAL), &labels, 42.0, now);
assert!(result.is_ok());
}
#[test]
fn it_should_set_gauge_metric_with_labels() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("request_kind", "connect")]);
let result = metrics.set_gauge(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSING_TIME_NS),
&labels,
1000.0,
now,
);
assert!(result.is_ok());
}
#[test]
fn it_should_return_zero_for_udp_processed_requests_total_when_no_data() {
let metrics = Metrics::default();
let labels = LabelSet::from([("request_kind", "connect")]);
assert_eq!(metrics.udp_processed_requests_total(&labels), 0);
}
#[test]
fn it_should_increment_processed_requests_total() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("request_kind", "connect")]);
// Directly increment the counter using the public method
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_PERFORMANCE_AVG_PROCESSED_REQUESTS_TOTAL),
&labels,
now,
)
.unwrap();
assert_eq!(metrics.udp_processed_requests_total(&labels), 1);
}
mod udp_general_metrics {
use super::*;
#[test]
fn it_should_return_zero_for_udp_requests_aborted_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp_requests_aborted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp_requests_aborted() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL), &labels, now)
.unwrap();
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL), &labels, now)
.unwrap();
assert_eq!(metrics.udp_requests_aborted_total(), 2);
}
#[test]
fn it_should_return_zero_for_udp_requests_banned_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp_requests_banned_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp_requests_banned() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
for _ in 0..3 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_BANNED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp_requests_banned_total(), 3);
}
#[test]
fn it_should_return_zero_for_udp_banned_ips_total_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp_banned_ips_total(), 0);
}
#[test]
fn it_should_return_gauge_value_for_udp_banned_ips_total() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
metrics
.set_gauge(&metric_name!(UDP_TRACKER_SERVER_IPS_BANNED_TOTAL), &labels, 10.0, now)
.unwrap();
assert_eq!(metrics.udp_banned_ips_total(), 10);
}
}
mod udpv4_metrics {
use super::*;
#[test]
fn it_should_return_zero_for_udp4_requests_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp4_requests_received_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp4_requests() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet")]);
for _ in 0..5 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_requests_received_total(), 5);
}
#[test]
fn it_should_return_zero_for_udp4_connections_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp4_connect_requests_accepted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp4_connections_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "connect")]);
for _ in 0..3 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_connect_requests_accepted_total(), 3);
}
#[test]
fn it_should_return_zero_for_udp4_announces_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp4_announce_requests_accepted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp4_announces_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "announce")]);
for _ in 0..7 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_announce_requests_accepted_total(), 7);
}
#[test]
fn it_should_return_zero_for_udp4_scrapes_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp4_scrape_requests_accepted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp4_scrapes_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "scrape")]);
for _ in 0..4 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_scrape_requests_accepted_total(), 4);
}
#[test]
fn it_should_return_zero_for_udp4_responses_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp4_responses_sent_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp4_responses() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet")]);
for _ in 0..6 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_RESPONSES_SENT_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_responses_sent_total(), 6);
}
#[test]
fn it_should_return_zero_for_udp4_errors_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp4_errors_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp4_errors_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet")]);
for _ in 0..2 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_ERRORS_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_errors_total(), 2);
}
}
mod udpv6_metrics {
use super::*;
#[test]
fn it_should_return_zero_for_udp6_requests_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp6_requests_received_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp6_requests() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet6")]);
for _ in 0..8 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp6_requests_received_total(), 8);
}
#[test]
fn it_should_return_zero_for_udp6_connections_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp6_connect_requests_accepted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp6_connections_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet6"), ("request_kind", "connect")]);
for _ in 0..4 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp6_connect_requests_accepted_total(), 4);
}
#[test]
fn it_should_return_zero_for_udp6_announces_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp6_announce_requests_accepted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp6_announces_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet6"), ("request_kind", "announce")]);
for _ in 0..9 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp6_announce_requests_accepted_total(), 9);
}
#[test]
fn it_should_return_zero_for_udp6_scrapes_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp6_scrape_requests_accepted_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp6_scrapes_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet6"), ("request_kind", "scrape")]);
for _ in 0..6 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp6_scrape_requests_accepted_total(), 6);
}
#[test]
fn it_should_return_zero_for_udp6_responses_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp6_responses_sent_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp6_responses() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet6")]);
for _ in 0..11 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_RESPONSES_SENT_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp6_responses_sent_total(), 11);
}
#[test]
fn it_should_return_zero_for_udp6_errors_handled_when_no_data() {
let metrics = Metrics::default();
assert_eq!(metrics.udp6_errors_total(), 0);
}
#[test]
fn it_should_return_sum_of_udp6_errors_handled() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::from([("server_binding_address_ip_family", "inet6")]);
for _ in 0..3 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_ERRORS_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp6_errors_total(), 3);
}
}
mod combined_metrics {
use super::*;
#[test]
fn it_should_distinguish_between_ipv4_and_ipv6_metrics() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let ipv4_labels = LabelSet::from([("server_binding_address_ip_family", "inet")]);
let ipv6_labels = LabelSet::from([("server_binding_address_ip_family", "inet6")]);
// Add different counts for IPv4 and IPv6
for _ in 0..3 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL), &ipv4_labels, now)
.unwrap();
}
for _ in 0..7 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_RECEIVED_TOTAL), &ipv6_labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_requests_received_total(), 3);
assert_eq!(metrics.udp6_requests_received_total(), 7);
}
#[test]
fn it_should_distinguish_between_different_request_kinds() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let connect_labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "connect")]);
let announce_labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "announce")]);
let scrape_labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "scrape")]);
// Add different counts for different request kinds
for _ in 0..2 {
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&connect_labels,
now,
)
.unwrap();
}
for _ in 0..5 {
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&announce_labels,
now,
)
.unwrap();
}
for _ in 0..1 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL), &scrape_labels, now)
.unwrap();
}
assert_eq!(metrics.udp4_connect_requests_accepted_total(), 2);
assert_eq!(metrics.udp4_announce_requests_accepted_total(), 5);
assert_eq!(metrics.udp4_scrape_requests_accepted_total(), 1);
}
#[test]
fn it_should_handle_mixed_ipv4_and_ipv6_for_different_request_kinds() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let ipv4_connect_labels = LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "connect")]);
let ipv6_connect_labels =
LabelSet::from([("server_binding_address_ip_family", "inet6"), ("request_kind", "connect")]);
let ipv4_announce_labels =
LabelSet::from([("server_binding_address_ip_family", "inet"), ("request_kind", "announce")]);
let ipv6_announce_labels =
LabelSet::from([("server_binding_address_ip_family", "inet6"), ("request_kind", "announce")]);
// Add mixed IPv4/IPv6 counts
for _ in 0..3 {
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&ipv4_connect_labels,
now,
)
.unwrap();
}
for _ in 0..2 {
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&ipv6_connect_labels,
now,
)
.unwrap();
}
for _ in 0..4 {
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&ipv4_announce_labels,
now,
)
.unwrap();
}
for _ in 0..6 {
metrics
.increase_counter(
&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ACCEPTED_TOTAL),
&ipv6_announce_labels,
now,
)
.unwrap();
}
assert_eq!(metrics.udp4_connect_requests_accepted_total(), 3);
assert_eq!(metrics.udp6_connect_requests_accepted_total(), 2);
assert_eq!(metrics.udp4_announce_requests_accepted_total(), 4);
assert_eq!(metrics.udp6_announce_requests_accepted_total(), 6);
}
}
mod edge_cases {
use super::*;
#[test]
fn it_should_handle_large_counter_values() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
// Add a large number of increments
for _ in 0..1000 {
metrics
.increase_counter(&metric_name!(UDP_TRACKER_SERVER_REQUESTS_ABORTED_TOTAL), &labels, now)
.unwrap();
}
assert_eq!(metrics.udp_requests_aborted_total(), 1000);
}
#[test]
fn it_should_handle_large_gauge_values() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
// Set a large gauge value
metrics
.set_gauge(&metric_name!(UDP_TRACKER_SERVER_IPS_BANNED_TOTAL), &labels, 999_999.0, now)
.unwrap();
assert_eq!(metrics.udp_banned_ips_total(), 999_999);
}
#[test]
fn it_should_handle_zero_gauge_values() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
metrics
.set_gauge(&metric_name!(UDP_TRACKER_SERVER_IPS_BANNED_TOTAL), &labels, 0.0, now)
.unwrap();
assert_eq!(metrics.udp_banned_ips_total(), 0);
}
#[test]
fn it_should_overwrite_gauge_values_when_set_multiple_times() {
let mut metrics = Metrics::default();
let now = CurrentClock::now();
let labels = LabelSet::empty();
// Set initial value