Resolve index API

Resolve index API

New API reference

For the most up-to-date API details, refer to Index APIs.

Resolves the specified name(s) and/or index patterns for indices, aliases, and data streams. Multiple patterns and remote clusters are supported.

  1. resp = client.indices.resolve_index(
  2. name="my-index-*",
  3. )
  4. print(resp)
  1. response = client.indices.resolve_index(
  2. name: 'my-index-*'
  3. )
  4. puts response
  1. const response = await client.indices.resolveIndex({
  2. name: "my-index-*",
  3. });
  4. console.log(response);
  1. GET /_resolve/index/my-index-*

Request

GET /_resolve/index/<name>

Prerequisites

  • If the Elasticsearch security features are enabled, you must have the view_index_metadata or manage index privilege for the target data stream, index, or index alias.

Path parameters

<name>

(Required, string) Comma-separated name(s) or index pattern(s) of the indices, aliases, and data streams to resolve, using Multi-target syntax. Resources on remote clusters can be specified using the <cluster>:<name> syntax.

Query parameters

expand_wildcards

(Optional, string) 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 as open,hidden. Valid values are:

  • all

    Match any data stream or index, including hidden ones.

    open

    Match open, non-hidden indices. Also matches any non-hidden data stream.

    closed

    Match closed, non-hidden indices. Also matches any non-hidden data stream. Data streams cannot be closed.

    hidden

    Match hidden data streams and hidden indices. Must be combined with open, closed, or both.

    none

    Wildcard patterns are not accepted.

Defaults to open.

ignore_unavailable

(Optional, Boolean) If false, the request returns an error if it targets a missing or closed index. Defaults to false.

Defaults to false.

allow_no_indices

(Optional, Boolean) If false, 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 targeting foo*,bar* returns an error if an index starts with foo but no index starts with bar.

Defaults to true.

ignore_throttled

(Optional, Boolean) If true, concrete, expanded or aliased indices are ignored when frozen. Defaults to false.

[7.16.0] Deprecated in 7.16.0.

Examples

  1. resp = client.indices.resolve_index(
  2. name="f*,remoteCluster1:bar*",
  3. expand_wildcards="all",
  4. )
  5. print(resp)
  1. response = client.indices.resolve_index(
  2. name: 'f*,remoteCluster1:bar*',
  3. expand_wildcards: 'all'
  4. )
  5. puts response
  1. const response = await client.indices.resolveIndex({
  2. name: "f*,remoteCluster1:bar*",
  3. expand_wildcards: "all",
  4. });
  5. console.log(response);
  1. GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all

The API returns the following response:

  1. {
  2. "indices": [
  3. {
  4. "name": "foo_closed",
  5. "attributes": [
  6. "closed"
  7. ]
  8. },
  9. {
  10. "name": "freeze-index",
  11. "aliases": [
  12. "f-alias"
  13. ],
  14. "attributes": [
  15. "open"
  16. ]
  17. },
  18. {
  19. "name": "remoteCluster1:bar-01",
  20. "attributes": [
  21. "open"
  22. ]
  23. }
  24. ],
  25. "aliases": [
  26. {
  27. "name": "f-alias",
  28. "indices": [
  29. "freeze-index",
  30. "my-index-000001"
  31. ]
  32. }
  33. ],
  34. "data_streams": [
  35. {
  36. "name": "foo",
  37. "backing_indices": [
  38. ".ds-foo-2099.03.07-000001"
  39. ],
  40. "timestamp_field": "@timestamp"
  41. }
  42. ]
  43. }

All indices matching the supplied names or expressions

Possible index attributes are open, closed, hidden, system, and frozen

All aliases matching the supplied names or expressions

All data streams matching the supplied names or expressions