Skip to content

Commit 8e8979c

Browse files
committed
Fix typos in the metric name for VPA In-Place update
Signed-off-by: Tsubasa Nagasawa <[email protected]>
1 parent 2b33c4c commit 8e8979c

File tree

1 file changed

+2
-2
lines changed
  • vertical-pod-autoscaler/pkg/utils/metrics/updater

1 file changed

+2
-2
lines changed

vertical-pod-autoscaler/pkg/utils/metrics/updater/updater.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ var (
7979
inPlaceUpdatableCount = prometheus.NewGaugeVec(
8080
prometheus.GaugeOpts{
8181
Namespace: metricsNamespace,
82-
Name: "in_place_Updatable_pods_total",
82+
Name: "in_place_updatable_pods_total",
8383
Help: "Number of Pods matching in place update criteria.",
8484
}, []string{"vpa_size_log2"},
8585
)
@@ -95,7 +95,7 @@ var (
9595
vpasWithInPlaceUpdatablePodsCount = prometheus.NewGaugeVec(
9696
prometheus.GaugeOpts{
9797
Namespace: metricsNamespace,
98-
Name: "vpas_with_in_place_Updatable_pods_total",
98+
Name: "vpas_with_in_place_updatable_pods_total",
9999
Help: "Number of VPA objects with at least one Pod matching in place update criteria.",
100100
}, []string{"vpa_size_log2"},
101101
)

0 commit comments

Comments
 (0)