Package org.elasticsearch.index.recovery
Class RecoveryStats
java.lang.Object
org.elasticsearch.index.recovery.RecoveryStats
- All Implemented Interfaces:
Writeable
,org.elasticsearch.xcontent.ToXContent
,org.elasticsearch.xcontent.ToXContentFragment
public class RecoveryStats
extends Object
implements org.elasticsearch.xcontent.ToXContentFragment, Writeable
Recovery related statistics, starting at the shard level and allowing aggregation to
indices and node level
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.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_PARAMS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(RecoveryStats recoveryStats) void
addThrottleTime
(long nanos) void
addTotals
(RecoveryStats recoveryStats) int
Number of ongoing recoveries for which a shard serves as a sourceint
Number of ongoing recoveries for which a shard serves as a targetvoid
void
void
void
org.elasticsearch.core.TimeValue
Total time recoveries waited due to throttlingtoString()
org.elasticsearch.xcontent.XContentBuilder
toXContent
(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) void
writeTo
(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
RecoveryStats
public RecoveryStats() -
RecoveryStats
- Throws:
IOException
-
-
Method Details
-
add
-
addTotals
-
currentAsSource
public int currentAsSource()Number of ongoing recoveries for which a shard serves as a source -
currentAsTarget
public int currentAsTarget()Number of ongoing recoveries for which a shard serves as a target -
throttleTime
public org.elasticsearch.core.TimeValue throttleTime()Total time recoveries waited due to throttling -
incCurrentAsTarget
public void incCurrentAsTarget() -
decCurrentAsTarget
public void decCurrentAsTarget() -
incCurrentAsSource
public void incCurrentAsSource() -
decCurrentAsSource
public void decCurrentAsSource() -
addThrottleTime
public void addThrottleTime(long nanos) -
toXContent
public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceorg.elasticsearch.xcontent.ToXContent
- Throws:
IOException
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
toString
-