Object Metric Status
    data class ObjectMetricStatus(val averageValue: String? = null, val currentValue: String, val metricName: String, val selector: LabelSelector? = null, val target: CrossVersionObjectReference)
ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
Constructors
Link copied to clipboard
                  constructor(averageValue: String? = null, currentValue: String, metricName: String, selector: LabelSelector? = null, target: CrossVersionObjectReference)
Properties
Link copied to clipboard
                  averageValue is the current value of the average of the metric across all relevant pods (as a quantity)
Link copied to clipboard
                  currentValue is the current value of the metric (as a quantity).
Link copied to clipboard
                  metricName is the name of the metric in question.
Link copied to clipboard
                  selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.
Link copied to clipboard
                  target is the described Kubernetes object.