Documentation ¶
Index ¶
- type Parameter
- type Service
- func (s *Service) Accounts(state string, count uint64)
- func (s *Service) AttestationAggregationCompleted(started time.Time, slot phase0.Slot, result string)
- func (s *Service) AttestationAggregationCoverage(frac float64)
- func (s *Service) AttestationsCompleted(started time.Time, slot phase0.Slot, count int, result string)
- func (s *Service) BeaconCommitteeAggregators(aggregators int)
- func (s *Service) BeaconCommitteeSubscribers(subscribers int)
- func (s *Service) BeaconCommitteeSubscriptionCompleted(started time.Time, result string)
- func (s *Service) BlockDelay(epochSlot uint, delay time.Duration)
- func (s *Service) ClientOperation(provider string, operation string, succeeded bool, duration time.Duration)
- func (s *Service) JobCancelled(class string)
- func (s *Service) JobScheduled(class string)
- func (s *Service) JobStartedOnSignal(class string)
- func (s *Service) JobStartedOnTimer(class string)
- func (s *Service) NewEpoch()
- func (*Service) Presenter() string
- func (s *Service) StrategyOperation(strategy string, provider string, operation string, duration time.Duration)
- func (s *Service) SyncCommitteeAggregationCoverage(frac float64)
- func (s *Service) SyncCommitteeAggregationsCompleted(started time.Time, slot phase0.Slot, count int, result string)
- func (s *Service) SyncCommitteeMessagesCompleted(started time.Time, slot phase0.Slot, count int, result string)
- func (s *Service) SyncCommitteeSubscribers(subscribers int)
- func (s *Service) SyncCommitteeSubscriptionCompleted(started time.Time, result string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Parameter ¶
type Parameter interface {
// contains filtered or unexported methods
}
Parameter is the interface for service parameters.
func WithChainTime ¶ added in v1.3.0
WithChainTime sets the chaintime service.
func WithCreateServer ¶ added in v1.8.0
WithCreateServer creates a web server for metrics if true.
func WithLogLevel ¶
WithLogLevel sets the log level for the module.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service is a metrics service exposing metrics via prometheus.
func (*Service) AttestationAggregationCompleted ¶
func (s *Service) AttestationAggregationCompleted(started time.Time, slot phase0.Slot, result string)
AttestationAggregationCompleted is called when an attestation aggregationprocess has completed.
func (*Service) AttestationAggregationCoverage ¶
AttestationAggregationCoverage measures the attestation ratio of the attestation aggregation.
func (*Service) AttestationsCompleted ¶ added in v1.0.3
func (s *Service) AttestationsCompleted(started time.Time, slot phase0.Slot, count int, result string)
AttestationsCompleted is called when an attestation process has completed.
func (*Service) BeaconCommitteeAggregators ¶
BeaconCommitteeAggregators sets the number of beacon committees for which our validators are aggregating.
func (*Service) BeaconCommitteeSubscribers ¶
BeaconCommitteeSubscribers sets the number of beacon committees to which our validators are subscribed.
func (*Service) BeaconCommitteeSubscriptionCompleted ¶
BeaconCommitteeSubscriptionCompleted is called when an beacon committee subscription process has completed.
func (*Service) BlockDelay ¶
BlockDelay provides the delay between the start of a slot and vouch receiving its block.
func (*Service) ClientOperation ¶
func (s *Service) ClientOperation(provider string, operation string, succeeded bool, duration time.Duration)
ClientOperation registers an operation.
func (*Service) JobCancelled ¶
JobCancelled is called when a scheduled job is cancelled.
func (*Service) JobScheduled ¶
JobScheduled is called when a job is scheduled.
func (*Service) JobStartedOnSignal ¶
JobStartedOnSignal is called when a scheduled job is started due to being manually signalled.
func (*Service) JobStartedOnTimer ¶
JobStartedOnTimer is called when a scheduled job is started due to meeting its time.
func (*Service) NewEpoch ¶
func (s *Service) NewEpoch()
NewEpoch is called when vouch starts processing a new epoch.
func (*Service) StrategyOperation ¶ added in v1.2.0
func (s *Service) StrategyOperation(strategy string, provider string, operation string, duration time.Duration)
StrategyOperation provides a generic monitor for strategy operations.
func (*Service) SyncCommitteeAggregationCoverage ¶ added in v1.3.0
SyncCommitteeAggregationCoverage measures the message ratio of the sync committee aggregation.
func (*Service) SyncCommitteeAggregationsCompleted ¶ added in v1.2.0
func (s *Service) SyncCommitteeAggregationsCompleted(started time.Time, slot phase0.Slot, count int, result string)
SyncCommitteeAggregationsCompleted is called when a sync committee aggregation process has completed.
func (*Service) SyncCommitteeMessagesCompleted ¶ added in v1.2.0
func (s *Service) SyncCommitteeMessagesCompleted(started time.Time, slot phase0.Slot, count int, result string)
SyncCommitteeMessagesCompleted is called when a sync committee message process has completed.
func (*Service) SyncCommitteeSubscribers ¶ added in v1.2.0
SyncCommitteeSubscribers sets the number of sync committees to which our validators are subscribed.