Class JvmAttributes.JvmThreadStateValues

java.lang.Object
io.opentelemetry.semconv.JvmAttributes.JvmThreadStateValues
Enclosing class:
JvmAttributes

public static final class JvmAttributes.JvmThreadStateValues extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    A thread that is blocked waiting for a monitor lock is in this state.
    static final String
    A thread that has not yet started is in this state.
    static final String
    A thread executing in the Java virtual machine is in this state.
    static final String
    A thread that has exited is in this state.
    static final String
    A thread that is waiting for another thread to perform an action for up to a specified waiting time is in this state.
    static final String
    A thread that is waiting indefinitely for another thread to perform a particular action is in this state.
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • NEW

      public static final String NEW
      A thread that has not yet started is in this state.
      See Also:
    • RUNNABLE

      public static final String RUNNABLE
      A thread executing in the Java virtual machine is in this state.
      See Also:
    • BLOCKED

      public static final String BLOCKED
      A thread that is blocked waiting for a monitor lock is in this state.
      See Also:
    • WAITING

      public static final String WAITING
      A thread that is waiting indefinitely for another thread to perform a particular action is in this state.
      See Also:
    • TIMED_WAITING

      public static final String TIMED_WAITING
      A thread that is waiting for another thread to perform an action for up to a specified waiting time is in this state.
      See Also:
    • TERMINATED

      public static final String TERMINATED
      A thread that has exited is in this state.
      See Also: