case class ResourceMetricStatus(current: MetricValueStatus, name: String) extends Product with Serializable

ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, 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.

name

Name is the name of the resource in question.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResourceMetricStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ResourceMetricStatus(current: MetricValueStatus, name: String)

    name

    Name is the name of the resource in question.

Value Members

  1. val current: MetricValueStatus
  2. def getCurrent: IO[K8sFailure, MetricValueStatus]

    Gets current.

    Gets current.

    This effect always succeeds, it is safe to use the field current directly.

  3. def getName: IO[K8sFailure, String]

    Name is the name of the resource in question.

    Name is the name of the resource in question.

    This effect always succeeds, it is safe to use the field name directly.

  4. val name: String