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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
use core::fmt::{Display, Error as FmtError, Formatter};
use std::{
    ops::Range,
    sync::Mutex,
    time::{Duration, Instant},
};

use dashmap::{DashMap, DashSet};
use opentelemetry::{
    global,
    metrics::{Counter, ObservableGauge, UpDownCounter},
    Context, KeyValue,
};
use opentelemetry_prometheus::PrometheusExporter;
use prometheus::proto::MetricFamily;

use ibc_relayer_types::{
    applications::transfer::Coin,
    core::ics24_host::identifier::{ChainId, ChannelId, ClientId, PortId},
    signer::Signer,
};

use tendermint::Time;

use crate::{broadcast_error::BroadcastError, path_identifier::PathIdentifier};

const EMPTY_BACKLOG_SYMBOL: u64 = 0;
const BACKLOG_CAPACITY: usize = 1000;
const BACKLOG_RESET_THRESHOLD: usize = 900;

const QUERY_TYPES_CACHE: [&str; 4] = [
    "query_latest_height",
    "query_client_state",
    "query_connection",
    "query_channel",
];

const QUERY_TYPES: [&str; 26] = [
    "query_latest_height",
    "query_block",
    "query_blocks",
    "query_packet_events",
    "query_txs",
    "query_next_sequence_receive",
    "query_unreceived_acknowledgements",
    "query_packet_acknowledgements",
    "query_unreceived_packets",
    "query_packet_commitments",
    "query_channel_client_state",
    "query_channel",
    "query_channels",
    "query_connection_channels",
    "query_connection",
    "query_connections",
    "query_client_connections",
    "query_consensus_state",
    "query_consensus_states",
    "query_upgraded_consensus_state",
    "query_client_state",
    "query_clients",
    "query_application_status",
    "query_commitment_prefix",
    "query_latest_height",
    "query_staking_params",
];

// Constant value used to define the number of seconds
// the rewarded fees Cache value live.
// Current value is 7 days.
const FEE_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 7);

#[derive(Copy, Clone, Debug)]
pub enum WorkerType {
    Client,
    Connection,
    Channel,
    Packet,
    Wallet,
    CrossChainQuery,
}

impl Display for WorkerType {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), FmtError> {
        match self {
            Self::Client => write!(f, "client"),
            Self::Connection => write!(f, "connection"),
            Self::Channel => write!(f, "channel"),
            Self::Packet => write!(f, "packet"),
            Self::Wallet => write!(f, "wallet"),
            Self::CrossChainQuery => write!(f, "cross-chain-query"),
        }
    }
}

pub struct TelemetryState {
    exporter: PrometheusExporter,

    /// Number of workers per type
    workers: UpDownCounter<i64>,

    /// Number of client update messages submitted per client
    client_updates_submitted: Counter<u64>,

    /// Number of client update skipped due to consensus state already
    /// existing
    client_updates_skipped: Counter<u64>,

    /// Number of misbehaviours detected and submitted per client
    client_misbehaviours_submitted: Counter<u64>,

    /// Number of confirmed receive packets per channel
    receive_packets_confirmed: Counter<u64>,

    /// Number of confirmed acknowledgment packets per channel
    acknowledgment_packets_confirmed: Counter<u64>,

    /// Number of confirmed timeout packets per channel
    timeout_packets_confirmed: Counter<u64>,

    /// Number of queries submitted by Hermes, per chain and query type
    queries: Counter<u64>,

    /// Number of cache hits for queries submitted by Hermes, per chain and query type
    queries_cache_hits: Counter<u64>,

    /// Number of times Hermes reconnected to the websocket endpoint, per chain
    ws_reconnect: Counter<u64>,

    /// How many IBC events did Hermes receive via the WebSocket subscription, per chain
    ws_events: Counter<u64>,

    /// Number of messages submitted to a specific chain
    messages_submitted: Counter<u64>,

    /// The balance of each wallet Hermes uses per chain
    wallet_balance: ObservableGauge<f64>,

    /// Indicates the latency for all transactions submitted to a specific chain,
    /// i.e. the difference between the moment when Hermes received a batch of events
    /// until the corresponding transaction(s) were submitted. Milliseconds.
    tx_latency_submitted: ObservableGauge<u64>,

    /// Indicates the latency for all transactions submitted to a specific chain,
    /// i.e. the difference between the moment when Hermes received a batch of events
    /// until the corresponding transaction(s) were confirmed. Milliseconds.
    tx_latency_confirmed: ObservableGauge<u64>,

    /// Records the time at which we started processing an event batch.
    /// Used for computing the `tx_latency` metric.
    in_flight_events: moka::sync::Cache<String, Instant>,

    /// Number of SendPacket events received
    send_packet_events: Counter<u64>,

    /// Number of WriteAcknowledgement events received
    acknowledgement_events: Counter<u64>,

    /// Number of Timeout events received
    timeout_events: Counter<u64>,

    /// Number of SendPacket events received during the initial and periodic clearing
    cleared_send_packet_events: Counter<u64>,

    /// Number of WriteAcknowledgement events received during the initial and periodic clearing
    cleared_acknowledgment_events: Counter<u64>,

    /// Records the sequence number of the oldest pending packet. This corresponds to
    /// the sequence number of the oldest SendPacket event for which no
    /// WriteAcknowledgement or Timeout events have been received. The value is 0 if all the
    /// SendPacket events were relayed.
    backlog_oldest_sequence: ObservableGauge<u64>,

    /// Record the timestamp of the last time the `backlog_*` metrics have been updated.
    /// The timestamp is the time passed since since the unix epoch in seconds.
    backlog_latest_update_timestamp: ObservableGauge<u64>,

