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 BooleanA setting that does two separate checks on the index expression.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 BooleanIffalse, the request returns an error if it targets a concrete (non-wildcarded) index, alias, or data stream that is missing, closed, or otherwise unavailable.index()Required - Comma-separated list or wildcard expression of index names used to limit the request.static FieldUsageStatsRequestrebuild()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
A setting that does two separate checks on the index expression. Iffalse, the request returns an error (1) if any wildcard expression (including_alland*) resolves to zero matching indices or (2) if the complete set of resolved indices, aliases or data streams is empty after all expressions are evaluated. Iftrue, index expressions that resolve to no indices are allowed and the request returns an empty result.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 -
rebuild
- Returns:
- New
FieldUsageStatsRequest.Builderinitialized with field values of this instance
-