Package org.elasticsearch.index.shard
Class DocsStats
java.lang.Object
org.elasticsearch.index.shard.DocsStats
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentFragment
public class DocsStats 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 DocsStats()DocsStats(long count, long deleted, long totalSizeInBytes)DocsStats(StreamInput in) -
Method Summary
Modifier and Type Method Description voidadd(DocsStats other)longgetAverageSizeInBytes()Returns the average size in bytes of all documents in this stats.longgetCount()longgetDeleted()longgetTotalSizeInBytes()Returns the total size in bytes of all documents in this stats.XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Constructor Details
-
Method Details
-
add
-
getCount
public long getCount() -
getDeleted
public long getDeleted() -
getTotalSizeInBytes
public long getTotalSizeInBytes()Returns the total size in bytes of all documents in this stats. This value may be more reliable thanStoreStats.getSizeInBytes()in estimating the index size. -
getAverageSizeInBytes
public long getAverageSizeInBytes()Returns the average size in bytes of all documents in this stats. -
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-