    /// Records the length of the backlog, i.e., how many packets are pending.
    backlog_size: ObservableGauge<u64>,

    /// Stores the backlogs for all the paths the relayer is active on.
    /// This is a map of multiple inner backlogs, one inner backlog per path.
    ///
    /// Each inner backlog is represented as a [`DashMap`].
    /// Each inner backlog captures the sequence numbers & timestamp for all SendPacket events
    /// that the relayer observed, and for which there was no associated Acknowledgement or
    /// Timeout event.
    backlogs: DashMap<PathIdentifier, DashMap<u64, u64>>,

    /// Total amount of fees received from ICS29 fees.
    fee_amounts: Counter<u64>,

    /// List of addresses for which rewarded fees from ICS29 should be recorded.
    visible_fee_addresses: DashSet<String>,

    /// Vector of rewarded fees stored in a moka Cache value
    cached_fees: Mutex<Vec<moka::sync::Cache<String, u64>>>,

    /// Sum of rewarded fees over the past FEE_LIFETIME seconds
    period_fees: ObservableGauge<u64>,

    /// Number of errors observed by Hermes when broadcasting a Tx
    broadcast_errors: Counter<u64>,

    /// Number of errors observed by Hermes when simulating a Tx
    simulate_errors: Counter<u64>,

    /// The EIP-1559 base fee queried
    dynamic_gas_queried_fees: ObservableGauge<f64>,

    /// The EIP-1559 base fee paid
    dynamic_gas_paid_fees: ObservableGauge<f64>,

    /// The EIP-1559 base fee successfully queried
    dynamic_gas_queried_success_fees: ObservableGauge<f64>,

    /// Number of ICS-20 packets filtered because the memo and/or the receiver fields were exceeding the configured limits
    filtered_packets: Counter<u64>,
}

impl TelemetryState {
    pub fn new(
        tx_latency_submitted_range: Range<u64>,
        tx_latency_submitted_buckets: u64,
        tx_latency_confirmed_range: Range<u64>,
        tx_latency_confirmed_buckets: u64,
    ) -> Self {
        use opentelemetry::sdk::export::metrics::aggregation;
        use opentelemetry::sdk::metrics::{controllers, processors};

        let controller = controllers::basic(processors::factory(
            CustomAggregatorSelector::new(
                tx_latency_submitted_range,
                tx_latency_submitted_buckets,
                tx_latency_confirmed_range,
                tx_latency_confirmed_buckets,
            ),
            aggregation::cumulative_temporality_selector(),
        ))
        .build();

        let exporter = opentelemetry_prometheus::ExporterBuilder::new(controller).init();

        let meter = global::meter("hermes");

        Self {
            exporter,

            workers: meter
                .i64_up_down_counter("workers")
                .with_description("Number of workers")
                .init(),

            client_updates_submitted: meter
                .u64_counter("client_updates_submitted")
                .with_description("Number of client update messages submitted")
                .init(),

            client_updates_skipped: meter
                .u64_counter("client_updates_skipped")
                .with_description("Number of client update messages skipped")
                .init(),

            client_misbehaviours_submitted: meter
                .u64_counter("client_misbehaviours_submitted")
                .with_description("Number of misbehaviours detected and submitted")
                .init(),

            receive_packets_confirmed: meter
                .u64_counter("receive_packets_confirmed")
                .with_description("Number of confirmed receive packets. Available if relayer runs with Tx confirmation enabled")
                .init(),

            acknowledgment_packets_confirmed: meter
                .u64_counter("acknowledgment_packets_confirmed")
                .with_description("Number of confirmed acknowledgment packets. Available if relayer runs with Tx confirmation enabled")
                .init(),

            timeout_packets_confirmed: meter
                .u64_counter("timeout_packets_confirmed")
                .with_description("Number of confirmed timeout packets. Available if relayer runs with Tx confirmation enabled")
                .init(),

            queries: meter
                .u64_counter("queries")
                .with_description(
                    "Number of queries submitted by Hermes",
                )
                .init(),

            queries_cache_hits: meter
                .u64_counter("queries_cache_hits")
                .with_description("Number of cache hits for queries submitted by Hermes")
                .init(),

            ws_reconnect: meter
                .u64_counter("ws_reconnect")
                .with_description("Number of times Hermes reconnected to the websocket endpoint")
                .init(),

            ws_events: meter
                .u64_counter("ws_events")
                .with_description("How many IBC events did Hermes receive via the websocket subscription")
                .init(),

            messages_submitted: meter
                .u64_counter("messages_submitted")
                .with_description("Number of messages submitted to a specific chain")
                .init(),

            wallet_balance: meter
                .f64_observable_gauge("wallet_balance")
                .with_description("The balance of each wallet Hermes uses per chain. Please note that when converting the balance to f64 a loss in precision might be introduced in the displayed value")
                .init(),

            send_packet_events: meter
                .u64_counter("send_packet_events")
                .with_description("Number of SendPacket events received")
                .init(),

            acknowledgement_events: meter
                .u64_counter("acknowledgement_events")
                .with_description("Number of WriteAcknowledgement events received")
                .init(),

            timeout_events: meter
                .u64_counter("timeout_events")
                .with_description("Number of TimeoutPacket events received")
                .init(),

            cleared_send_packet_events: meter
                .u64_counter("cleared_send_packet_events")
                .with_description("Number of SendPacket events received during the initial and periodic clearing")
                .init(),

            cleared_acknowledgment_events: meter
                .u64_counter("cleared_acknowledgment_events")
                .with_description("Number of WriteAcknowledgement events received during the initial and periodic clearing")
                .init(),

            tx_latency_submitted: meter
                .u64_observable_gauge("tx_latency_submitted")
                .with_unit(Unit::new("milliseconds"))
                .with_description("The latency for all transactions submitted to a specific chain, \
                    i.e. the difference between the moment when Hermes received a batch of events \
                    and when it submitted the corresponding transaction(s). Milliseconds.")
                .init(),

            tx_latency_confirmed: meter
                .u64_observable_gauge("tx_latency_confirmed")
                .with_unit(Unit::new("milliseconds"))
                .with_description("The latency for all transactions submitted & confirmed to a specific chain, \
                    i.e. the difference between the moment when Hermes received a batch of events \
                    until the corresponding transaction(s) were confirmed. Milliseconds.")
                .init(),

            in_flight_events: moka::sync::Cache::builder()
                .time_to_live(Duration::from_secs(60 * 60)) // Remove entries after 1 hour
                .time_to_idle(Duration::from_secs(30 * 60)) // Remove entries if they have been idle for 30 minutes
                .build(),

            backlogs: DashMap::new(),

            backlog_oldest_sequence: meter
                .u64_observable_gauge("backlog_oldest_sequence")
                .with_description("Sequence number of the oldest SendPacket event in the backlog")
                .init(),

            backlog_latest_update_timestamp: meter
                .u64_observable_gauge("backlog_latest_update_timestamp")
                .with_unit(Unit::new("seconds"))
                .with_description("Local timestamp for the last time the backlog metrics have been updated")
                .init(),

            backlog_size: meter
                .u64_observable_gauge("backlog_size")
                .with_description("Total number of SendPacket events in the backlog")
                .init(),

            fee_amounts: meter
                .u64_counter("ics29_fee_amounts")
                .with_description("Total amount received from ICS29 fees")
                .init(),

            visible_fee_addresses: DashSet::new(),

            cached_fees: Mutex::new(Vec::new()),

            period_fees: meter
                .u64_observable_gauge("ics29_period_fees")
                .with_description("Amount of ICS29 fees rewarded over the past 7 days")
                .init(),

            broadcast_errors: meter
                .u64_counter("broadcast_errors")
                .with_description(
                    "Number of errors observed by Hermes when broadcasting a Tx",
                )
                .init(),

            simulate_errors: meter
                .u64_counter("simulate_errors")
                .with_description(
                    "Number of errors observed by Hermes when simulating a Tx",
                )
                .init(),

            dynamic_gas_queried_fees: meter
                .f64_observable_gauge("dynamic_gas_queried_fees")
                .with_description("The EIP-1559 base fee queried")
                .init(),

            dynamic_gas_paid_fees: meter
                .f64_observable_gauge("dynamic_gas_paid_fees")
                .with_description("The EIP-1559 base fee paid")
                .init(),

            dynamic_gas_queried_success_fees: meter
                .f64_observable_gauge("dynamic_gas_queried_fees")
                .with_description("The EIP-1559 base fee successfully queried")
                .init(),

            filtered_packets: meter
                .u64_counter("filtered_packets")
                .with_description("Number of ICS-20 packets filtered because the memo and/or the receiver fields were exceeding the configured limits")
                .init(),
        }
    }

