We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 680eaca commit 3fabe0fCopy full SHA for 3fabe0f
src/new_index/mempool.rs
@@ -526,6 +526,19 @@ impl Mempool {
526
indexed_txids.len() + fetched_txs.len(),
527
new_txids.len()
528
);
529
+
530
+ mempool.read().unwrap().count
531
+ .with_label_values(&["all_txs"])
532
+ .set(all_txids.len() as f64);
533
534
535
+ .with_label_values(&["fetched_txs"])
536
+ .set((indexed_txids.len() + fetched_txs.len()) as f64);
537
538
539
+ .with_label_values(&["missing_txs"])
540
+ .set(new_txids.len() as f64);
541
542
let new_txs = daemon.gettransactions_available(&new_txids)?;
543
544
// Abort if the chain tip moved while fetching transactions
0 commit comments