Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vertical-pod-autoscaler/pkg/utils/metrics/updater/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
)
Expand All @@ -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"},
)
Expand Down
Loading