Class ThreadDumpDTO

java.lang.Object
org.apache.nifi.api.toolkit.model.ThreadDumpDTO

@Generated(value="io.swagger.codegen.v3.generators.java.JavaClientCodegen", date="2023-11-22T19:25:26.907436939-06:00[America/Chicago]") public class ThreadDumpDTO extends Object
ThreadDumpDTO
  • Field Details

    • nodeId

      private String nodeId
    • nodeAddress

      private String nodeAddress
    • apiPort

      private Integer apiPort
    • stackTrace

      private String stackTrace
    • threadName

      private String threadName
    • threadActiveMillis

      private Long threadActiveMillis
    • taskTerminated

      private Boolean taskTerminated
  • Constructor Details

    • ThreadDumpDTO

      public ThreadDumpDTO()
  • Method Details

    • nodeId

      public ThreadDumpDTO nodeId(String nodeId)
    • getNodeId

      public String getNodeId()
      The ID of the node in the cluster
      Returns:
      nodeId
    • setNodeId

      public void setNodeId(String nodeId)
    • nodeAddress

      public ThreadDumpDTO nodeAddress(String nodeAddress)
    • getNodeAddress

      public String getNodeAddress()
      The address of the node in the cluster
      Returns:
      nodeAddress
    • setNodeAddress

      public void setNodeAddress(String nodeAddress)
    • apiPort

      public ThreadDumpDTO apiPort(Integer apiPort)
    • getApiPort

      public Integer getApiPort()
      The port the node is listening for API requests.
      Returns:
      apiPort
    • setApiPort

      public void setApiPort(Integer apiPort)
    • stackTrace

      public ThreadDumpDTO stackTrace(String stackTrace)
    • getStackTrace

      public String getStackTrace()
      The stack trace for the thread
      Returns:
      stackTrace
    • setStackTrace

      public void setStackTrace(String stackTrace)
    • threadName

      public ThreadDumpDTO threadName(String threadName)
    • getThreadName

      public String getThreadName()
      The name of the thread
      Returns:
      threadName
    • setThreadName

      public void setThreadName(String threadName)
    • threadActiveMillis

      public ThreadDumpDTO threadActiveMillis(Long threadActiveMillis)
    • getThreadActiveMillis

      public Long getThreadActiveMillis()
      The number of milliseconds that the thread has been executing in the Processor
      Returns:
      threadActiveMillis
    • setThreadActiveMillis

      public void setThreadActiveMillis(Long threadActiveMillis)
    • taskTerminated

      public ThreadDumpDTO taskTerminated(Boolean taskTerminated)
    • isTaskTerminated

      public Boolean isTaskTerminated()
      Indicates whether or not the user has requested that the task be terminated. If this is true, it may indicate that the thread is in a state where it will continue running indefinitely without returning.
      Returns:
      taskTerminated
    • setTaskTerminated

      public void setTaskTerminated(Boolean taskTerminated)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toIndentedString

      private String toIndentedString(Object o)
      Convert the given object to string with each line indented by 4 spaces (except the first line).