Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
51 lines
1.6 KiB
Go
51 lines
1.6 KiB
Go
package mempool
|
|
|
|
import (
|
|
"github.com/go-kit/kit/metrics"
|
|
)
|
|
|
|
const (
|
|
// MetricsSubsystem is a subsystem shared by all metrics exposed by this
|
|
// package.
|
|
MetricsSubsystem = "mempool"
|
|
)
|
|
|
|
//go:generate go run ../scripts/metricsgen -struct=Metrics
|
|
|
|
// Metrics contains metrics exposed by this package.
|
|
// see MetricsProvider for descriptions.
|
|
type Metrics struct {
|
|
// Number of uncommitted transactions in the mempool.
|
|
Size metrics.Gauge
|
|
|
|
// Total size of the mempool in bytes.
|
|
SizeBytes metrics.Gauge
|
|
|
|
// Histogram of transaction sizes in bytes.
|
|
TxSizeBytes metrics.Histogram `metrics_buckettype:"exp" metrics_bucketsizes:"1,3,7"`
|
|
|
|
// FailedTxs defines the number of failed transactions. These are
|
|
// transactions that failed to make it into the mempool because they were
|
|
// deemed invalid.
|
|
// metrics:Number of failed transactions.
|
|
FailedTxs metrics.Counter
|
|
|
|
// RejectedTxs defines the number of rejected transactions. These are
|
|
// transactions that failed to make it into the mempool due to resource
|
|
// limits, e.g. mempool is full.
|
|
// metrics:Number of rejected transactions.
|
|
RejectedTxs metrics.Counter
|
|
|
|
// EvictedTxs defines the number of evicted transactions. These are valid
|
|
// transactions that passed CheckTx and make it into the mempool but later
|
|
// became invalid.
|
|
// metrics:Number of evicted transactions.
|
|
EvictedTxs metrics.Counter
|
|
|
|
// Number of times transactions are rechecked in the mempool.
|
|
RecheckTimes metrics.Counter
|
|
|
|
// Number of connections being actively used for gossiping transactions
|
|
// (experimental feature).
|
|
ActiveOutboundConnections metrics.Gauge
|
|
}
|