metrics

package
v3.5.0 Latest Latest
Warning

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

Go to latest
Published: Feb 6, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var RoundDuration = time.Millisecond * 1

RoundDuration is the default value used for rounding durations.

Functions

func Register

func Register(metricType interface{}, retrieverFunc Retriever)

Register registers given type with retriever to metrics.

func Retrieve

func Retrieve(metric interface{}) error

Retrieve calls registered retriever for given metric and sets returned data to metric.

Types

type CallStats

type CallStats struct {
	Name  string  `json:"name,omitempty"`
	Count uint64  `json:"count"`
	Total float64 `json:"total,omitempty"`
	Avg   float64 `json:"avg,omitempty"`
	Min   float64 `json:"min,omitempty"`
	Max   float64 `json:"max,omitempty"`
}

CallStats represents generic stats for call metrics.

func (*CallStats) Increment

func (m *CallStats) Increment(d time.Duration)

Increment increments call count and recalculates durations

type Calls

type Calls map[string]*CallStats

func (Calls) Copy added in v3.5.0

func (m Calls) Copy() Calls

func (Calls) MarshalJSON

func (m Calls) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler interface

type Retriever

type Retriever func() interface{}

Retriever defines function that returns metrics data

Jump to

Keyboard shortcuts

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