org.elasticsearch.action.admin.indices.status
Class IndexStatus

java.lang.Object
  extended by org.elasticsearch.action.admin.indices.status.IndexStatus
All Implemented Interfaces:
java.lang.Iterable<IndexShardStatus>

public class IndexStatus
extends java.lang.Object
implements java.lang.Iterable<IndexShardStatus>


Nested Class Summary
static class IndexStatus.Docs
           
 
Method Summary
 IndexStatus.Docs docs()
           
 SizeValue estimatedFlushableMemorySize()
           
 java.lang.String index()
           
 java.util.Iterator<IndexShardStatus> iterator()
           
 Settings settings()
           
 java.util.Map<java.lang.Integer,IndexShardStatus> shards()
          A shard id to index shard status map (note, index shard status is the replication shard group that maps to the shard id).
 SizeValue storeSize()
           
 long translogOperations()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

index

public java.lang.String index()

shards

public java.util.Map<java.lang.Integer,IndexShardStatus> shards()
A shard id to index shard status map (note, index shard status is the replication shard group that maps to the shard id).


settings

public Settings settings()

storeSize

public SizeValue storeSize()

estimatedFlushableMemorySize

public SizeValue estimatedFlushableMemorySize()

translogOperations

public long translogOperations()

docs

public IndexStatus.Docs docs()

iterator

public java.util.Iterator<IndexShardStatus> iterator()
Specified by:
iterator in interface java.lang.Iterable<IndexShardStatus>