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 aHttpStats
record class.HttpStats
(StreamInput in) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclientStats
record component.final boolean
Indicates whether some other object is "equal to" this one.long
long
final int
hashCode()
Returns a hash code value for this object.Returns the value of thehttpRouteStats
record component.static HttpStats
long
Returns the value of theserverOpen
record component.final String
toString()
Returns a string representation of this record class.long
Returns the value of thetotalOpen
record component.Iterator
<? extends ToXContent> toXContentChunked
(ToXContent.Params outerParams) Create an iterator ofToXContent
chunks for a REST response.void
writeTo
(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.common.xcontent.ChunkedToXContent
isFragment, toXContentChunkedV7
-
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 aHttpStats
record class.- Parameters:
serverOpen
- the value for theserverOpen
record componenttotalOpen
- the value for thetotalOpen
record componentclientStats
- the value for theclientStats
record componenthttpRouteStats
- the value for thehttpRouteStats
record component
-
-
Method Details
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
getServerOpen
public long getServerOpen() -
getTotalOpen
public long getTotalOpen() -
getClientStats
-
merge
-
toXContentChunked
Description copied from interface:ChunkedToXContent
Create an iterator ofToXContent
chunks for a REST response. Each chunk is serialized with the sameXContentBuilder
andToXContent.Params
, which is also the same as theToXContent.Params
passed as theparams
argument. 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 alsoChunkedToXContentHelper
for 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:
toXContentChunked
in 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 theserverOpen
record component.- Returns:
- the value of the
serverOpen
record component
-
totalOpen
public long totalOpen()Returns the value of thetotalOpen
record component.- Returns:
- the value of the
totalOpen
record component
-
clientStats
Returns the value of theclientStats
record component.- Returns:
- the value of the
clientStats
record component
-
httpRouteStats
Returns the value of thehttpRouteStats
record component.- Returns:
- the value of the
httpRouteStats
record component
-