    /// Gather the metrics for export
    pub fn gather(&self) -> Vec<MetricFamily> {
        self.exporter.registry().gather()
    }

    pub fn init_worker_by_type(&self, worker_type: WorkerType) {
        self.worker(worker_type, 0);
    }

    pub fn init_per_chain(&self, chain_id: &ChainId) {
        let cx = Context::current();

        let labels = &[KeyValue::new("chain", chain_id.to_string())];

        self.ws_reconnect.add(&cx, 0, labels);
        self.ws_events.add(&cx, 0, labels);
        self.messages_submitted.add(&cx, 0, labels);

        self.init_queries(chain_id);
    }

    pub fn init_per_channel(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        src_channel: &ChannelId,
        dst_channel: &ChannelId,
        src_port: &PortId,
        dst_port: &PortId,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("src_chain", src_chain.to_string()),
            KeyValue::new("dst_chain", dst_chain.to_string()),
            KeyValue::new("src_channel", src_channel.to_string()),
            KeyValue::new("dst_channel", dst_channel.to_string()),
            KeyValue::new("src_port", src_port.to_string()),
            KeyValue::new("dst_port", dst_port.to_string()),
        ];

        self.receive_packets_confirmed.add(&cx, 0, labels);
        self.acknowledgment_packets_confirmed.add(&cx, 0, labels);
        self.timeout_packets_confirmed.add(&cx, 0, labels);
    }

    pub fn init_per_path(
        &self,
        chain: &ChainId,
        counterparty: &ChainId,
        channel: &ChannelId,
        port: &PortId,
        clear_packets: bool,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain.to_string()),
            KeyValue::new("counterparty", counterparty.to_string()),
            KeyValue::new("channel", channel.to_string()),
            KeyValue::new("port", port.to_string()),
        ];

        self.send_packet_events.add(&cx, 0, labels);
        self.acknowledgement_events.add(&cx, 0, labels);
        self.timeout_events.add(&cx, 0, labels);

        if clear_packets {
            self.cleared_send_packet_events.add(&cx, 0, labels);
            self.cleared_acknowledgment_events.add(&cx, 0, labels);
        }

        self.backlog_oldest_sequence.observe(&cx, 0, labels);
        self.backlog_latest_update_timestamp.observe(&cx, 0, labels);
        self.backlog_size.observe(&cx, 0, labels);
    }

    pub fn init_per_client(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        client: &ClientId,
        misbehaviour: bool,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("src_chain", src_chain.to_string()),
            KeyValue::new("dst_chain", dst_chain.to_string()),
            KeyValue::new("client", client.to_string()),
        ];

        self.client_updates_submitted.add(&cx, 0, labels);
        self.client_updates_skipped.add(&cx, 0, labels);

        if misbehaviour {
            self.client_misbehaviours_submitted.add(&cx, 0, labels);
        }
    }

    fn init_queries(&self, chain_id: &ChainId) {
        let cx = Context::current();

        for query_type in QUERY_TYPES {
            let labels = &[
                KeyValue::new("chain", chain_id.to_string()),
                KeyValue::new("query_type", query_type),
            ];

            self.queries.add(&cx, 0, labels);
        }

        for query_type in QUERY_TYPES_CACHE {
            let labels = &[
                KeyValue::new("chain", chain_id.to_string()),
                KeyValue::new("query_type", query_type),
            ];

            self.queries_cache_hits.add(&cx, 0, labels);
        }
    }

    /// Update the number of workers per object
    pub fn worker(&self, worker_type: WorkerType, count: i64) {
        let cx = Context::current();
        let labels = &[KeyValue::new("type", worker_type.to_string())];
        self.workers.add(&cx, count, labels);
    }

    /// Update the number of client updates per client
    pub fn client_updates_submitted(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        client: &ClientId,
        count: u64,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("src_chain", src_chain.to_string()),
            KeyValue::new("dst_chain", dst_chain.to_string()),
            KeyValue::new("client", client.to_string()),
        ];

        self.client_updates_submitted.add(&cx, count, labels);
    }

    /// Update the number of client updates skipped per client
    pub fn client_updates_skipped(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        client: &ClientId,
        count: u64,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("src_chain", src_chain.to_string()),
            KeyValue::new("dst_chain", dst_chain.to_string()),
            KeyValue::new("client", client.to_string()),
        ];

        self.client_updates_skipped.add(&cx, count, labels);
    }

    /// Number of client misbehaviours per client
    pub fn client_misbehaviours_submitted(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        client: &ClientId,
        count: u64,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("src_chain", src_chain.to_string()),
            KeyValue::new("dst_chain", dst_chain.to_string()),
            KeyValue::new("client", client.to_string()),
        ];

        self.client_misbehaviours_submitted.add(&cx, count, labels);
    }

    /// Number of receive packets relayed, per channel
    #[allow(clippy::too_many_arguments)]
    pub fn receive_packets_confirmed(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        src_channel: &ChannelId,
        dst_channel: &ChannelId,
        src_port: &PortId,
        dst_port: &PortId,
        count: u64,
    ) {
        let cx = Context::current();

        if count > 0 {
            let labels = &[
                KeyValue::new("src_chain", src_chain.to_string()),
                KeyValue::new("dst_chain", dst_chain.to_string()),
                KeyValue::new("src_channel", src_channel.to_string()),
                KeyValue::new("dst_channel", dst_channel.to_string()),
                KeyValue::new("src_port", src_port.to_string()),
                KeyValue::new("dst_port", dst_port.to_string()),
            ];

            self.receive_packets_confirmed.add(&cx, count, labels);
        }
    }

    /// Number of acknowledgment packets relayed, per channel
    #[allow(clippy::too_many_arguments)]
    pub fn acknowledgment_packets_confirmed(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        src_channel: &ChannelId,
        dst_channel: &ChannelId,
        src_port: &PortId,
        dst_port: &PortId,
        count: u64,
    ) {
        let cx = Context::current();

        if count > 0 {
            let labels = &[
                KeyValue::new("src_chain", src_chain.to_string()),
                KeyValue::new("dst_chain", dst_chain.to_string()),
                KeyValue::new("src_channel", src_channel.to_string()),
                KeyValue::new("dst_channel", dst_channel.to_string()),
                KeyValue::new("src_port", src_port.to_string()),
                KeyValue::new("dst_port", dst_port.to_string()),
            ];

            self.acknowledgment_packets_confirmed
                .add(&cx, count, labels);
        }
    }

    /// Number of timeout packets relayed, per channel
    #[allow(clippy::too_many_arguments)]
    pub fn timeout_packets_confirmed(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        src_channel: &ChannelId,
        dst_channel: &ChannelId,
        src_port: &PortId,
        dst_port: &PortId,
        count: u64,
    ) {
        let cx = Context::current();

        if count > 0 {
            let labels = &[
                KeyValue::new("src_chain", src_chain.to_string()),
                KeyValue::new("dst_chain", dst_chain.to_string()),
                KeyValue::new("src_channel", src_channel.to_string()),
                KeyValue::new("dst_channel", dst_channel.to_string()),
                KeyValue::new("src_port", src_port.to_string()),
                KeyValue::new("dst_port", dst_port.to_string()),
            ];

            self.timeout_packets_confirmed.add(&cx, count, labels);
        }
    }

    /// Number of queries emitted by the relayer, per chain and query type
    pub fn query(&self, chain_id: &ChainId, query_type: &'static str) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("query_type", query_type),
        ];

        self.queries.add(&cx, 1, labels);
    }

    /// Number of cache hits for queries emitted by the relayer, per chain and query type
    pub fn queries_cache_hits(&self, chain_id: &ChainId, query_type: &'static str) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("query_type", query_type),
        ];

        self.queries_cache_hits.add(&cx, 1, labels);
    }

    /// Number of time the relayer had to reconnect to the WebSocket endpoint, per chain
    pub fn ws_reconnect(&self, chain_id: &ChainId) {
        let cx = Context::current();

        let labels = &[KeyValue::new("chain", chain_id.to_string())];

        self.ws_reconnect.add(&cx, 1, labels);
    }

    /// How many IBC events did Hermes receive via the WebSocket subscription, per chain
    pub fn ws_events(&self, chain_id: &ChainId, count: u64) {
        let cx = Context::current();

        let labels = &[KeyValue::new("chain", chain_id.to_string())];

        self.ws_events.add(&cx, count, labels);
    }

    /// How many messages Hermes submitted to the chain
    pub fn messages_submitted(&self, chain_id: &ChainId, count: u64) {
        let cx = Context::current();

        let labels = &[KeyValue::new("chain", chain_id.to_string())];

        self.messages_submitted.add(&cx, count, labels);
    }

    /// The balance in each wallet that Hermes is using, per account, denom and chain.
    /// The amount given is of unit: 10^6 * `denom`
    pub fn wallet_balance(&self, chain_id: &ChainId, account: &str, amount: f64, denom: &str) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("account", account.to_string()),
            KeyValue::new("denom", denom.to_string()),
        ];

        self.wallet_balance.observe(&cx, amount, labels);
    }

    pub fn received_event_batch(&self, tracking_id: impl ToString) {
        self.in_flight_events
            .insert(tracking_id.to_string(), Instant::now());
    }

    pub fn tx_submitted(
        &self,
        tx_count: usize,
        tracking_id: impl ToString,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let tracking_id = tracking_id.to_string();

        if let Some(start) = self.in_flight_events.get(&tracking_id) {
            let latency = start.elapsed().as_millis() as u64;

            let labels = &[
                // KeyValue::new("tracking_id", tracking_id),
                KeyValue::new("chain", chain_id.to_string()),
                KeyValue::new("counterparty", counterparty_chain_id.to_string()),
                KeyValue::new("channel", channel_id.to_string()),
                KeyValue::new("port", port_id.to_string()),
            ];

            for _ in 0..tx_count {
                self.tx_latency_submitted.observe(&cx, latency, labels);
            }
        }
    }

    pub fn tx_confirmed(
        &self,
        tx_count: usize,
        tracking_id: impl ToString,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let tracking_id = tracking_id.to_string();

        if let Some(start) = self.in_flight_events.get(&tracking_id) {
            let latency = start.elapsed().as_millis() as u64;

            let labels = &[
                // KeyValue::new("tracking_id", tracking_id),
                KeyValue::new("chain", chain_id.to_string()),
                KeyValue::new("counterparty", counterparty_chain_id.to_string()),
                KeyValue::new("channel", channel_id.to_string()),
                KeyValue::new("port", port_id.to_string()),
            ];

            for _ in 0..tx_count {
                self.tx_latency_confirmed.observe(&cx, latency, labels);
            }
        }
    }

    pub fn send_packet_events(
        &self,
        _seq_nr: u64,
        _height: u64,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        self.send_packet_events.add(&cx, 1, labels);
    }

    pub fn acknowledgement_events(
        &self,
        _seq_nr: u64,
        _height: u64,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        self.acknowledgement_events.add(&cx, 1, labels);
    }

    pub fn timeout_events(
        &self,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        self.timeout_events.add(&cx, 1, labels);
    }

    pub fn cleared_send_packet_events(
        &self,
        _seq_nr: u64,
        _height: u64,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let labels: &[KeyValue; 4] = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        self.cleared_send_packet_events.add(&cx, 1, labels);
    }

    pub fn cleared_acknowledgment_events(
        &self,
        _seq_nr: u64,
        _height: u64,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        let labels: &[KeyValue; 4] = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        self.cleared_acknowledgment_events.add(&cx, 1, labels);
    }

    /// Inserts in the backlog a new event for the given sequence number.
    /// This happens when the relayer observed a new SendPacket event.
    pub fn backlog_insert(
        &self,
        seq_nr: u64,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        // Unique identifier for a chain/channel/port.
        let path_uid: PathIdentifier = PathIdentifier::new(
            chain_id.to_string(),
            channel_id.to_string(),
            port_id.to_string(),
        );

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        // Retrieve local timestamp when this SendPacket event was recorded.
        let now = Time::now();
        let timestamp = match now.duration_since(Time::unix_epoch()) {
            Ok(ts) => ts.as_secs(),
            Err(_) => 0,
        };

        // Update the backlog with the incoming data and retrieve the oldest values
        let (oldest_sn, total) = if let Some(path_backlog) = self.backlogs.get(&path_uid) {
            // Avoid having the inner backlog map growing more than a given threshold, by removing
            // the oldest sequence number entry.
            if path_backlog.len() > BACKLOG_RESET_THRESHOLD {
                if let Some(min) = path_backlog.iter().map(|v| *v.key()).min() {
                    path_backlog.remove(&min);
                }
            }
            path_backlog.insert(seq_nr, timestamp);

            // Return the oldest event information to be recorded in telemetry
            if let Some(min) = path_backlog.iter().map(|v| *v.key()).min() {
                (min, path_backlog.len() as u64)
            } else {
                // We just inserted a new key/value, so this else branch is unlikely to activate,
                // but it can happen in case of concurrent updates to the backlog.
                (EMPTY_BACKLOG_SYMBOL, EMPTY_BACKLOG_SYMBOL)
            }
        } else {
            // If there is no inner backlog for this path, create a new map to store it.
            let new_path_backlog = DashMap::with_capacity(BACKLOG_CAPACITY);
            new_path_backlog.insert(seq_nr, timestamp);
            // Record it in the global backlog
            self.backlogs.insert(path_uid, new_path_backlog);

            // Return the current event information to be recorded in telemetry
            (seq_nr, 1)
        };

        // Update metrics to reflect the new state of the backlog
        self.backlog_oldest_sequence.observe(&cx, oldest_sn, labels);
        self.backlog_latest_update_timestamp
            .observe(&cx, timestamp, labels);
        self.backlog_size.observe(&cx, total, labels);
    }

    /// Inserts in the backlog a new event for the given sequence number.
    /// This happens when the relayer observed a new SendPacket event.
    pub fn update_backlog(
        &self,
        sequences: Vec<u64>,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        // Unique identifier for a chain/channel/port.
        let path_uid: PathIdentifier = PathIdentifier::new(
            chain_id.to_string(),
            channel_id.to_string(),
            port_id.to_string(),
        );

        // This condition is done in order to avoid having an incorrect `backlog_latest_update_timestamp`.
        // If the sequences is an empty vector by removing the entries using `backlog_remove` the `backlog_latest_update_timestamp`
        // will only be updated if the current backlog is not empty.
        // If the sequences is not empty, then it is possible to simple remove the backlog for that path and insert the sequences.
        if sequences.is_empty() {
            if let Some(path_backlog) = self.backlogs.get(&path_uid) {
                let current_keys: Vec<u64> = path_backlog
                    .value()
                    .iter()
                    .map(|entry| *entry.key())
                    .collect();

                for key in current_keys.iter() {
                    self.backlog_remove(*key, chain_id, channel_id, port_id, counterparty_chain_id)
                }
            }
        } else {
            self.backlogs.remove(&path_uid);
            for key in sequences.iter() {
                self.backlog_insert(*key, chain_id, channel_id, port_id, counterparty_chain_id)
            }
        }
    }

    /// Evicts from the backlog the event for the given sequence number.
    /// Removing events happens when the relayer observed either an acknowledgment
    /// or a timeout for a packet sequence number, which means that the corresponding
    /// packet was relayed.
    pub fn backlog_remove(
        &self,
        seq_nr: u64,
        chain_id: &ChainId,
        channel_id: &ChannelId,
        port_id: &PortId,
        counterparty_chain_id: &ChainId,
    ) {
        let cx = Context::current();

        // Unique identifier for a chain/channel/port path.
        let path_uid: PathIdentifier = PathIdentifier::new(
            chain_id.to_string(),
            channel_id.to_string(),
            port_id.to_string(),
        );

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("counterparty", counterparty_chain_id.to_string()),
            KeyValue::new("channel", channel_id.to_string()),
            KeyValue::new("port", port_id.to_string()),
        ];

        // Retrieve local timestamp when this SendPacket event was recorded.
        let now = Time::now();
        let timestamp = match now.duration_since(Time::unix_epoch()) {
            Ok(ts) => ts.as_secs(),
            Err(_) => 0,
        };

        if let Some(path_backlog) = self.backlogs.get(&path_uid) {
            if path_backlog.remove(&seq_nr).is_some() {
                // If the entry was removed update the latest update timestamp.
                self.backlog_latest_update_timestamp
                    .observe(&cx, timestamp, labels);
                // The oldest pending sequence number is the minimum key in the inner (path) backlog.
                if let Some(min_key) = path_backlog.iter().map(|v| *v.key()).min() {
                    self.backlog_oldest_sequence.observe(&cx, min_key, labels);
                    self.backlog_size
                        .observe(&cx, path_backlog.len() as u64, labels);
                } else {
                    // No minimum found, update the metrics to reflect an empty backlog
                    self.backlog_oldest_sequence
                        .observe(&cx, EMPTY_BACKLOG_SYMBOL, labels);
                    self.backlog_size.observe(&cx, EMPTY_BACKLOG_SYMBOL, labels);
                }
            }
        }
    }

    /// Record the rewarded fee from ICS29 if the address is in the registered addresses
    /// list.
    pub fn fees_amount(&self, chain_id: &ChainId, receiver: &Signer, fee_amounts: Coin<String>) {
        // If the address isn't in the filter list, don't record the metric.
        if !self.visible_fee_addresses.contains(&receiver.to_string()) {
            return;
        }
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("receiver", receiver.to_string()),
            KeyValue::new("denom", fee_amounts.denom.to_string()),
        ];

        let fee_amount = fee_amounts.amount.0.as_u64();

        self.fee_amounts.add(&cx, fee_amount, labels);

        let ephemeral_fee: moka::sync::Cache<String, u64> = moka::sync::Cache::builder()
            .time_to_live(FEE_LIFETIME) // Remove entries after 1 hour without insert
            .time_to_idle(FEE_LIFETIME) // Remove entries if they have been idle for 30 minutes without get or insert
            .build();

        let key = format!("fee_amount:{chain_id}/{receiver}/{}", fee_amounts.denom);
        ephemeral_fee.insert(key.clone(), fee_amount);

        let mut cached_fees = self.cached_fees.lock().unwrap();
        cached_fees.push(ephemeral_fee);

        let sum: u64 = cached_fees.iter().filter_map(|e| e.get(&key)).sum();

        self.period_fees.observe(&cx, sum, labels);
    }

    pub fn update_period_fees(&self, chain_id: &ChainId, receiver: &String, denom: &String) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("chain", chain_id.to_string()),
            KeyValue::new("receiver", receiver.to_string()),
            KeyValue::new("denom", denom.to_string()),
        ];

        let key = format!("fee_amount:{chain_id}/{receiver}/{}", denom);

        let cached_fees = self.cached_fees.lock().unwrap();

        let sum: u64 = cached_fees.iter().filter_map(|e| e.get(&key)).sum();

        self.period_fees.observe(&cx, sum, labels);
    }

    // Add an address to the list of addresses which will record
    // the rewarded fees from ICS29.
    pub fn add_visible_fee_address(&self, address: String) {
        self.visible_fee_addresses.insert(address);
    }

    /// Add an error and its description to the list of errors observed after broadcasting
    /// a Tx with a specific account.
    pub fn broadcast_errors(&self, address: &String, error_code: u32, error_description: &str) {
        let cx = Context::current();
        let broadcast_error = BroadcastError::new(error_code, error_description);

        let labels = &[
            KeyValue::new("account", address.to_string()),
            KeyValue::new("error_code", broadcast_error.code.to_string()),
            KeyValue::new("error_description", broadcast_error.description),
        ];

        self.broadcast_errors.add(&cx, 1, labels);
    }

    /// Add an error and its description to the list of errors observed after simulating
    /// a Tx with a specific account.
    pub fn simulate_errors(&self, address: &String, recoverable: bool, error_description: String) {
        let cx = Context::current();

        let labels = &[
            KeyValue::new("account", address.to_string()),
            KeyValue::new("recoverable", recoverable.to_string()),
            KeyValue::new("error_description", error_description.to_owned()),
        ];

        self.simulate_errors.add(&cx, 1, labels);
    }

    pub fn dynamic_gas_queried_fees(&self, chain_id: &ChainId, amount: f64) {
        let cx = Context::current();

        let labels = &[KeyValue::new("identifier", chain_id.to_string())];

        self.dynamic_gas_queried_fees.observe(&cx, amount, labels);
    }

    pub fn dynamic_gas_paid_fees(&self, chain_id: &ChainId, amount: f64) {
        let cx = Context::current();

        let labels = &[KeyValue::new("identifier", chain_id.to_string())];

        self.dynamic_gas_paid_fees.observe(&cx, amount, labels);
    }

    pub fn dynamic_gas_queried_success_fees(&self, chain_id: &ChainId, amount: f64) {
        let cx = Context::current();

        let labels = &[KeyValue::new("identifier", chain_id.to_string())];

        self.dynamic_gas_queried_success_fees
            .observe(&cx, amount, labels);
    }

    /// Increment number of packets filtered because the memo field is too big
    #[allow(clippy::too_many_arguments)]
    pub fn filtered_packets(
        &self,
        src_chain: &ChainId,
        dst_chain: &ChainId,
        src_channel: &ChannelId,
        dst_channel: &ChannelId,
        src_port: &PortId,
        dst_port: &PortId,
        count: u64,
    ) {
        let cx = Context::current();

        if count > 0 {
            let labels = &[
                KeyValue::new("src_chain", src_chain.to_string()),
                KeyValue::new("dst_chain", dst_chain.to_string()),
                KeyValue::new("src_channel", src_channel.to_string()),
                KeyValue::new("dst_channel", dst_channel.to_string()),
                KeyValue::new("src_port", src_port.to_string()),
                KeyValue::new("dst_port", dst_port.to_string()),
            ];

            self.filtered_packets.add(&cx, count, labels);
        }
    }
}

