Package org.elasticsearch.index.recovery
Class RecoveryStats
java.lang.Object
org.elasticsearch.index.recovery.RecoveryStats
- All Implemented Interfaces:
Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment
public class RecoveryStats extends java.lang.Object implements org.elasticsearch.common.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.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description RecoveryStats()RecoveryStats(StreamInput in) -
Method Summary
Modifier and Type Method Description voidadd(RecoveryStats recoveryStats)voidaddThrottleTime(long nanos)voidaddTotals(RecoveryStats recoveryStats)intcurrentAsSource()Number of ongoing recoveries for which a shard serves as a sourceintcurrentAsTarget()Number of ongoing recoveries for which a shard serves as a targetvoiddecCurrentAsSource()voiddecCurrentAsTarget()voidincCurrentAsSource()voidincCurrentAsTarget()org.elasticsearch.common.unit.TimeValuethrottleTime()Total time recoveries waited due to throttlingjava.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Constructor Details
-
RecoveryStats
public RecoveryStats() -
RecoveryStats
- Throws:
java.io.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.common.unit.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.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-