Struct k8s_openapi::v1_8::api::autoscaling::v2beta1::MetricStatus
source · pub struct MetricStatus {
pub object: Option<ObjectMetricStatus>,
pub pods: Option<PodsMetricStatus>,
pub resource: Option<ResourceMetricStatus>,
pub type_: String,
}
Expand description
MetricStatus describes the last-read state of a single metric.
Fields§
§object: Option<ObjectMetricStatus>
object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
pods: Option<PodsMetricStatus>
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
resource: Option<ResourceMetricStatus>
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.
type_: String
type is the type of metric source. It will match one of the fields below.
Trait Implementations§
source§impl Clone for MetricStatus
impl Clone for MetricStatus
source§fn clone(&self) -> MetricStatus
fn clone(&self) -> MetricStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more