Documentation
¶
Index ¶
- Variables
- type Collector
- type DefaultCollector
- func (c *DefaultCollector) ApiErrorOccurred()
- func (c *DefaultCollector) AvailableSigningKeys(count int)
- func (c *DefaultCollector) BlockIngestionTime(blockCreation time.Time)
- func (c *DefaultCollector) CadenceHeightIndexed(height uint64)
- func (c *DefaultCollector) EVMAccountInteraction(address string)
- func (c *DefaultCollector) EVMHeightIndexed(height uint64)
- func (c *DefaultCollector) EVMTransactionIndexed(count int)
- func (c *DefaultCollector) GasEstimationIterations(count int)
- func (c *DefaultCollector) MeasureRequestDuration(start time.Time, method string)
- func (c *DefaultCollector) OperatorBalance(account *flow.Account)
- func (c *DefaultCollector) ServerPanicked(reason string)
Constants ¶
This section is empty.
Variables ¶
View Source
var NopCollector = &nopCollector{}
Functions ¶
This section is empty.
Types ¶
type Collector ¶
type Collector interface { ApiErrorOccurred() ServerPanicked(reason string) CadenceHeightIndexed(height uint64) EVMHeightIndexed(height uint64) EVMTransactionIndexed(count int) EVMAccountInteraction(address string) MeasureRequestDuration(start time.Time, method string) OperatorBalance(account *flow.Account) AvailableSigningKeys(count int) GasEstimationIterations(count int) BlockIngestionTime(blockCreation time.Time) }
func NewCollector ¶
type DefaultCollector ¶
type DefaultCollector struct {
// contains filtered or unexported fields
}
func (*DefaultCollector) ApiErrorOccurred ¶
func (c *DefaultCollector) ApiErrorOccurred()
func (*DefaultCollector) AvailableSigningKeys ¶ added in v1.0.0
func (c *DefaultCollector) AvailableSigningKeys(count int)
func (*DefaultCollector) BlockIngestionTime ¶ added in v1.0.4
func (c *DefaultCollector) BlockIngestionTime(blockCreation time.Time)
func (*DefaultCollector) CadenceHeightIndexed ¶ added in v0.36.4
func (c *DefaultCollector) CadenceHeightIndexed(height uint64)
func (*DefaultCollector) EVMAccountInteraction ¶ added in v0.27.0
func (c *DefaultCollector) EVMAccountInteraction(address string)
func (*DefaultCollector) EVMHeightIndexed ¶ added in v0.27.0
func (c *DefaultCollector) EVMHeightIndexed(height uint64)
func (*DefaultCollector) EVMTransactionIndexed ¶ added in v0.36.5
func (c *DefaultCollector) EVMTransactionIndexed(count int)
func (*DefaultCollector) GasEstimationIterations ¶ added in v1.0.2
func (c *DefaultCollector) GasEstimationIterations(count int)
func (*DefaultCollector) MeasureRequestDuration ¶
func (c *DefaultCollector) MeasureRequestDuration(start time.Time, method string)
func (*DefaultCollector) OperatorBalance ¶ added in v0.31.0
func (c *DefaultCollector) OperatorBalance(account *flow.Account)
func (*DefaultCollector) ServerPanicked ¶
func (c *DefaultCollector) ServerPanicked(reason string)
Click to show internal directories.
Click to hide internal directories.