mempool metrics
This commit is contained in:
parent
ca1444eb5d
commit
7c5b02c5a1
1 changed files with 8 additions and 1 deletions
|
@ -4,7 +4,7 @@ import attr
|
||||||
import typing
|
import typing
|
||||||
import logging
|
import logging
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from prometheus_client import Histogram
|
from prometheus_client import Histogram, Gauge
|
||||||
import rocksdb.errors
|
import rocksdb.errors
|
||||||
from scribe import PROMETHEUS_NAMESPACE
|
from scribe import PROMETHEUS_NAMESPACE
|
||||||
from scribe.common import HISTOGRAM_BUCKETS
|
from scribe.common import HISTOGRAM_BUCKETS
|
||||||
|
@ -39,6 +39,10 @@ mempool_process_time_metric = Histogram(
|
||||||
"processed_mempool", "Time to process mempool and notify touched addresses",
|
"processed_mempool", "Time to process mempool and notify touched addresses",
|
||||||
namespace=NAMESPACE, buckets=HISTOGRAM_BUCKETS
|
namespace=NAMESPACE, buckets=HISTOGRAM_BUCKETS
|
||||||
)
|
)
|
||||||
|
mempool_tx_count_metric = Gauge("mempool_tx_count", "Transactions in mempool", namespace=NAMESPACE)
|
||||||
|
mempool_touched_address_count_metric = Gauge(
|
||||||
|
"mempool_touched_address_count", "Count of addresses touched by transactions in mempool", namespace=NAMESPACE
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class HubMemPool:
|
class HubMemPool:
|
||||||
|
@ -134,6 +138,9 @@ class HubMemPool:
|
||||||
for hashX, value in itertools.chain(tx.prevouts, tx.out_pairs):
|
for hashX, value in itertools.chain(tx.prevouts, tx.out_pairs):
|
||||||
self.touched_hashXs[hashX].add(tx_hash)
|
self.touched_hashXs[hashX].add(tx_hash)
|
||||||
touched_hashXs.add(hashX)
|
touched_hashXs.add(hashX)
|
||||||
|
|
||||||
|
mempool_tx_count_metric.set(len(self.txs))
|
||||||
|
mempool_touched_address_count_metric.set(len(self.touched_hashXs))
|
||||||
return touched_hashXs
|
return touched_hashXs
|
||||||
|
|
||||||
def transaction_summaries(self, hashX):
|
def transaction_summaries(self, hashX):
|
||||||
|
|
Loading…
Reference in a new issue