227 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			227 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2019 The Kubernetes 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 metrics
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"github.com/blang/semver/v4"
 | 
						|
	"github.com/prometheus/client_golang/prometheus"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	DefAgeBuckets = prometheus.DefAgeBuckets
 | 
						|
	DefBufCap     = prometheus.DefBufCap
 | 
						|
	DefMaxAge     = prometheus.DefMaxAge
 | 
						|
)
 | 
						|
 | 
						|
// Summary is our internal representation for our wrapping struct around prometheus
 | 
						|
// summaries. Summary implements both kubeCollector and ObserverMetric
 | 
						|
//
 | 
						|
// DEPRECATED: as per the metrics overhaul KEP
 | 
						|
type Summary struct {
 | 
						|
	ObserverMetric
 | 
						|
	*SummaryOpts
 | 
						|
	lazyMetric
 | 
						|
	selfCollector
 | 
						|
}
 | 
						|
 | 
						|
// NewSummary returns an object which is Summary-like. However, nothing
 | 
						|
// will be measured until the summary is registered somewhere.
 | 
						|
//
 | 
						|
// DEPRECATED: as per the metrics overhaul KEP
 | 
						|
func NewSummary(opts *SummaryOpts) *Summary {
 | 
						|
	opts.StabilityLevel.setDefaults()
 | 
						|
 | 
						|
	s := &Summary{
 | 
						|
		SummaryOpts: opts,
 | 
						|
		lazyMetric:  lazyMetric{},
 | 
						|
	}
 | 
						|
	s.setPrometheusSummary(noopMetric{})
 | 
						|
	s.lazyInit(s, BuildFQName(opts.Namespace, opts.Subsystem, opts.Name))
 | 
						|
	return s
 | 
						|
}
 | 
						|
 | 
						|
// setPrometheusSummary sets the underlying KubeGauge object, i.e. the thing that does the measurement.
 | 
						|
func (s *Summary) setPrometheusSummary(summary prometheus.Summary) {
 | 
						|
	s.ObserverMetric = summary
 | 
						|
	s.initSelfCollection(summary)
 | 
						|
}
 | 
						|
 | 
						|
// DeprecatedVersion returns a pointer to the Version or nil
 | 
						|
func (s *Summary) DeprecatedVersion() *semver.Version {
 | 
						|
	return parseSemver(s.SummaryOpts.DeprecatedVersion)
 | 
						|
}
 | 
						|
 | 
						|
// initializeMetric invokes the actual prometheus.Summary object instantiation
 | 
						|
// and stores a reference to it
 | 
						|
func (s *Summary) initializeMetric() {
 | 
						|
	s.SummaryOpts.annotateStabilityLevel()
 | 
						|
	// this actually creates the underlying prometheus gauge.
 | 
						|
	s.setPrometheusSummary(prometheus.NewSummary(s.SummaryOpts.toPromSummaryOpts()))
 | 
						|
}
 | 
						|
 | 
						|
// initializeDeprecatedMetric invokes the actual prometheus.Summary object instantiation
 | 
						|
// but modifies the Help description prior to object instantiation.
 | 
						|
func (s *Summary) initializeDeprecatedMetric() {
 | 
						|
	s.SummaryOpts.markDeprecated()
 | 
						|
	s.initializeMetric()
 | 
						|
}
 | 
						|
 | 
						|
// WithContext allows the normal Summary metric to pass in context. The context is no-op now.
 | 
						|
func (s *Summary) WithContext(ctx context.Context) ObserverMetric {
 | 
						|
	return s.ObserverMetric
 | 
						|
}
 | 
						|
 | 
						|
// SummaryVec is the internal representation of our wrapping struct around prometheus
 | 
						|
// summaryVecs.
 | 
						|
//
 | 
						|
// DEPRECATED: as per the metrics overhaul KEP
 | 
						|
type SummaryVec struct {
 | 
						|
	*prometheus.SummaryVec
 | 
						|
	*SummaryOpts
 | 
						|
	lazyMetric
 | 
						|
	originalLabels []string
 | 
						|
}
 | 
						|
 | 
						|
// NewSummaryVec returns an object which satisfies kubeCollector and wraps the
 | 
						|
// prometheus.SummaryVec object. However, the object returned will not measure
 | 
						|
// anything unless the collector is first registered, since the metric is lazily instantiated,
 | 
						|
// and only members extracted after
 | 
						|
// registration will actually measure anything.
 | 
						|
//
 | 
						|
// DEPRECATED: as per the metrics overhaul KEP
 | 
						|
func NewSummaryVec(opts *SummaryOpts, labels []string) *SummaryVec {
 | 
						|
	opts.StabilityLevel.setDefaults()
 | 
						|
 | 
						|
	fqName := BuildFQName(opts.Namespace, opts.Subsystem, opts.Name)
 | 
						|
	allowListLock.RLock()
 | 
						|
	if allowList, ok := labelValueAllowLists[fqName]; ok {
 | 
						|
		opts.LabelValueAllowLists = allowList
 | 
						|
	}
 | 
						|
	allowListLock.RUnlock()
 | 
						|
 | 
						|
	v := &SummaryVec{
 | 
						|
		SummaryOpts:    opts,
 | 
						|
		originalLabels: labels,
 | 
						|
		lazyMetric:     lazyMetric{},
 | 
						|
	}
 | 
						|
	v.lazyInit(v, fqName)
 | 
						|
	return v
 | 
						|
}
 | 
						|
 | 
						|
// DeprecatedVersion returns a pointer to the Version or nil
 | 
						|
func (v *SummaryVec) DeprecatedVersion() *semver.Version {
 | 
						|
	return parseSemver(v.SummaryOpts.DeprecatedVersion)
 | 
						|
}
 | 
						|
 | 
						|
func (v *SummaryVec) initializeMetric() {
 | 
						|
	v.SummaryOpts.annotateStabilityLevel()
 | 
						|
	v.SummaryVec = prometheus.NewSummaryVec(v.SummaryOpts.toPromSummaryOpts(), v.originalLabels)
 | 
						|
}
 | 
						|
 | 
						|
func (v *SummaryVec) initializeDeprecatedMetric() {
 | 
						|
	v.SummaryOpts.markDeprecated()
 | 
						|
	v.initializeMetric()
 | 
						|
}
 | 
						|
 | 
						|
// Default Prometheus Vec behavior is that member extraction results in creation of a new element
 | 
						|
// if one with the unique label values is not found in the underlying stored metricMap.
 | 
						|
// This means  that if this function is called but the underlying metric is not registered
 | 
						|
// (which means it will never be exposed externally nor consumed), the metric will exist in memory
 | 
						|
// for perpetuity (i.e. throughout application lifecycle).
 | 
						|
//
 | 
						|
// For reference: https://github.com/prometheus/client_golang/blob/v0.9.2/prometheus/histogram.go#L460-L470
 | 
						|
//
 | 
						|
// In contrast, the Vec behavior in this package is that member extraction before registration
 | 
						|
// returns a permanent noop object.
 | 
						|
 | 
						|
// WithLabelValues returns the ObserverMetric for the given slice of label
 | 
						|
// values (same order as the VariableLabels in Desc). If that combination of
 | 
						|
// label values is accessed for the first time, a new ObserverMetric is created IFF the summaryVec
 | 
						|
// has been registered to a metrics registry.
 | 
						|
func (v *SummaryVec) WithLabelValues(lvs ...string) ObserverMetric {
 | 
						|
	if !v.IsCreated() {
 | 
						|
		return noop
 | 
						|
	}
 | 
						|
	if v.LabelValueAllowLists != nil {
 | 
						|
		v.LabelValueAllowLists.ConstrainToAllowedList(v.originalLabels, lvs)
 | 
						|
	}
 | 
						|
	return v.SummaryVec.WithLabelValues(lvs...)
 | 
						|
}
 | 
						|
 | 
						|
// With returns the ObserverMetric for the given Labels map (the label names
 | 
						|
// must match those of the VariableLabels in Desc). If that label map is
 | 
						|
// accessed for the first time, a new ObserverMetric is created IFF the summaryVec has
 | 
						|
// been registered to a metrics registry.
 | 
						|
func (v *SummaryVec) With(labels map[string]string) ObserverMetric {
 | 
						|
	if !v.IsCreated() {
 | 
						|
		return noop
 | 
						|
	}
 | 
						|
	if v.LabelValueAllowLists != nil {
 | 
						|
		v.LabelValueAllowLists.ConstrainLabelMap(labels)
 | 
						|
	}
 | 
						|
	return v.SummaryVec.With(labels)
 | 
						|
}
 | 
						|
 | 
						|
// Delete deletes the metric where the variable labels are the same as those
 | 
						|
// passed in as labels. It returns true if a metric was deleted.
 | 
						|
//
 | 
						|
// It is not an error if the number and names of the Labels are inconsistent
 | 
						|
// with those of the VariableLabels in Desc. However, such inconsistent Labels
 | 
						|
// can never match an actual metric, so the method will always return false in
 | 
						|
// that case.
 | 
						|
func (v *SummaryVec) Delete(labels map[string]string) bool {
 | 
						|
	if !v.IsCreated() {
 | 
						|
		return false // since we haven't created the metric, we haven't deleted a metric with the passed in values
 | 
						|
	}
 | 
						|
	return v.SummaryVec.Delete(labels)
 | 
						|
}
 | 
						|
 | 
						|
// Reset deletes all metrics in this vector.
 | 
						|
func (v *SummaryVec) Reset() {
 | 
						|
	if !v.IsCreated() {
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	v.SummaryVec.Reset()
 | 
						|
}
 | 
						|
 | 
						|
// WithContext returns wrapped SummaryVec with context
 | 
						|
func (v *SummaryVec) WithContext(ctx context.Context) *SummaryVecWithContext {
 | 
						|
	return &SummaryVecWithContext{
 | 
						|
		ctx:        ctx,
 | 
						|
		SummaryVec: v,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// SummaryVecWithContext is the wrapper of SummaryVec with context.
 | 
						|
type SummaryVecWithContext struct {
 | 
						|
	*SummaryVec
 | 
						|
	ctx context.Context
 | 
						|
}
 | 
						|
 | 
						|
// WithLabelValues is the wrapper of SummaryVec.WithLabelValues.
 | 
						|
func (vc *SummaryVecWithContext) WithLabelValues(lvs ...string) ObserverMetric {
 | 
						|
	return vc.SummaryVec.WithLabelValues(lvs...)
 | 
						|
}
 | 
						|
 | 
						|
// With is the wrapper of SummaryVec.With.
 | 
						|
func (vc *SummaryVecWithContext) With(labels map[string]string) ObserverMetric {
 | 
						|
	return vc.SummaryVec.With(labels)
 | 
						|
}
 |