collector

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 16, 2023 License: MIT Imports: 26 Imported by: 0

Documentation

Overview

Package collector contains the mempool collector service

Index

Constants

View Source
const (
	KeyStatsAll       = "all"
	KeyStatsFirst     = "first"
	KeyStatsUnique    = "unique"
	KeyStatsTxOnChain = "tx-onchain"
	KeyStatsTxTrash   = "tx-trash"
)

Variables

This section is empty.

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 BlxNodeOpts struct {
	TxC        chan TxIn
	Log        *zap.SugaredLogger
	AuthHeader string
	URL        string // optional override, default: blxDefaultURL
	SourceTag  string // optional override, default: "blx" (common.BloxrouteTag)
}

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 ChainboundNodeOpts struct {
	TxC       chan TxIn
	Log       *zap.SugaredLogger
	APIKey    string
	URL       string // optional override, default: ChainboundDefaultURL
	SourceTag string // optional override, default: "Chainbound"
}

type CollectorOpts

type CollectorOpts struct {
	Log          *zap.SugaredLogger
	UID          string
	Nodes        []string
	OutDir       string
	CheckNodeURI string

	BloxrouteAuth  []string
	EdenAuth       []string
	ChainboundAuth []string
}

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 EdenNodeOpts struct {
	TxC        chan TxIn
	Log        *zap.SugaredLogger
	AuthHeader string
	URL        string // optional override, default: edenDefaultURL
	SourceTag  string // optional override, default: "eden" (common.SourceTagEden)
}

type NodeConnection

type NodeConnection struct {
	// contains filtered or unexported fields
}

func NewNodeConnection

func NewNodeConnection(log *zap.SugaredLogger, nodeURI string, txC chan TxIn) *NodeConnection

func (*NodeConnection) StartInBackground added in v0.5.2

func (nc *NodeConnection) StartInBackground()

type OutFiles added in v0.5.2

type OutFiles struct {
	FTxs       *os.File
	FSourcelog *os.File
	FTrash     *os.File
}

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 TxDetail

type TxDetail struct {
	Timestamp int64  `json:"timestamp"`
	Hash      string `json:"hash"`
	RawTx     string `json:"rawTx"`
}

type TxIn

type TxIn struct {
	T      time.Time
	Tx     *types.Transaction
	Source string
}

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

type TxProcessorOpts struct {
	Log          *zap.SugaredLogger
	OutDir       string
	UID          string
	CheckNodeURI string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL