@@ -12,14 +12,10 @@ type l2RelayerMetrics struct {
1212 rollupL2RelayerProcessPendingBatchTotal prometheus.Counter
1313 rollupL2RelayerProcessPendingBatchSuccessTotal prometheus.Counter
1414 rollupL2RelayerProcessPendingBatchErrTooManyPendingBlobTxsTotal prometheus.Counter
15- rollupL2RelayerGasPriceOraclerRunTotal prometheus.Counter
16- rollupL2RelayerLastGasPrice prometheus.Gauge
1715 rollupL2BatchesCommittedConfirmedTotal prometheus.Counter
1816 rollupL2BatchesCommittedConfirmedFailedTotal prometheus.Counter
1917 rollupL2BatchesFinalizedConfirmedTotal prometheus.Counter
2018 rollupL2BatchesFinalizedConfirmedFailedTotal prometheus.Counter
21- rollupL2UpdateGasOracleConfirmedTotal prometheus.Counter
22- rollupL2UpdateGasOracleConfirmedFailedTotal prometheus.Counter
2319 rollupL2ChainMonitorLatestFailedCall prometheus.Counter
2420 rollupL2ChainMonitorLatestFailedBatchStatus prometheus.Counter
2521 rollupL2RelayerProcessPendingBundlesTotal prometheus.Counter
@@ -56,14 +52,6 @@ func initL2RelayerMetrics(reg prometheus.Registerer) *l2RelayerMetrics {
5652 Name : "rollup_layer2_process_pending_batch_err_too_many_pending_blob_txs_total" ,
5753 Help : "The total number of layer2 process pending batch failed on too many pending blob txs" ,
5854 }),
59- rollupL2RelayerGasPriceOraclerRunTotal : promauto .With (reg ).NewCounter (prometheus.CounterOpts {
60- Name : "rollup_layer2_gas_price_oracler_total" ,
61- Help : "The total number of layer2 gas price oracler run total" ,
62- }),
63- rollupL2RelayerLastGasPrice : promauto .With (reg ).NewGauge (prometheus.GaugeOpts {
64- Name : "rollup_layer2_gas_price_latest_gas_price" ,
65- Help : "The latest gas price of rollup relayer l2" ,
66- }),
6755 rollupL2BatchesCommittedConfirmedTotal : promauto .With (reg ).NewCounter (prometheus.CounterOpts {
6856 Name : "rollup_layer2_process_committed_batches_confirmed_total" ,
6957 Help : "The total number of layer2 process committed batches confirmed total" ,
@@ -80,14 +68,6 @@ func initL2RelayerMetrics(reg prometheus.Registerer) *l2RelayerMetrics {
8068 Name : "rollup_layer2_process_finalized_batches_confirmed_failed_total" ,
8169 Help : "The total number of layer2 process finalized batches confirmed failed total" ,
8270 }),
83- rollupL2UpdateGasOracleConfirmedTotal : promauto .With (reg ).NewCounter (prometheus.CounterOpts {
84- Name : "rollup_layer2_update_layer1_gas_oracle_confirmed_total" ,
85- Help : "The total number of updating layer2 gas oracle confirmed" ,
86- }),
87- rollupL2UpdateGasOracleConfirmedFailedTotal : promauto .With (reg ).NewCounter (prometheus.CounterOpts {
88- Name : "rollup_layer2_update_layer1_gas_oracle_confirmed_failed_total" ,
89- Help : "The total number of updating layer2 gas oracle confirmed failed" ,
90- }),
9171 rollupL2ChainMonitorLatestFailedCall : promauto .With (reg ).NewCounter (prometheus.CounterOpts {
9272 Name : "rollup_layer2_chain_monitor_latest_failed_batch_call" ,
9373 Help : "The total number of failed call chain_monitor api" ,
0 commit comments