mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
35 lines
777 B
Go
35 lines
777 B
Go
|
package mempool
|
||
|
|
||
|
import "github.com/prometheus/client_golang/prometheus"
|
||
|
|
||
|
var (
|
||
|
//mempoolUnsortedTx prometheus metric.
|
||
|
mempoolUnsortedTx = prometheus.NewGauge(
|
||
|
prometheus.GaugeOpts{
|
||
|
Help: "Mempool Unsorted TXs",
|
||
|
Name: "mempool_unsorted_tx",
|
||
|
Namespace: "neogo",
|
||
|
},
|
||
|
)
|
||
|
//mempoolUnverifiedTx prometheus metric.
|
||
|
mempoolUnverifiedTx = prometheus.NewGauge(
|
||
|
prometheus.GaugeOpts{
|
||
|
Help: "Mempool Unverified TXs",
|
||
|
Name: "mempool_unverified_tx",
|
||
|
Namespace: "neogo",
|
||
|
},
|
||
|
)
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
prometheus.MustRegister(
|
||
|
mempoolUnsortedTx,
|
||
|
mempoolUnverifiedTx,
|
||
|
)
|
||
|
}
|
||
|
|
||
|
func updateMempoolMetrics(unsortedTxnLen int, unverifiedTxnLen int) {
|
||
|
mempoolUnsortedTx.Set(float64(unsortedTxnLen))
|
||
|
mempoolUnverifiedTx.Set(float64(unverifiedTxnLen))
|
||
|
}
|