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

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

container

Container is the name of the container in the pods of the scaling target

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. ContainerResourceMetricStatus
  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 ContainerResourceMetricStatus(container: String, current: MetricValueStatus, name: String)

    container

    Container is the name of the container in the pods of the scaling target

    name

    Name is the name of the resource in question.

Value Members

  1. val container: String
  2. val current: MetricValueStatus
  3. def getContainer: IO[K8sFailure, String]

    Container is the name of the container in the pods of the scaling target

    Container is the name of the container in the pods of the scaling target

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

  4. def getCurrent: IO[K8sFailure, MetricValueStatus]

    Gets current.

    Gets current.

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

  5. 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.

  6. val name: String