Class CountRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.cat.CatRequestBase
co.elastic.clients.elasticsearch.cat.CountRequest
Get a document count.
Get quick access to a document count for a data stream, an index, or an entire cluster. The document count only includes live documents, not deleted documents which have not yet been removed by the merge process.
IMPORTANT: 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 the count API.
- 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<CountRequest,
CountResponse, ErrorResponse> Endpoint "cat.count
". -
Method Summary
Modifier and TypeMethodDescriptionh()
List of columns to appear in the response.index()
A comma-separated list of data streams, indices, and aliases used to limit the request.static CountRequest
s()
List of columns that determine how the table should be sorted.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toString
-
Field Details
-
_ENDPOINT
Endpoint "cat.count
".
-
-
Method Details
-
of
-
h
List of columns to appear in the response. Supports simple wildcards.API name:
h
-
index
A comma-separated list of data streams, indices, and aliases used to limit the request. It supports wildcards (*
). To target all data streams and indices, omit this parameter or use*
or_all
.API name:
index
-
s
List of columns that determine how the table should be sorted. Sorting defaults to ascending and can be changed by setting:asc
or:desc
as a suffix to the column name.API name:
s
-