metrics

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Jul 21, 2022 License: BSD-3-Clause Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Height

type Height interface {
	Accepted(height uint64)
}

Height reports the last accepted height

func NewHeight

func NewHeight(namespace string, reg prometheus.Registerer) (Height, error)

type Latency

type Latency interface {
	// Issued marks the item as having been issued.
	Issued(id ids.ID, pollNumber uint64)

	// Accepted marks the item as having been accepted.
	Accepted(id ids.ID, pollNumber uint64)

	// Rejected marks the item as having been rejected.
	Rejected(id ids.ID, pollNumber uint64)

	// MeasureAndGetOldestDuration returns the amount of time the oldest item
	// has been processing.
	MeasureAndGetOldestDuration() time.Duration

	// NumProcessing returns the number of currently processing items.
	NumProcessing() int
}

func NewLatency

func NewLatency(metricName, descriptionName string, log logging.Logger, namespace string, reg prometheus.Registerer) (Latency, error)

Initialize the metrics with the provided names.

type Polls

type Polls interface {
	Successful()
	Failed()
}

Polls reports commonly used consensus poll metrics.

func NewPolls

func NewPolls(namespace string, reg prometheus.Registerer) (Polls, error)

Jump to

Keyboard shortcuts

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