java.lang.Object
java.lang.Record
org.elasticsearch.http.HttpStats
- All Implemented Interfaces:
Writeable,ChunkedToXContent
public record HttpStats(long serverOpen, long totalOpen, List<HttpStats.ClientStats> clientStats, Map<String,HttpRouteStats> httpRouteStats)
extends Record
implements Writeable, ChunkedToXContent
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
FieldsFields inherited from interface org.elasticsearch.common.xcontent.ChunkedToXContent
EMPTY -
Constructor Summary
ConstructorsConstructorDescriptionHttpStats(long serverOpen, long totalOpened) HttpStats(long serverOpen, long totalOpen, List<HttpStats.ClientStats> clientStats, Map<String, HttpRouteStats> httpRouteStats) Creates an instance of aHttpStatsrecord class.HttpStats(StreamInput in) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclientStatsrecord component.final booleanIndicates whether some other object is "equal to" this one.longlongfinal inthashCode()Returns a hash code value for this object.Returns the value of thehttpRouteStatsrecord component.static HttpStatslongReturns the value of theserverOpenrecord component.final StringtoString()Returns a string representation of this record class.longReturns the value of thetotalOpenrecord component.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, toXContentChunked, toXContentChunkedV8
-
Field Details
-
IDENTITY
-
-
Constructor Details
-
HttpStats
public HttpStats(long serverOpen, long totalOpened) -
HttpStats
- Throws:
IOException
-
HttpStats
public HttpStats(long serverOpen, long totalOpen, List<HttpStats.ClientStats> clientStats, Map<String, HttpRouteStats> httpRouteStats) Creates an instance of aHttpStatsrecord class.- Parameters:
serverOpen- the value for theserverOpenrecord componenttotalOpen- the value for thetotalOpenrecord componentclientStats- the value for theclientStatsrecord componenthttpRouteStats- the value for thehttpRouteStatsrecord component
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
getServerOpen
public long getServerOpen() -
getTotalOpen
public long getTotalOpen() -
getClientStats
-
merge
-
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 '=='. -
serverOpen
public long serverOpen()Returns the value of theserverOpenrecord component.- Returns:
- the value of the
serverOpenrecord component
-
totalOpen
public long totalOpen()Returns the value of thetotalOpenrecord component.- Returns:
- the value of the
totalOpenrecord component
-
clientStats
Returns the value of theclientStatsrecord component.- Returns:
- the value of the
clientStatsrecord component
-
httpRouteStats
Returns the value of thehttpRouteStatsrecord component.- Returns:
- the value of the
httpRouteStatsrecord component
-