File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ impl SendTransactionService {
190
190
Err ( RecvTimeoutError :: Disconnected ) => break ,
191
191
Err ( RecvTimeoutError :: Timeout ) => { }
192
192
Ok ( transaction_info) => {
193
+ inc_new_counter_info ! ( "send_transaction_service-recv-tx" , 1 ) ;
193
194
let addresses = leader_info. as_ref ( ) . map ( |leader_info| {
194
195
leader_info. get_leader_tpus ( config. leader_forward_count )
195
196
} ) ;
@@ -210,6 +211,7 @@ impl SendTransactionService {
210
211
) ;
211
212
}
212
213
if transactions. len ( ) < MAX_TRANSACTION_QUEUE_SIZE {
214
+ inc_new_counter_info ! ( "send_transaction_service-insert-tx" , 1 ) ;
213
215
transactions. insert ( transaction_info. signature , transaction_info) ;
214
216
} else {
215
217
datapoint_warn ! ( "send_transaction_service-queue-overflow" ) ;
You can’t perform that action at this time.
0 commit comments