use std::sync::Arc;

use opentelemetry::metrics::Unit;
use opentelemetry::sdk::export::metrics::AggregatorSelector;
use opentelemetry::sdk::metrics::aggregators::Aggregator;
use opentelemetry::sdk::metrics::aggregators::{histogram, last_value, sum};
use opentelemetry::sdk::metrics::sdk_api::Descriptor;

#[derive(Debug)]
struct CustomAggregatorSelector {
    tx_latency_submitted_range: Range<u64>,
    tx_latency_submitted_buckets: u64,
    tx_latency_confirmed_range: Range<u64>,
    tx_latency_confirmed_buckets: u64,
}

impl CustomAggregatorSelector {
    pub fn new(
        tx_latency_submitted_range: Range<u64>,
        tx_latency_submitted_buckets: u64,
        tx_latency_confirmed_range: Range<u64>,
        tx_latency_confirmed_buckets: u64,
    ) -> Self {
        Self {
            tx_latency_submitted_range,
            tx_latency_submitted_buckets,
            tx_latency_confirmed_range,
            tx_latency_confirmed_buckets,
        }
    }

    pub fn get_submitted_range(&self) -> Vec<f64> {
        build_histogram_buckets(
            self.tx_latency_submitted_range.start,
            self.tx_latency_submitted_range.end,
            self.tx_latency_submitted_buckets,
        )
    }

