Module org.elasticsearch.server
Package org.elasticsearch.threadpool
Record Class ThreadPoolStats.Stats
java.lang.Object
java.lang.Record
org.elasticsearch.threadpool.ThreadPoolStats.Stats
- All Implemented Interfaces:
Comparable<ThreadPoolStats.Stats>,Writeable,ChunkedToXContent
- Enclosing class:
ThreadPoolStats
public static record ThreadPoolStats.Stats(String name, int threads, int queue, int active, long rejected, int largest, long completed)
extends Record
implements Writeable, ChunkedToXContent, Comparable<ThreadPoolStats.Stats>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields inherited from interface org.elasticsearch.common.xcontent.ChunkedToXContent
EMPTY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintactive()Returns the value of theactiverecord component.intcompareTo(ThreadPoolStats.Stats other) longReturns the value of thecompletedrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intlargest()Returns the value of thelargestrecord component.name()Returns the value of thenamerecord component.intqueue()Returns the value of thequeuerecord component.longrejected()Returns the value of therejectedrecord component.intthreads()Returns the value of thethreadsrecord component.final StringtoString()Returns a string representation of this record class.Iterator<? extends ToXContent> toXContentChunked(ToXContent.Params outerParams) Create an iterator ofToXContentchunks for a REST response.voidwriteTo(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ChunkedToXContent
isFragment, toXContentChunkedV7
-
Constructor Details
-
Stats
- Throws:
IOException
-
Stats
public Stats(String name, int threads, int queue, int active, long rejected, int largest, long completed) Creates an instance of aStatsrecord class.- Parameters:
name- the value for thenamerecord componentthreads- the value for thethreadsrecord componentqueue- the value for thequeuerecord componentactive- the value for theactiverecord componentrejected- the value for therejectedrecord componentlargest- the value for thelargestrecord componentcompleted- the value for thecompletedrecord component
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
compareTo
- Specified by:
compareToin interfaceComparable<ThreadPoolStats.Stats>
-
toXContentChunked
Description copied from interface:ChunkedToXContentCreate an iterator ofToXContentchunks for a REST response. Each chunk is serialized with the sameXContentBuilderandToXContent.Params, which is also the same as theToXContent.Paramspassed as theparamsargument. For best results, all chunks should beO(1)size. The last chunk in the iterator must always yield at least one byte of output. See alsoChunkedToXContentHelperfor some handy utilities.Note that chunked response bodies cannot send deprecation warning headers once transmission has started, so implementations must check for deprecated feature use before returning.
- Specified by:
toXContentChunkedin interfaceChunkedToXContent- Returns:
- iterator over chunks of
ToXContent
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
threads
public int threads()Returns the value of thethreadsrecord component.- Returns:
- the value of the
threadsrecord component
-
queue
public int queue()Returns the value of thequeuerecord component.- Returns:
- the value of the
queuerecord component
-
active
public int active()Returns the value of theactiverecord component.- Returns:
- the value of the
activerecord component
-
rejected
public long rejected()Returns the value of therejectedrecord component.- Returns:
- the value of the
rejectedrecord component
-
largest
public int largest()Returns the value of thelargestrecord component.- Returns:
- the value of the
largestrecord component
-
completed
public long completed()Returns the value of thecompletedrecord component.- Returns:
- the value of the
completedrecord component
-