mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 09:36:58 +02:00
* 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>
105 lines
2.7 KiB
Go
105 lines
2.7 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 (
|
|
"testing"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/stretchr/testify/assert"
|
|
"sigs.k8s.io/external-dns/internal/testutils"
|
|
)
|
|
|
|
type MockMetric struct {
|
|
FQDN string
|
|
}
|
|
|
|
func (m *MockMetric) Get() *Metric {
|
|
return &Metric{FQDN: m.FQDN}
|
|
}
|
|
|
|
func TestMustRegister(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
metrics []IMetric
|
|
expected int
|
|
}{
|
|
{
|
|
name: "single metric",
|
|
metrics: []IMetric{
|
|
NewCounterWithOpts(prometheus.CounterOpts{Name: "test_counter_1"}),
|
|
},
|
|
expected: 1,
|
|
},
|
|
{
|
|
name: "two metrics",
|
|
metrics: []IMetric{
|
|
NewGaugeWithOpts(prometheus.GaugeOpts{Name: "test_gauge_2", Subsystem: "test"}),
|
|
NewCounterWithOpts(prometheus.CounterOpts{Name: "test_counter_2", Subsystem: "app"}),
|
|
},
|
|
expected: 2,
|
|
},
|
|
{
|
|
name: "mix of metrics",
|
|
metrics: []IMetric{
|
|
NewGaugeWithOpts(prometheus.GaugeOpts{Name: "test_gauge_3"}),
|
|
NewCounterWithOpts(prometheus.CounterOpts{Name: "test_counter_3"}),
|
|
NewCounterVecWithOpts(prometheus.CounterOpts{Name: "test_counter_vec_3"}, []string{"label"}),
|
|
NewGaugedVectorOpts(prometheus.GaugeOpts{Name: "test_gauge_v_3"}, []string{"label"}),
|
|
},
|
|
expected: 4,
|
|
},
|
|
{
|
|
name: "unsupported metric",
|
|
metrics: []IMetric{
|
|
&MockMetric{FQDN: "unsupported_metric"},
|
|
},
|
|
expected: 0,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
registry := NewMetricsRegister()
|
|
for _, m := range tt.metrics {
|
|
registry.MustRegister(m)
|
|
}
|
|
assert.Len(t, registry.Metrics, tt.expected)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUnsupportedMetricWarning(t *testing.T) {
|
|
hook := testutils.LogsUnderTestWithLogLevel(log.WarnLevel, t)
|
|
registry := NewMetricsRegister()
|
|
mockUnsupported := &MockMetric{FQDN: "unsupported_metric"}
|
|
registry.MustRegister(mockUnsupported)
|
|
assert.NotContains(t, registry.mName, "unsupported_metric")
|
|
|
|
testutils.TestHelperLogContains("Unsupported metric type: *metrics.MockMetric", hook, t)
|
|
}
|
|
|
|
func TestNewMetricsRegister(t *testing.T) {
|
|
registry := NewMetricsRegister()
|
|
|
|
assert.NotNil(t, registry)
|
|
assert.NotNil(t, registry.Registerer)
|
|
assert.Empty(t, registry.Metrics)
|
|
assert.Empty(t, registry.mName)
|
|
}
|