    pub fn get_confirmed_range(&self) -> Vec<f64> {
        build_histogram_buckets(
            self.tx_latency_confirmed_range.start,
            self.tx_latency_confirmed_range.end,
            self.tx_latency_confirmed_buckets,
        )
    }
}

fn build_histogram_buckets(start: u64, end: u64, buckets: u64) -> Vec<f64> {
    let step = (end - start) / buckets;
    (0..=buckets)
        .map(|i| (start + i * step) as f64)
        .collect::<Vec<_>>()
}

impl AggregatorSelector for CustomAggregatorSelector {
    fn aggregator_for(&self, descriptor: &Descriptor) -> Option<Arc<dyn Aggregator + Send + Sync>> {
        match descriptor.name() {
            "wallet_balance" => Some(Arc::new(last_value())),
            "backlog_oldest_sequence" => Some(Arc::new(last_value())),
            "backlog_latest_update_timestamp" => Some(Arc::new(last_value())),
            "backlog_size" => Some(Arc::new(last_value())),
            // Prometheus' supports only collector for histogram, sum, and last value aggregators.
            // https://docs.rs/opentelemetry-prometheus/0.10.0/src/opentelemetry_prometheus/lib.rs.html#411-418
            // TODO: Once quantile sketches are supported, replace histograms with that.
            "tx_latency_submitted" => Some(Arc::new(histogram(&self.get_submitted_range()))),
            "tx_latency_confirmed" => Some(Arc::new(histogram(&self.get_confirmed_range()))),
            "dynamic_gas_queried_fees" => Some(Arc::new(histogram(&[
                0.0025, 0.005, 0.01, 0.05, 0.1, 0.5, 1.0, 5.0,
            ]))),
            "dynamic_gas_paid_fees" => Some(Arc::new(histogram(&[
                0.0025, 0.005, 0.01, 0.05, 0.1, 0.5, 1.0, 5.0,
            ]))),
            "dynamic_gas_queried_success_fees" => Some(Arc::new(histogram(&[
                0.0025, 0.005, 0.01, 0.05, 0.1, 0.5, 1.0, 5.0,
            ]))),
            "ics29_period_fees" => Some(Arc::new(last_value())),
            _ => Some(Arc::new(sum())),
        }
    }
}

