123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- // Copyright 2014 The Prometheus Authors
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package prometheus
- import (
- "errors"
- "sync/atomic"
- "math"
- dto "github.com/prometheus/client_model/go"
- )
- // Counter is a Metric that represents a single numerical value that only ever
- // goes up. That implies that it cannot be used to count items whose number can
- // also go down, e.g. the number of currently running goroutines. Those
- // "counters" are represented by Gauges.
- //
- // A Counter is typically used to count requests served, tasks completed, errors
- // occurred, etc.
- //
- // To create Counter instances, use NewCounter.
- type Counter interface {
- Metric
- Collector
- // Inc increments the counter by 1. Use Add to increment it by arbitrary
- // non-negative values.
- Inc()
- // Add adds the given value to the counter. It panics if the value is <
- // 0.
- Add(float64)
- // Value return value
- Value() float64
- // Lables return Lables
- Lables() []*dto.LabelPair
- }
- // CounterOpts is an alias for Opts. See there for doc comments.
- type CounterOpts Opts
- // NewCounter creates a new Counter based on the provided CounterOpts.
- func NewCounter(opts CounterOpts) Counter {
- desc := NewDesc(
- BuildFQName(opts.Namespace, opts.Subsystem, opts.Name),
- opts.Help,
- nil,
- opts.ConstLabels,
- )
- result := &counter{value: value{desc: desc, valType: CounterValue, labelPairs: desc.constLabelPairs}}
- result.init(result) // Init self-collection.
- return result
- }
- type counter struct {
- value
- }
- func (c *counter) Add(v float64) {
- if v < 0 {
- panic(errors.New("counter cannot decrease in value"))
- }
- c.value.Add(v)
- }
- func (c *counter) Value() float64 {
- return math.Float64frombits(atomic.LoadUint64(&c.value.valBits))
- }
- func (c *counter) Lables() []*dto.LabelPair {
- return c.labelPairs
- }
- // CounterVec is a Collector that bundles a set of Counters that all share the
- // same Desc, but have different values for their variable labels. This is used
- // if you want to count the same thing partitioned by various dimensions
- // (e.g. number of HTTP requests, partitioned by response code and
- // method). Create instances with NewCounterVec.
- //
- // CounterVec embeds MetricVec. See there for a full list of methods with
- // detailed documentation.
- type CounterVec struct {
- *MetricVec
- }
- // NewCounterVec creates a new CounterVec based on the provided CounterOpts and
- // partitioned by the given label names. At least one label name must be
- // provided.
- func NewCounterVec(opts CounterOpts, labelNames []string) *CounterVec {
- desc := NewDesc(
- BuildFQName(opts.Namespace, opts.Subsystem, opts.Name),
- opts.Help,
- labelNames,
- opts.ConstLabels,
- )
- return &CounterVec{
- MetricVec: newMetricVec(desc, func(lvs ...string) Metric {
- result := &counter{value: value{
- desc: desc,
- valType: CounterValue,
- labelPairs: makeLabelPairs(desc, lvs),
- }}
- result.init(result) // Init self-collection.
- return result
- }),
- }
- }
- // GetMetricWithLabelValues replaces the method of the same name in
- // MetricVec. The difference is that this method returns a Counter and not a
- // Metric so that no type conversion is required.
- func (m *CounterVec) GetMetricWithLabelValues(lvs ...string) (Counter, error) {
- metric, err := m.MetricVec.GetMetricWithLabelValues(lvs...)
- if metric != nil {
- return metric.(Counter), err
- }
- return nil, err
- }
- // GetMetricWith replaces the method of the same name in MetricVec. The
- // difference is that this method returns a Counter and not a Metric so that no
- // type conversion is required.
- func (m *CounterVec) GetMetricWith(labels Labels) (Counter, error) {
- metric, err := m.MetricVec.GetMetricWith(labels)
- if metric != nil {
- return metric.(Counter), err
- }
- return nil, err
- }
- // WithLabelValues works as GetMetricWithLabelValues, but panics where
- // GetMetricWithLabelValues would have returned an error. By not returning an
- // error, WithLabelValues allows shortcuts like
- // myVec.WithLabelValues("404", "GET").Add(42)
- func (m *CounterVec) WithLabelValues(lvs ...string) Counter {
- return m.MetricVec.WithLabelValues(lvs...).(Counter)
- }
- // With works as GetMetricWith, but panics where GetMetricWithLabels would have
- // returned an error. By not returning an error, With allows shortcuts like
- // myVec.With(Labels{"code": "404", "method": "GET"}).Add(42)
- func (m *CounterVec) With(labels Labels) Counter {
- return m.MetricVec.With(labels).(Counter)
- }
- // CounterFunc is a Counter whose value is determined at collect time by calling a
- // provided function.
- //
- // To create CounterFunc instances, use NewCounterFunc.
- type CounterFunc interface {
- Metric
- Collector
- }
- // NewCounterFunc creates a new CounterFunc based on the provided
- // CounterOpts. The value reported is determined by calling the given function
- // from within the Write method. Take into account that metric collection may
- // happen concurrently. If that results in concurrent calls to Write, like in
- // the case where a CounterFunc is directly registered with Prometheus, the
- // provided function must be concurrency-safe. The function should also honor
- // the contract for a Counter (values only go up, not down), but compliance will
- // not be checked.
- func NewCounterFunc(opts CounterOpts, function func() float64) CounterFunc {
- return newValueFunc(NewDesc(
- BuildFQName(opts.Namespace, opts.Subsystem, opts.Name),
- opts.Help,
- nil,
- opts.ConstLabels,
- ), CounterValue, function)
- }
|