Documentation ¶
Overview ¶
Package collector contains the mempool collector service
Index ¶
- Constants
- Variables
- func Start(opts *CollectorOpts)
- type BlxNodeConnection
- type BlxNodeConnectionGRPC
- type BlxNodeOpts
- type ChainboundNodeConnection
- type ChainboundNodeOpts
- type CollectorOpts
- type EdenNodeConnection
- type EdenNodeConnectionGRPC
- type EdenNodeOpts
- type HTTPReceiver
- type NodeConnection
- type OutFiles
- type SourceMetrics
- func (sc *SourceMetrics) Get(cntType string) map[string]map[string]uint64
- func (sc *SourceMetrics) Inc(cntType, source string)
- func (sc *SourceMetrics) IncKey(cntType, source, key string)
- func (sc *SourceMetrics) Logger(log *zap.SugaredLogger, cntType string, useLen bool) *zap.SugaredLogger
- func (sc *SourceMetrics) Reset()
- type TxDetail
- type TxProcessor
- type TxProcessorOpts
- type TxReceiver
Constants ¶
View Source
const ( KeyStatsAll = "all" KeyStatsFirst = "first" KeyStatsUnique = "unique" KeyStatsTxOnChain = "tx-onchain" KeyStatsTxTrash = "tx-trash" )
Variables ¶
View Source
var ErrBlobMissingSidecar = errors.New("missing blob sidecar")
Functions ¶
func Start ¶
func Start(opts *CollectorOpts)
Start kicks off all the service components in the background
Types ¶
type BlxNodeConnection ¶
type BlxNodeConnection struct {
// contains filtered or unexported fields
}
func NewBlxNodeConnection ¶
func NewBlxNodeConnection(opts BlxNodeOpts) *BlxNodeConnection
func (*BlxNodeConnection) Start ¶
func (nc *BlxNodeConnection) Start()
type BlxNodeConnectionGRPC ¶ added in v0.5.2
type BlxNodeConnectionGRPC struct {
// contains filtered or unexported fields
}
func NewBlxNodeConnectionGRPC ¶ added in v0.5.2
func NewBlxNodeConnectionGRPC(opts BlxNodeOpts) *BlxNodeConnectionGRPC
func (*BlxNodeConnectionGRPC) Start ¶ added in v0.5.2
func (nc *BlxNodeConnectionGRPC) Start()
type BlxNodeOpts ¶
type ChainboundNodeConnection ¶
type ChainboundNodeConnection struct {
// contains filtered or unexported fields
}
func NewChainboundNodeConnection ¶
func NewChainboundNodeConnection(opts ChainboundNodeOpts) *ChainboundNodeConnection
func (*ChainboundNodeConnection) Start ¶
func (cbc *ChainboundNodeConnection) Start()
type ChainboundNodeOpts ¶
type CollectorOpts ¶
type EdenNodeConnection ¶ added in v0.6.0
type EdenNodeConnection struct {
// contains filtered or unexported fields
}
func NewEdenNodeConnection ¶ added in v0.6.0
func NewEdenNodeConnection(opts EdenNodeOpts) *EdenNodeConnection
func (*EdenNodeConnection) Start ¶ added in v0.6.0
func (nc *EdenNodeConnection) Start()
type EdenNodeConnectionGRPC ¶ added in v0.6.0
type EdenNodeConnectionGRPC struct {
// contains filtered or unexported fields
}
func NewEdenNodeConnectionGRPC ¶ added in v0.6.0
func NewEdenNodeConnectionGRPC(opts EdenNodeOpts) *EdenNodeConnectionGRPC
func (*EdenNodeConnectionGRPC) Start ¶ added in v0.6.0
func (nc *EdenNodeConnectionGRPC) Start()
type EdenNodeOpts ¶ added in v0.6.0
type HTTPReceiver ¶ added in v0.8.0
type HTTPReceiver struct {
// contains filtered or unexported fields
}
func NewHTTPReceiver ¶ added in v0.8.0
func NewHTTPReceiver(url string) *HTTPReceiver
type NodeConnection ¶
type NodeConnection struct {
// contains filtered or unexported fields
}
func NewNodeConnection ¶
func NewNodeConnection(log *zap.SugaredLogger, nodeURI string, txC chan common.TxIn) *NodeConnection
func (*NodeConnection) StartInBackground ¶ added in v0.5.2
func (nc *NodeConnection) StartInBackground()
type SourceMetrics ¶ added in v0.5.2
type SourceMetrics struct {
// contains filtered or unexported fields
}
func NewMetricsCounter ¶ added in v0.5.2
func NewMetricsCounter() SourceMetrics
func (*SourceMetrics) Get ¶ added in v0.5.2
func (sc *SourceMetrics) Get(cntType string) map[string]map[string]uint64
func (*SourceMetrics) Inc ¶ added in v0.5.2
func (sc *SourceMetrics) Inc(cntType, source string)
func (*SourceMetrics) IncKey ¶ added in v0.5.2
func (sc *SourceMetrics) IncKey(cntType, source, key string)
func (*SourceMetrics) Logger ¶ added in v0.5.2
func (sc *SourceMetrics) Logger(log *zap.SugaredLogger, cntType string, useLen bool) *zap.SugaredLogger
func (*SourceMetrics) Reset ¶ added in v0.5.2
func (sc *SourceMetrics) Reset()
type TxProcessor ¶
type TxProcessor struct {
// contains filtered or unexported fields
}
func NewTxProcessor ¶
func NewTxProcessor(opts TxProcessorOpts) *TxProcessor
func (*TxProcessor) Start ¶
func (p *TxProcessor) Start()
type TxProcessorOpts ¶ added in v0.5.2
Click to show internal directories.
Click to hide internal directories.