operations

package
v0.0.0-...-98d3023 Latest Latest
Warning

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

Go to latest
Published: Aug 6, 2021 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Logger

type Logger interface {
	Warn(args ...interface{})
	Warnf(template string, args ...interface{})
}

type MetricsOptions

type MetricsOptions struct {
	Provider string
	Statsd   *Statsd
}

type Options

type Options struct {
	Logger        Logger
	ListenAddress string
	Metrics       MetricsOptions
	TLS           TLS
	Version       string
}

type Statsd

type Statsd struct {
	Network       string
	Address       string
	WriteInterval time.Duration
	Prefix        string
}

type System

type System struct {
	metrics.Provider
	// contains filtered or unexported fields
}

func NewSystem

func NewSystem(o Options) *System

func (*System) Addr

func (s *System) Addr() string

func (*System) Log

func (s *System) Log(keyvals ...interface{}) error

func (*System) RegisterChecker

func (s *System) RegisterChecker(component string, checker healthz.HealthChecker) error

func (*System) RegisterHandler

func (s *System) RegisterHandler(pattern string, handler http.Handler)

RegisterHandler registers into the ServeMux a handler chain that borrows its security properties from the operations.System. This method is thread safe because ServeMux.Handle() is thread safe, and options are immutable. This method can be called either before or after System.Start(). If the pattern exists the method panics.

func (*System) Run

func (s *System) Run(signals <-chan os.Signal, ready chan<- struct{}) error

func (*System) Start

func (s *System) Start() error

func (*System) Stop

func (s *System) Stop() error

type TLS

type TLS struct {
	Enabled            bool
	CertFile           string
	KeyFile            string
	ClientCertRequired bool
	ClientCACertFiles  []string
}

func (TLS) Config

func (t TLS) Config() (*tls.Config, error)

type VersionInfoHandler

type VersionInfoHandler struct {
	CommitSHA string `json:"CommitSHA,omitempty"`
	Version   string `json:"Version,omitempty"`
}

func (*VersionInfoHandler) ServeHTTP

func (m *VersionInfoHandler) ServeHTTP(resp http.ResponseWriter, req *http.Request)

Directories

Path Synopsis
Code generated by counterfeiter.
Code generated by counterfeiter.

Jump to

Keyboard shortcuts

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