metric

package
v0.20.1 Latest Latest
Warning

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

Go to latest
Published: Apr 8, 2019 License: Apache-2.0 Imports: 7 Imported by: 26

Documentation

Overview

Package metric support for gauge metrics.

This is an EXPERIMENTAL package, and may change in arbitrary ways without notice.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Float64DerivedGauge added in v0.19.2

type Float64DerivedGauge struct {
	// contains filtered or unexported fields
}

Float64DerivedGauge represents float64 gauge value that is derived from an object.

Float64DerivedGauge maintains objects for each combination of label values. These objects implement Float64DerivedGaugeInterface to read instantaneous value representing the object.

func (*Float64DerivedGauge) UpsertEntry added in v0.19.2

func (g *Float64DerivedGauge) UpsertEntry(fn func() float64, labelVals ...metricdata.LabelValue) error

UpsertEntry inserts or updates a derived gauge entry for the given set of label values. The object for which this gauge entry is inserted or updated, must implement func() float64

It returns an error if 1. The number of label values supplied are not the same as the number of keys supplied when this gauge was created. 2. fn func() float64 is nil.

type Float64Entry

type Float64Entry struct {
	// contains filtered or unexported fields
}

Float64Entry represents a single value of the gauge corresponding to a set of label values.

func (*Float64Entry) Add

func (e *Float64Entry) Add(val float64)

Add increments the gauge entry value by val.

func (*Float64Entry) Set

func (e *Float64Entry) Set(val float64)

Set sets the gauge entry value to val.

type Float64Gauge

type Float64Gauge struct {
	// contains filtered or unexported fields
}

Float64Gauge represents a float64 value that can go up and down.

Float64Gauge maintains a float64 value for each combination of of label values passed to the Set or Add methods.

func (*Float64Gauge) GetEntry

func (g *Float64Gauge) GetEntry(labelVals ...metricdata.LabelValue) (*Float64Entry, error)

GetEntry returns a gauge entry where each key for this gauge has the value given.

The number of label values supplied must be exactly the same as the number of keys supplied when this gauge was created.

type Int64DerivedGauge added in v0.19.2

type Int64DerivedGauge struct {
	// contains filtered or unexported fields
}

Int64DerivedGauge represents int64 gauge value that is derived from an object.

Int64DerivedGauge maintains objects for each combination of label values. These objects implement Int64DerivedGaugeInterface to read instantaneous value representing the object.

func (*Int64DerivedGauge) UpsertEntry added in v0.19.2

func (g *Int64DerivedGauge) UpsertEntry(fn func() int64, labelVals ...metricdata.LabelValue) error

UpsertEntry inserts or updates a derived gauge entry for the given set of label values. The object for which this gauge entry is inserted or updated, must implement func() int64

It returns an error if 1. The number of label values supplied are not the same as the number of keys supplied when this gauge was created. 2. fn func() int64 is nil.

type Int64Gauge

type Int64Gauge struct {
	// contains filtered or unexported fields
}

Int64Gauge represents a int64 gauge value that can go up and down.

Int64Gauge maintains an int64 value for each combination of label values passed to the Set or Add methods.

func (*Int64Gauge) GetEntry

func (g *Int64Gauge) GetEntry(labelVals ...metricdata.LabelValue) (*Int64GaugeEntry, error)

GetEntry returns a gauge entry where each key for this gauge has the value given.

The number of label values supplied must be exactly the same as the number of keys supplied when this gauge was created.

type Int64GaugeEntry

type Int64GaugeEntry struct {
	// contains filtered or unexported fields
}

Int64GaugeEntry represents a single value of the gauge corresponding to a set of label values.

func (*Int64GaugeEntry) Add

func (e *Int64GaugeEntry) Add(val int64)

Add increments the current gauge entry value by val, which may be negative.

func (*Int64GaugeEntry) Set

func (e *Int64GaugeEntry) Set(val int64)

Set sets the value of the gauge entry to the provided value.

type Options added in v0.19.3

type Options func(*metricOptions)

Options apply changes to metricOptions.

func WithDescription added in v0.19.3

func WithDescription(desc string) Options

WithDescription applies provided description.

func WithLabelKeys added in v0.19.3

func WithLabelKeys(labelKeys ...string) Options

WithLabelKeys applies provided label.

func WithUnit added in v0.19.3

func WithUnit(unit metricdata.Unit) Options

WithUnit applies provided unit.

type Registry

type Registry struct {
	// contains filtered or unexported fields
}

Registry creates and manages a set of gauges. External synchronization is required if you want to add gauges to the same registry from multiple goroutines.

func NewRegistry

func NewRegistry() *Registry

NewRegistry initializes a new Registry.

func (*Registry) AddFloat64DerivedGauge added in v0.19.2

func (r *Registry) AddFloat64DerivedGauge(name string, mos ...Options) (*Float64DerivedGauge, error)

AddFloat64DerivedGauge creates and adds a new derived float64-valued gauge to this registry. A derived gauge is convenient form of gauge where the object associated with the gauge provides its value by implementing func() float64.

func (*Registry) AddFloat64Gauge

func (r *Registry) AddFloat64Gauge(name string, mos ...Options) (*Float64Gauge, error)

AddFloat64Gauge creates and adds a new float64-valued gauge to this registry.

func (*Registry) AddInt64DerivedGauge added in v0.19.2

func (r *Registry) AddInt64DerivedGauge(name string, mos ...Options) (*Int64DerivedGauge, error)

AddInt64DerivedGauge creates and adds a new derived int64-valued gauge to this registry. A derived gauge is convenient form of gauge where the object associated with the gauge provides its value by implementing func() int64.

func (*Registry) AddInt64Gauge

func (r *Registry) AddInt64Gauge(name string, mos ...Options) (*Int64Gauge, error)

AddInt64Gauge creates and adds a new int64-valued gauge to this registry.

Example
package main

import (
	"net/http"

	"go.opencensus.io/metric"
	"go.opencensus.io/metric/metricdata"
)

func main() {
	r := metric.NewRegistry()
	// TODO: allow exporting from a registry

	g, _ := r.AddInt64Gauge("active_request",
		metric.WithDescription("Number of active requests, per method."),
		metric.WithUnit(metricdata.UnitDimensionless),
		metric.WithLabelKeys("method"))

	http.HandleFunc("/", func(writer http.ResponseWriter, request *http.Request) {
		e, _ := g.GetEntry(metricdata.NewLabelValue(request.Method))
		e.Add(1)
		defer e.Add(-1)
		// process request ...
	})
}
Output:

func (*Registry) Read added in v0.19.2

func (r *Registry) Read() []*metricdata.Metric

Read reads all gauges in this registry and returns their values as metrics.

Directories

Path Synopsis
Package metricdata contains the metrics data model.
Package metricdata contains the metrics data model.
Package metricexport contains support for exporting metric data.
Package metricexport contains support for exporting metric data.

Jump to

Keyboard shortcuts

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