Class K8sIncubatingAttributes.K8sPodStatusPhaseIncubatingValues

java.lang.Object
io.opentelemetry.semconv.incubating.K8sIncubatingAttributes.K8sPodStatusPhaseIncubatingValues
Enclosing class:
K8sIncubatingAttributes

public static final class K8sIncubatingAttributes.K8sPodStatusPhaseIncubatingValues extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    All containers in the pod have terminated, and at least one container has terminated in a failure (exited with a non-zero exit code or was stopped by the system).
    static final String
    The pod has been accepted by the system, but one or more of the containers has not been started.
    static final String
    The pod has been bound to a node and all of the containers have been started.
    static final String
    All containers in the pod have voluntarily terminated with a container exit code of 0, and the system is not going to restart any of these containers.
    static final String
    For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • PENDING

      public static final String PENDING
      The pod has been accepted by the system, but one or more of the containers has not been started. This includes time before being bound to a node, as well as time spent pulling images onto the host.
      See Also:
    • RUNNING

      public static final String RUNNING
      The pod has been bound to a node and all of the containers have been started. At least one container is still running or is in the process of being restarted.
      See Also:
    • SUCCEEDED

      public static final String SUCCEEDED
      All containers in the pod have voluntarily terminated with a container exit code of 0, and the system is not going to restart any of these containers.
      See Also:
    • FAILED

      public static final String FAILED
      All containers in the pod have terminated, and at least one container has terminated in a failure (exited with a non-zero exit code or was stopped by the system).
      See Also:
    • UNKNOWN

      public static final String UNKNOWN
      For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.
      See Also: