File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ Exported metrics:
12
12
13
13
| ** Exported Metric** | ** Description** | ** Type** |
14
14
| :---------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------: |
15
- | cosmos_relayer_observed_packets | The total number of observed packets | Counter |
16
- | cosmos_relayer_relayed_packets | The total number of relayed packets | Counter |
15
+ | cosmos_relayer_observed_packets_total | The total number of observed packets | Counter |
16
+ | cosmos_relayer_relayed_packets_total | The total number of relayed packets | Counter |
17
17
| cosmos_relayer_chain_latest_height | The current height of the chain | Gauge |
18
18
| cosmos_relayer_wallet_balance | The current balance for the relayer's wallet | Gauge |
19
19
| cosmos_relayer_fees_spent | The amount of fees spent from the relayer's wallet | Gauge |
Original file line number Diff line number Diff line change @@ -69,11 +69,11 @@ func NewPrometheusMetrics() *PrometheusMetrics {
69
69
return & PrometheusMetrics {
70
70
Registry : registry ,
71
71
PacketObservedCounter : registerer .NewCounterVec (prometheus.CounterOpts {
72
- Name : "cosmos_relayer_observed_packets " ,
72
+ Name : "cosmos_relayer_observed_packets_total " ,
73
73
Help : "The total number of observed packets" ,
74
74
}, packetLabels ),
75
75
PacketRelayedCounter : registerer .NewCounterVec (prometheus.CounterOpts {
76
- Name : "cosmos_relayer_relayed_packets " ,
76
+ Name : "cosmos_relayer_relayed_packets_total " ,
77
77
Help : "The total number of relayed packets" ,
78
78
}, packetLabels ),
79
79
LatestHeightGauge : registerer .NewGaugeVec (prometheus.GaugeOpts {
You can’t perform that action at this time.
0 commit comments