Metric Status
data class MetricStatus(val containerResource: ContainerResourceMetricStatus? = null, val external: ExternalMetricStatus? = null, val object: ObjectMetricStatus? = null, val pods: PodsMetricStatus? = null, val resource: ResourceMetricStatus? = null, val type: String)
MetricStatus describes the last-read state of a single metric.
Constructors
Link copied to clipboard
fun MetricStatus(containerResource: ContainerResourceMetricStatus? = null, external: ExternalMetricStatus? = null, object: ObjectMetricStatus? = null, pods: PodsMetricStatus? = null, resource: ResourceMetricStatus? = null, type: String)
Types
Properties
Link copied to clipboard
container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
Link copied to clipboard
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
Link copied to clipboard