Class JvmIncubatingAttributes.JvmThreadStateIncubatingValues

java.lang.Object
io.opentelemetry.semconv.incubating.JvmIncubatingAttributes.JvmThreadStateIncubatingValues
Enclosing class:
JvmIncubatingAttributes

@Deprecated public static final class JvmIncubatingAttributes.JvmThreadStateIncubatingValues extends Object
Deprecated.
deprecated in favor of stable JvmAttributes.JvmThreadStateValues.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Deprecated.
    A thread that is blocked waiting for a monitor lock is in this state.
    static final String
    Deprecated.
    A thread that has not yet started is in this state.
    static final String
    Deprecated.
    A thread executing in the Java virtual machine is in this state.
    static final String
    Deprecated.
    A thread that has exited is in this state.
    static final String
    Deprecated.
    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
    Deprecated.
    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
      Deprecated.
      A thread that has not yet started is in this state.
      See Also:
    • RUNNABLE

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

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

      public static final String WAITING
      Deprecated.
      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
      Deprecated.
      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
      Deprecated.
      A thread that has exited is in this state.
      See Also: