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

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

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


Method Summary
 DocsStatus docs()
           
 ShardStatus getAt(int position)
           
 DocsStatus getDocs()
           
 ShardId getShardId()
           
 ShardStatus[] getShards()
           
 ByteSizeValue getStoreSize()
           
 long getTranslogOperations()
           
 java.util.Iterator<ShardStatus> iterator()
           
 ShardId shardId()
           
 ShardStatus[] shards()
           
 ByteSizeValue storeSize()
           
 long translogOperations()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

shardId

public ShardId shardId()

getShardId

public ShardId getShardId()

shards

public ShardStatus[] shards()

getShards

public ShardStatus[] getShards()

getAt

public ShardStatus getAt(int position)

storeSize

public ByteSizeValue storeSize()

getStoreSize

public ByteSizeValue getStoreSize()

translogOperations

public long translogOperations()

getTranslogOperations

public long getTranslogOperations()

docs

public DocsStatus docs()

getDocs

public DocsStatus getDocs()

iterator

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