mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-05-28 04:04:39 -04:00
Merge pull request #136539 from lukasmetzner/feat-ccm-route-resync-metric
feat(ccm): introduce metric route_controller_route_sync_total
This commit is contained in:
commit
5dcd4e8d17
2 changed files with 50 additions and 0 deletions
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
Copyright 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 route
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"k8s.io/component-base/metrics"
|
||||
"k8s.io/component-base/metrics/legacyregistry"
|
||||
)
|
||||
|
||||
const (
|
||||
// subsystem is the name of this subsystem used for prometheus metrics.
|
||||
subsystem = "route_controller"
|
||||
)
|
||||
|
||||
var registration sync.Once
|
||||
|
||||
var (
|
||||
routeSyncCount = metrics.NewCounter(&metrics.CounterOpts{
|
||||
Name: "route_sync_total",
|
||||
Subsystem: subsystem,
|
||||
Help: "A metric counting the amount of times routes have been synced with the cloud provider.",
|
||||
StabilityLevel: metrics.ALPHA,
|
||||
})
|
||||
)
|
||||
|
||||
func registerMetrics() {
|
||||
registration.Do(func() {
|
||||
legacyregistry.MustRegister(routeSyncCount)
|
||||
})
|
||||
}
|
||||
|
|
@ -87,6 +87,8 @@ func New(
|
|||
clusterName string,
|
||||
clusterCIDRs []*net.IPNet,
|
||||
) (*RouteController, error) {
|
||||
registerMetrics()
|
||||
|
||||
if len(clusterCIDRs) == 0 {
|
||||
klog.Fatal("RouteController: Must specify clusterCIDR.")
|
||||
}
|
||||
|
|
@ -247,6 +249,8 @@ func (rc *RouteController) processNextWorkItem(ctx context.Context) bool {
|
|||
}
|
||||
|
||||
func (rc *RouteController) reconcileNodeRoutes(ctx context.Context) error {
|
||||
routeSyncCount.Inc()
|
||||
|
||||
routeList, err := rc.routes.ListRoutes(ctx, rc.clusterName)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error listing routes: %v", err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue