MetricValueStatusPatch

data class MetricValueStatusPatch(val averageUtilization: Int? = null, val averageValue: String? = null, val value: String? = null)

MetricValueStatus holds the current value for a metric

Constructors

Link copied to clipboard
constructor(averageUtilization: Int? = null, averageValue: String? = null, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val averageUtilization: Int? = null

currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

Link copied to clipboard
val averageValue: String? = null

averageValue is the current value of the average of the metric across all relevant pods (as a quantity)

Link copied to clipboard
val value: String? = null

value is the current value of the metric (as a quantity).