Class FieldUsageStatsRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.indices.FieldUsageStatsRequest
Get field usage stats. Get field usage information for each shard and field
of an index. Field usage statistics are automatically captured when queries
are running on a cluster. A shard-level search request that accesses a given
field, even if multiple times during that request, is counted as a single
use.
The response body reports the per-shard usage count of the data structures that back the fields in the index. A given request will increment each count by a maximum value of 1, even if the request accesses the same field multiple times.
- See Also:
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Endpoint<FieldUsageStatsRequest,
FieldUsageStatsResponse, ErrorResponse> Endpoint "indices.field_usage_stats
". -
Method Summary
Modifier and TypeMethodDescriptionfinal Boolean
Iffalse
, the request returns an error if any wildcard expression, index alias, or_all
value targets only missing or closed indices.final List<ExpandWildcard>
Type of index that wildcard patterns can match.fields()
Comma-separated list or wildcard expressions of fields to include in the statistics.final Boolean
Iftrue
, missing or closed indices are not included in the response.index()
Required - Comma-separated list or wildcard expression of index names used to limit the request.static FieldUsageStatsRequest
final WaitForActiveShards
The number of shard copies that must be active before proceeding with the operation.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toString
-
Field Details
-
_ENDPOINT
public static final Endpoint<FieldUsageStatsRequest,FieldUsageStatsResponse, _ENDPOINTErrorResponse> Endpoint "indices.field_usage_stats
".
-
-
Method Details
-
of
public static FieldUsageStatsRequest of(Function<FieldUsageStatsRequest.Builder, ObjectBuilder<FieldUsageStatsRequest>> fn) -
allowNoIndices
Iffalse
, the request returns an error if any wildcard expression, index alias, or_all
value targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request targetingfoo*,bar*
returns an error if an index starts withfoo
but no index starts withbar
.API name:
allow_no_indices
-
expandWildcards
Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such asopen,hidden
.API name:
expand_wildcards
-
fields
Comma-separated list or wildcard expressions of fields to include in the statistics.API name:
fields
-
index
Required - Comma-separated list or wildcard expression of index names used to limit the request.API name:
index
-
waitForActiveShards
The number of shard copies that must be active before proceeding with the operation. Set to all or any positive integer up to the total number of shards in the index (number_of_replicas+1
).API name:
wait_for_active_shards
-