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 BooleanIffalse, the request returns an error if any wildcard expression, index alias, or_allvalue 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 BooleanIftrue, 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 FieldUsageStatsRequestMethods 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_allvalue 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 withfoobut 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
-