Merge pull request #8122 from toVersus/chore/vpa-inplace-metrics-name-typo

Fix typos in the metric name for VPA In-Place update
This commit is contained in:
Kubernetes Prow Robot 2025-05-12 21:41:15 -07:00 committed by GitHub
commit 8d45fcd183
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ var (
inPlaceUpdatableCount = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: metricsNamespace,
Name: "in_place_Updatable_pods_total",
Name: "in_place_updatable_pods_total",
Help: "Number of Pods matching in place update criteria.",
}, []string{"vpa_size_log2"},
)
@ -95,7 +95,7 @@ var (
vpasWithInPlaceUpdatablePodsCount = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: metricsNamespace,
Name: "vpas_with_in_place_Updatable_pods_total",
Name: "vpas_with_in_place_updatable_pods_total",
Help: "Number of VPA objects with at least one Pod matching in place update criteria.",
}, []string{"vpa_size_log2"},
)