Module org.elasticsearch.server
Record Class NodeAllocationStats
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.routing.allocation.NodeAllocationStats
- All Implemented Interfaces:
Writeable
,ToXContent
,ToXContentFragment
public record NodeAllocationStats(int shards, int undesiredShards, double forecastedIngestLoad, long forecastedDiskUsage, long currentDiskUsage)
extends Record
implements Writeable, ToXContentFragment
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
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.xcontent.ToXContent
EMPTY, EMPTY_PARAMS
-
Constructor Summary
ConstructorsConstructorDescriptionNodeAllocationStats
(int shards, int undesiredShards, double forecastedIngestLoad, long forecastedDiskUsage, long currentDiskUsage) Creates an instance of aNodeAllocationStats
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the value of thecurrentDiskUsage
record component.final boolean
Indicates whether some other object is "equal to" this one.long
Returns the value of theforecastedDiskUsage
record component.double
Returns the value of theforecastedIngestLoad
record component.final int
hashCode()
Returns a hash code value for this object.int
shards()
Returns the value of theshards
record component.final String
toString()
Returns a string representation of this record class.toXContent
(XContentBuilder builder, ToXContent.Params params) int
Returns the value of theundesiredShards
record component.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.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
NodeAllocationStats
- Throws:
IOException
-
NodeAllocationStats
public NodeAllocationStats(int shards, int undesiredShards, double forecastedIngestLoad, long forecastedDiskUsage, long currentDiskUsage) Creates an instance of aNodeAllocationStats
record class.- Parameters:
shards
- the value for theshards
record componentundesiredShards
- the value for theundesiredShards
record componentforecastedIngestLoad
- the value for theforecastedIngestLoad
record componentforecastedDiskUsage
- the value for theforecastedDiskUsage
record componentcurrentDiskUsage
- the value for thecurrentDiskUsage
record component
-
-
Method Details
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceToXContent
- Throws:
IOException
-
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. All components in this record class are compared with '=='. -
shards
public int shards()Returns the value of theshards
record component.- Returns:
- the value of the
shards
record component
-
undesiredShards
public int undesiredShards()Returns the value of theundesiredShards
record component.- Returns:
- the value of the
undesiredShards
record component
-
forecastedIngestLoad
public double forecastedIngestLoad()Returns the value of theforecastedIngestLoad
record component.- Returns:
- the value of the
forecastedIngestLoad
record component
-
forecastedDiskUsage
public long forecastedDiskUsage()Returns the value of theforecastedDiskUsage
record component.- Returns:
- the value of the
forecastedDiskUsage
record component
-
currentDiskUsage
public long currentDiskUsage()Returns the value of thecurrentDiskUsage
record component.- Returns:
- the value of the
currentDiskUsage
record component
-