#[cfg(test)]
mod tests {
    use prometheus::proto::Metric;

    use super::*;

    #[test]
    fn insert_remove_backlog() {
        let state = TelemetryState::new(
            Range {
                start: 0,
                end: 5000,
            },
            5,
            Range {
                start: 0,
                end: 5000,
            },
            5,
        );

        let chain_id = ChainId::from_string("chain-test");
        let counterparty_chain_id = ChainId::from_string("counterpartychain-test");
        let channel_id = ChannelId::new(0);
        let port_id = PortId::transfer();

        state.backlog_insert(1, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(2, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(3, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(4, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(5, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_remove(3, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_remove(1, &chain_id, &channel_id, &port_id, &counterparty_chain_id);

        let metrics = state.exporter.registry().gather().clone();
        let backlog_size = metrics
            .iter()
            .find(|metric| metric.get_name() == "backlog_size")
            .unwrap();
        assert!(
            assert_metric_value(backlog_size.get_metric(), 3),
            "expected backlog_size to be 3"
        );
        let backlog_oldest_sequence = metrics
            .iter()
            .find(|&metric| metric.get_name() == "backlog_oldest_sequence")
            .unwrap();
        assert!(
            assert_metric_value(backlog_oldest_sequence.get_metric(), 2),
            "expected backlog_oldest_sequence to be 2"
        );
    }

    #[test]
    fn update_backlog() {
        let state = TelemetryState::new(
            Range {
                start: 0,
                end: 5000,
            },
            5,
            Range {
                start: 0,
                end: 5000,
            },
            5,
        );

        let chain_id = ChainId::from_string("chain-test");
        let counterparty_chain_id = ChainId::from_string("counterpartychain-test");
        let channel_id = ChannelId::new(0);
        let port_id = PortId::transfer();

        state.backlog_insert(1, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(2, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(3, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(4, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(5, &chain_id, &channel_id, &port_id, &counterparty_chain_id);

        state.update_backlog(
            vec![5],
            &chain_id,
            &channel_id,
            &port_id,
            &counterparty_chain_id,
        );

        let metrics = state.exporter.registry().gather().clone();
        let backlog_size = metrics
            .iter()
            .find(|&metric| metric.get_name() == "backlog_size")
            .unwrap();
        assert!(
            assert_metric_value(backlog_size.get_metric(), 1),
            "expected backlog_size to be 1"
        );
        let backlog_oldest_sequence = metrics
            .iter()
            .find(|&metric| metric.get_name() == "backlog_oldest_sequence")
            .unwrap();
        assert!(
            assert_metric_value(backlog_oldest_sequence.get_metric(), 5),
            "expected backlog_oldest_sequence to be 5"
        );
    }

    #[test]
    fn update_backlog_empty() {
        let state = TelemetryState::new(
            Range {
                start: 0,
                end: 5000,
            },
            5,
            Range {
                start: 0,
                end: 5000,
            },
            5,
        );

        let chain_id = ChainId::from_string("chain-test");
        let counterparty_chain_id = ChainId::from_string("counterpartychain-test");
        let channel_id = ChannelId::new(0);
        let port_id = PortId::transfer();

        state.backlog_insert(1, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(2, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(3, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(4, &chain_id, &channel_id, &port_id, &counterparty_chain_id);
        state.backlog_insert(5, &chain_id, &channel_id, &port_id, &counterparty_chain_id);

        state.update_backlog(
            vec![],
            &chain_id,
            &channel_id,
            &port_id,
            &counterparty_chain_id,
        );

        let metrics = state.exporter.registry().gather().clone();
        let backlog_size = metrics
            .iter()
            .find(|&metric| metric.get_name() == "backlog_size")
            .unwrap();
        assert!(
            assert_metric_value(backlog_size.get_metric(), 0),
            "expected backlog_size to be 0"
        );
        let backlog_oldest_sequence = metrics
            .iter()
            .find(|&metric| metric.get_name() == "backlog_oldest_sequence")
            .unwrap();
        assert!(
            assert_metric_value(backlog_oldest_sequence.get_metric(), 0),
            "expected backlog_oldest_sequence to be 0"
        );
    }

    fn assert_metric_value(metric: &[Metric], expected: u64) -> bool {
        metric
            .iter()
            .any(|m| m.get_gauge().get_value() as u64 == expected)
    }
}