health

package
v1.4.9 Latest Latest
Warning

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

Go to latest
Published: Jul 5, 2021 License: BSD-3-Clause Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Check

type Check func() (interface{}, error)

Check is a health check. Returns the health check results and, if unhealthy, a non-nil error.

type Checkable

type Checkable interface {
	// HealthCheck returns health check results and,
	// if not healthy, a non-nil error
	HealthCheck() (interface{}, error)
}

Checkable can have its health checked

type Service

type Service interface {
	RegisterCheck(name string, checkFn Check) error
	RegisterMonotonicCheck(name string, checkFn Check) error
	Results() (map[string]health.Result, bool)
}

Service performs health checks. Other things register health checks with Service, which performs them.

func NewService

func NewService(checkFreq time.Duration, log logging.Logger, namespace string, registry prometheus.Registerer) (Service, error)

NewService returns a new Service where the health checks run every [checkFreq]

Jump to

Keyboard shortcuts

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