tsmon

package
v0.0.0-...-678bb0e Latest Latest
Warning

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

Go to latest
Published: Aug 8, 2017 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Overview

Package tsmon contains global state and utility functions for configuring and interacting with tsmon. This has a similar API to the infra-python ts_mon module.

Users of tsmon should call InitializeFromFlags from their application's main function.

Index

Constants

View Source
const (
	// FlushManual requires the user to flush manually.
	FlushManual = FlushType("manual")
	// FlushAuto automatically flushes at a periodic flush interval.
	FlushAuto = FlushType("auto")
)

Variables

This section is empty.

Functions

func Flush

func Flush(c context.Context) error

Flush sends all the metrics that are registered in the application.

func Initialize

func Initialize(c context.Context, m monitor.Monitor, s store.Store)

Initialize configures the tsmon library with the given monitor and store.

func InitializeFromFlags

func InitializeFromFlags(c context.Context, fl *Flags) error

InitializeFromFlags configures the tsmon library from flag values.

This will set a Target (information about what's reporting metrics) and a Monitor (where to send the metrics to).

func Monitor

func Monitor(c context.Context) monitor.Monitor

Monitor returns the global monitor that sends metrics to monitoring endpoints. Defaults to a nil monitor, but changed by InitializeFromFlags.

func Register

func Register(c context.Context, m types.Metric)

Register is called by metric objects to register themselves. This will panic if another metric with the same name is already registered.

func RegisterCallback

func RegisterCallback(f Callback)

RegisterCallback registers a callback function that will be run at metric collection time to set the values of one or more metrics. RegisterCallback should be called from an init() function in your module.

func RegisterCallbackIn

func RegisterCallbackIn(c context.Context, f Callback)

RegisterCallbackIn is like RegisterCallback but registers in a given context.

func RegisterGlobalCallback

func RegisterGlobalCallback(f Callback, metrics ...types.Metric)

RegisterGlobalCallback registers a callback function that will be run once per minute on *one* instance of your application. It is supported primarily on GAE.

You must specify the list of metrics that your callback affects - these metrics will be reset after flushing to ensure they are not sent by multiple instances.

RegisterGlobalCallback should be called from an init() function in your module.

func RegisterGlobalCallbackIn

func RegisterGlobalCallbackIn(c context.Context, f Callback, metrics ...types.Metric)

RegisterGlobalCallbackIn is like RegisterGlobalCallback but registers in a given context.

func ResetCumulativeMetrics

func ResetCumulativeMetrics(c context.Context)

ResetCumulativeMetrics resets only cumulative metrics.

func SetStore

func SetStore(c context.Context, s store.Store)

SetStore changes the global metric store. All metrics that were registered with the old store will be re-registered on the new store.

func Shutdown

func Shutdown(c context.Context)

Shutdown gracefully terminates the tsmon by doing the final flush and disabling auto flush (if it was enabled).

It resets Monitor and Store.

Logs error to standard logger. Does nothing if tsmon wasn't initialized.

func Store

func Store(c context.Context) store.Store

Store returns the global metric store that contains all the metric values for this process. Applications shouldn't need to access this directly - instead use the metric objects which provide type-safe accessors.

func Unregister

func Unregister(c context.Context, m types.Metric)

Unregister is called by metric objects to unregister themselves.

func WithDummyInMemory

func WithDummyInMemory(c context.Context) (context.Context, *monitor.Fake)

WithDummyInMemory returns a new context holding a new State with a new in- memory store and a fake monitor.

func WithFakes

func WithFakes(c context.Context) (context.Context, *store.Fake, *monitor.Fake)

WithFakes returns a new context holding a new State with a fake store and a fake monitor.

func WithState

func WithState(c context.Context, s *State) context.Context

WithState returns a new context holding the given State instance.

Types

type Callback

type Callback func(ctx context.Context)

Callback is a function that is run at metric collection time to set the values of one or more metrics. A callback can be registered with RegisterCallback.

type Flags

type Flags struct {
	ConfigFile    string
	Endpoint      string
	Credentials   string
	ActAs         string
	Flush         FlushType
	FlushInterval time.Duration

	Target target.Flags
}

Flags defines command line flags related to tsmon. Use NewFlags() to get a Flags struct with sensible default values.

func NewFlags

func NewFlags() Flags

NewFlags returns a Flags struct with sensible default values.

func (*Flags) Register

func (fl *Flags) Register(f *flag.FlagSet)

Register adds tsmon related flags to a FlagSet.

type FlushType

type FlushType string

FlushType is a flush type enumeration.

func (*FlushType) Set

func (ft *FlushType) Set(v string) error

Set implements flag.Value.

func (*FlushType) String

func (ft *FlushType) String() string

type GlobalCallback

type GlobalCallback struct {
	Callback
	Metrics []types.Metric
}

A GlobalCallback is a Callback with the list of metrics it affects, so those metrics can be reset after they are flushed.

type State

type State struct {
	S       store.Store
	M       monitor.Monitor
	Flusher *autoFlusher

	RegisteredMetrics     map[string]types.Metric
	RegisteredMetricsLock sync.RWMutex

	CallbacksMutex               sync.RWMutex
	Callbacks                    []Callback
	GlobalCallbacks              []GlobalCallback
	InvokeGlobalCallbacksOnFlush bool
}

State holds the configuration of the tsmon library. There is one global instance of State, but it can be overridden in a Context by tests.

func GetState

func GetState(c context.Context) *State

GetState returns the State instance held in the context (if set) or else returns the global state.

func NewState

func NewState() *State

NewState returns a new default State, configured with a nil Store and Monitor.

func (*State) Flush

func (state *State) Flush(c context.Context, mon monitor.Monitor) error

Flush sends all the metrics that are registered in the application.

Uses given monitor if not nil, or the state.M otherwise.

func (*State) ResetCumulativeMetrics

func (state *State) ResetCumulativeMetrics(c context.Context)

ResetCumulativeMetrics resets only cumulative metrics.

func (*State) RunGlobalCallbacks

func (state *State) RunGlobalCallbacks(c context.Context)

RunGlobalCallbacks runs all registered global callbacks that produce global metrics.

See RegisterGlobalCallback for more info.

func (*State) SetStore

func (state *State) SetStore(s store.Store)

SetStore changes the metric store. All metrics that were registered with the old store will be re-registered on the new store.

Directories

Path Synopsis
Package distribution contains distribution metrics, fixed width and geometric bucketers.
Package distribution contains distribution metrics, fixed width and geometric bucketers.
Package field contains constructors for metric field definitions.
Package field contains constructors for metric field definitions.
Package metric is the API for defining metrics and updating their values.
Package metric is the API for defining metrics and updating their values.
Package monitor contains the code for sending metric data to monitoring endpoints.
Package monitor contains the code for sending metric data to monitoring endpoints.
Package runtimestats exposes metrics related to the Go runtime.
Package runtimestats exposes metrics related to the Go runtime.
Package store contains code for storing and retreiving metrics.
Package store contains code for storing and retreiving metrics.
storetest
Package storetest is imported exclusively by tests for Store implementations.
Package storetest is imported exclusively by tests for Store implementations.
Package target contains information about the thing that is sending metrics - either a NetworkDevice (a machine) or a Task (a service).
Package target contains information about the thing that is sending metrics - either a NetworkDevice (a machine) or a Task (a service).
Package ts_mon_proto is a generated protocol buffer package.
Package ts_mon_proto is a generated protocol buffer package.
Package types contains miscellaneous structs and interfaces used throughout tsmon.
Package types contains miscellaneous structs and interfaces used throughout tsmon.
Package versions allows processes to report string-valued metrics with versions of various libraries they link with.
Package versions allows processes to report string-valued metrics with versions of various libraries they link with.

Jump to

Keyboard shortcuts

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