All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rest-api-spec.api.indices.field_usage_stats.json Maven / Gradle / Ivy

There is a newer version: 8.16.0
Show newest version
{
  "indices.field_usage_stats": {
    "documentation": {
      "url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/field-usage-stats.html",
      "description": "Returns the field usage stats for each field of an index"
    },
    "stability": "experimental",
    "visibility": "public",
    "headers": {
      "accept": [
        "application/json"
      ]
    },
    "url": {
      "paths": [
        {
          "path": "/{index}/_field_usage_stats",
          "methods": [
            "GET"
          ],
          "parts": {
            "index": {
              "type": "string",
              "description": "A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices"
            }
          }
        }
      ]
    },
    "params": {
      "fields":{
        "type":"list",
        "description":"A comma-separated list of fields to include in the stats if only a subset of fields should be returned (supports wildcards)"
      },
      "ignore_unavailable": {
        "type": "boolean",
        "description": "Whether specified concrete indices should be ignored when unavailable (missing or closed)"
      },
      "allow_no_indices": {
        "type": "boolean",
        "description": "Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)"
      },
      "expand_wildcards": {
        "type": "enum",
        "options": [
          "open",
          "closed",
          "hidden",
          "none",
          "all"
        ],
        "default": "open",
        "description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy