external-dns/pkg/metrics/models.go
Ivan Ka d63bfb324c
feat(controller)!: publish metrics for all supported endpoint types (#5516)
* feat(controller): add more metrics for all supported endpoint types

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* feat(controller): add cardinality and labels for records metrics

Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>

* feat(controller): add cardinality and labels for records metrics

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* fix rebase

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

---------

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2025-06-13 02:40:58 -07:00

147 lines
3.3 KiB
Go

/*
Copyright 2025 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 (
"fmt"
"strings"
"github.com/prometheus/client_golang/prometheus"
)
type MetricRegistry struct {
Registerer prometheus.Registerer
Metrics []*Metric
mName map[string]bool
}
type Metric struct {
Type string
Namespace string
Subsystem string
Name string
Help string
FQDN string
}
type IMetric interface {
Get() *Metric
}
type GaugeMetric struct {
Metric
Gauge prometheus.Gauge
}
func (g GaugeMetric) Get() *Metric {
return &g.Metric
}
type CounterMetric struct {
Metric
Counter prometheus.Counter
}
func (g CounterMetric) Get() *Metric {
return &g.Metric
}
type CounterVecMetric struct {
Metric
CounterVec *prometheus.CounterVec
}
func (g CounterVecMetric) Get() *Metric {
return &g.Metric
}
type GaugeVecMetric struct {
Metric
Gauge prometheus.GaugeVec
}
func (g GaugeVecMetric) Get() *Metric {
return &g.Metric
}
// SetWithLabels sets the value of the Gauge metric for the specified label values.
// All label values are converted to lowercase before being applied.
func (g GaugeVecMetric) SetWithLabels(value float64, lvs ...string) {
for i, v := range lvs {
lvs[i] = strings.ToLower(v)
}
g.Gauge.WithLabelValues(lvs...).Set(value)
}
func NewGaugeWithOpts(opts prometheus.GaugeOpts) GaugeMetric {
return GaugeMetric{
Metric: Metric{
Type: "gauge",
Name: opts.Name,
FQDN: fmt.Sprintf("%s_%s", opts.Subsystem, opts.Name),
Namespace: opts.Namespace,
Subsystem: opts.Subsystem,
Help: opts.Help,
},
Gauge: prometheus.NewGauge(opts),
}
}
// NewGaugedVectorOpts creates a new GaugeVec based on the provided GaugeOpts and
// partitioned by the given label names.
func NewGaugedVectorOpts(opts prometheus.GaugeOpts, labelNames []string) GaugeVecMetric {
return GaugeVecMetric{
Metric: Metric{
Type: "gauge",
Name: opts.Name,
FQDN: fmt.Sprintf("%s_%s", opts.Subsystem, opts.Name),
Namespace: opts.Namespace,
Subsystem: opts.Subsystem,
Help: opts.Help,
},
Gauge: *prometheus.NewGaugeVec(opts, labelNames),
}
}
func NewCounterWithOpts(opts prometheus.CounterOpts) CounterMetric {
return CounterMetric{
Metric: Metric{
Type: "counter",
Name: opts.Name,
FQDN: fmt.Sprintf("%s_%s", opts.Subsystem, opts.Name),
Namespace: opts.Namespace,
Subsystem: opts.Subsystem,
Help: opts.Help,
},
Counter: prometheus.NewCounter(opts),
}
}
func NewCounterVecWithOpts(opts prometheus.CounterOpts, labelNames []string) CounterVecMetric {
return CounterVecMetric{
Metric: Metric{
Type: "counter",
Name: opts.Name,
FQDN: fmt.Sprintf("%s_%s", opts.Subsystem, opts.Name),
Namespace: opts.Namespace,
Subsystem: opts.Subsystem,
Help: opts.Help,
},
CounterVec: prometheus.NewCounterVec(opts, labelNames),
}
}