Class IndicesRequest
Get high-level information about indices in a cluster, including backing indices for data streams.
Use this request to get the following information for each index in a cluster:
- shard count
- document count
- deleted document count
- primary store size
- total store size of all shards, including shard replicas
These metrics are retrieved directly from Lucene, which Elasticsearch uses internally to power indexing and search. As a result, all document counts include hidden nested documents. To get an accurate count of Elasticsearch documents, use the cat count or count APIs.
CAT APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use an index endpoint.
- See Also:
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class co.elastic.clients.elasticsearch.cat.CatRequestBase
CatRequestBase.AbstractBuilder<BuilderT extends CatRequestBase.AbstractBuilder<BuilderT>> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Endpoint<IndicesRequest,IndicesResponse, ErrorResponse> Endpoint "cat.indices". -
Method Summary
Modifier and TypeMethodDescriptionfinal Bytesbytes()Sets the units for columns that contain a byte-size value.final List<ExpandWildcard>The type of index that wildcard patterns can match.h()List of columns to appear in the response.final HealthStatushealth()The health status used to limit returned indices.final BooleanIf true, the response includes information from segments that are not loaded into memory.index()Comma-separated list of data streams, indices, and aliases used to limit the request.final TimePeriod to wait for a connection to the master node.static IndicesRequestfinal Booleanpri()If true, the response only includes information from primary shards.s()List of columns that determine how the table should be sorted.final TimeUnittime()Sets the units for columns that contain a time duration.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toString
-
Field Details
-
_ENDPOINT
Endpoint "cat.indices".
-
-
Method Details
-
of
-
bytes
Sets the units for columns that contain a byte-size value. Note that byte-size value units work in terms of powers of 1024. For instance1kbmeans 1024 bytes, not 1000 bytes. If omitted, byte-size values are rendered with a suffix such askb,mb, orgb, chosen such that the numeric value of the column is as small as possible whilst still being at least1.0. If given, byte-size values are rendered as an integer with no suffix, representing the value of the column in the chosen unit. Values that are not an exact multiple of the chosen unit are rounded down.API name:
bytes -
expandWildcards
The type of index that wildcard patterns can match.API name:
expand_wildcards -
h
List of columns to appear in the response. Supports simple wildcards.API name:
h -
health
The health status used to limit returned indices. By default, the response includes indices of any health status.API name:
health -
includeUnloadedSegments
If true, the response includes information from segments that are not loaded into memory.API name:
include_unloaded_segments -
index
Comma-separated list of data streams, indices, and aliases used to limit the request. Supports wildcards (*). To target all data streams and indices, omit this parameter or use*or_all.API name:
index -
masterTimeout
Period to wait for a connection to the master node.API name:
master_timeout -
pri
If true, the response only includes information from primary shards.API name:
pri -
s
List of columns that determine how the table should be sorted. Sorting defaults to ascending and can be changed by setting:ascor:descas a suffix to the column name.API name:
s -
time
Sets the units for columns that contain a time duration. If omitted, time duration values are rendered with a suffix such asms,s,morh, chosen such that the numeric value of the column is as small as possible whilst still being at least1.0. If given, time duration values are rendered as an integer with no suffix. Values that are not an exact multiple of the chosen unit are rounded down.API name:
time
-