Fix typos in the metric name for VPA In-Place update

Signed-off-by: Tsubasa Nagasawa <toversus2357@gmail.com>
This commit is contained in:
Tsubasa Nagasawa 2025-05-13 08:52:03 +09:00
parent 2b33c4c790
commit 8e8979c91a
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"},
)