mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
Merge pull request #130084 from richabanker/automated-cherry-pick-of-#128430-upstream-release-1.31
Automated cherry pick of #128430: do not install handler for '/metrics/slis' endpoint using sync.Once
This commit is contained in:
commit
f165a1dc46
@ -124,6 +124,7 @@ func AuthzTestCases() []AuthzTestCase {
|
||||
"/logs/": "log",
|
||||
"/logs/{logpath:*}": "log",
|
||||
"/metrics": "metrics",
|
||||
"/metrics/slis": "metrics",
|
||||
"/metrics/cadvisor": "metrics",
|
||||
"/metrics/probes": "metrics",
|
||||
"/metrics/resource": "metrics",
|
||||
|
@ -1528,3 +1528,19 @@ func TestTrimURLPath(t *testing.T) {
|
||||
assert.Equal(t, test.expected, getURLRootPath(test.path), fmt.Sprintf("path is: %s", test.path))
|
||||
}
|
||||
}
|
||||
|
||||
func TestNewServerRegistersMetricsSLIsEndpointTwice(t *testing.T) {
|
||||
host := &fakeKubelet{
|
||||
hostnameFunc: func() string {
|
||||
return "127.0.0.1"
|
||||
},
|
||||
}
|
||||
resourceAnalyzer := stats.NewResourceAnalyzer(nil, time.Minute, &record.FakeRecorder{})
|
||||
|
||||
server1 := NewServer(host, resourceAnalyzer, nil, nil)
|
||||
server2 := NewServer(host, resourceAnalyzer, nil, nil)
|
||||
|
||||
// Check if both servers registered the /metrics/slis endpoint
|
||||
assert.Contains(t, server1.restfulCont.RegisteredHandlePaths(), "/metrics/slis", "First server should register /metrics/slis")
|
||||
assert.Contains(t, server2.restfulCont.RegisteredHandlePaths(), "/metrics/slis", "Second server should register /metrics/slis")
|
||||
}
|
||||
|
@ -38,8 +38,8 @@ type SLIMetrics struct{}
|
||||
func (s SLIMetrics) Install(m mux) {
|
||||
installOnce.Do(func() {
|
||||
Register(Registry)
|
||||
m.Handle("/metrics/slis", metrics.HandlerFor(Registry, metrics.HandlerOpts{}))
|
||||
})
|
||||
m.Handle("/metrics/slis", metrics.HandlerFor(Registry, metrics.HandlerOpts{}))
|
||||
}
|
||||
|
||||
type SLIMetricsWithReset struct{}
|
||||
@ -48,6 +48,6 @@ type SLIMetricsWithReset struct{}
|
||||
func (s SLIMetricsWithReset) Install(m mux) {
|
||||
installWithResetOnce.Do(func() {
|
||||
Register(Registry)
|
||||
m.Handle("/metrics/slis", metrics.HandlerWithReset(Registry, metrics.HandlerOpts{}))
|
||||
})
|
||||
m.Handle("/metrics/slis", metrics.HandlerWithReset(Registry, metrics.HandlerOpts{}))
|
||||
}
|
||||
|
@ -0,0 +1,44 @@
|
||||
/*
|
||||
Copyright 2024 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 slis
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
type mockMux struct {
|
||||
handledPaths []string
|
||||
}
|
||||
|
||||
func (m *mockMux) Handle(path string, handler http.Handler) {
|
||||
m.handledPaths = append(m.handledPaths, path)
|
||||
}
|
||||
|
||||
func TestSLIMetrics_Install(t *testing.T) {
|
||||
m := &mockMux{}
|
||||
s := SLIMetrics{}
|
||||
|
||||
s.Install(m)
|
||||
assert.Equal(t, []string{"/metrics/slis"}, m.handledPaths)
|
||||
|
||||
s.Install(m)
|
||||
// Assert that the path is registered twice for the 2 calls made to Install().
|
||||
assert.Equal(t, []string{"/metrics/slis", "/metrics/slis"}, m.handledPaths, "Should handle the path twice.")
|
||||
}
|
Loading…
Reference in New Issue
Block a user