Package org.elasticsearch.index.refresh
Class RefreshStats
java.lang.Object
org.elasticsearch.index.refresh.RefreshStats
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentFragment
public class RefreshStats extends java.lang.Object implements Writeable, ToXContentFragment
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, 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 RefreshStats()RefreshStats(long total, long totalTimeInMillis, long externalTotal, long externalTotalTimeInMillis, int listeners)RefreshStats(StreamInput in) -
Method Summary
Modifier and Type Method Description voidadd(RefreshStats refreshStats)voidaddTotals(RefreshStats refreshStats)booleanequals(java.lang.Object obj)longgetExternalTotal()TimeValuegetExternalTotalTime()The total time external refreshes have been executed.longgetExternalTotalTimeInMillis()The total time spent executing external refreshes (in milliseconds).intgetListeners()The number of waiting refresh listeners.longgetTotal()The total number of refresh executed.TimeValuegetTotalTime()The total time refreshes have been executed.longgetTotalTimeInMillis()The total time spent executing refreshes (in milliseconds).inthashCode()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Constructor Details
-
RefreshStats
public RefreshStats() -
RefreshStats
- Throws:
java.io.IOException
-
RefreshStats
public RefreshStats(long total, long totalTimeInMillis, long externalTotal, long externalTotalTimeInMillis, int listeners)
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
add
-
addTotals
-
getTotal
public long getTotal()The total number of refresh executed. -
getExternalTotal
public long getExternalTotal() -
getTotalTimeInMillis
public long getTotalTimeInMillis()The total time spent executing refreshes (in milliseconds). -
getExternalTotalTimeInMillis
public long getExternalTotalTimeInMillis()The total time spent executing external refreshes (in milliseconds). -
getTotalTime
The total time refreshes have been executed. -
getExternalTotalTime
The total time external refreshes have been executed. -
getListeners
public int getListeners()The number of waiting refresh listeners. -
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-