2013-05-24 06:02:42 -04:00
{
"indices.stats" : {
"documentation" : "http://elasticsearch.org/guide/reference/api/admin-indices-stats/" ,
"methods" : [ "GET" ] ,
"url" : {
"path" : "/_stats" ,
2013-06-21 10:57:41 -04:00
"paths" : [
"/_stats" ,
"/{index}/_stats" ,
"_stats/{metric_family}" ,
"/{index}/_stats/{metric_family}" ,
"/_stats/indexing" ,
"/{index}/_stats/indexing" ,
"/_stats/indexing/{indexing_types}" ,
"/_stats/search/{search_groups}" ,
"/{index}/_stats/search/{search_groups}" ,
"/_stats/fielddata/{fields}" ,
"/{index}/_stats/fielddata/{fields}"
] ,
2013-05-24 06:02:42 -04:00
"parts" : {
2013-05-26 06:20:43 -04:00
"fields" : {
2013-05-27 11:42:04 -04:00
"type" : "list" ,
"description" : "A comma-separated list of fields to return detailed information for, when returning the `search` statistics"
2013-05-26 06:20:43 -04:00
} ,
2013-05-27 15:09:41 -04:00
"index" : {
"type" : "list" ,
"description" : "A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices"
2013-05-24 06:02:42 -04:00
} ,
2013-05-27 11:42:04 -04:00
"indexing_types" : {
"type" : "list" ,
"description" : "A comma-separated list of document types to include in the `indexing` statistics"
2013-05-24 06:02:42 -04:00
} ,
2013-05-27 15:09:41 -04:00
"metric_family" : {
"type" : "enum" ,
2013-12-11 18:30:12 -05:00
"options" : [ "completion" , "docs" , "fielddata" , "filter_cache" , "flush" , "get" , "groups" , "id_cache" , "percolate" , "indexing" , "merge" , "refresh" , "search" , "store" , "warmer" ] ,
2013-05-27 15:09:41 -04:00
"description" : "Limit the information returned to a specific metric"
} ,
2013-05-27 11:42:04 -04:00
"search_groups" : {
"type" : "list" ,
"description" : "A comma-separated list of search groups to include in the `search` statistics"
2013-05-24 06:02:42 -04:00
}
} ,
"params" : {
2013-05-26 06:20:43 -04:00
"all" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return all available information"
2013-05-24 06:02:42 -04:00
} ,
"clear" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Reset the default level of detail"
2013-05-24 06:02:42 -04:00
} ,
2013-09-20 07:26:04 -04:00
"completion" : {
"type" : "boolean" ,
"description" : "Return information about completion suggester stats"
} ,
"completion_fields" : {
"type" : "list" ,
"description" : "A comma-separated list of fields for `completion` metric (supports wildcards)"
} ,
2013-05-26 06:20:43 -04:00
"docs" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about indexed and deleted documents"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"fielddata" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about field data"
2013-05-24 06:02:42 -04:00
} ,
2013-09-20 07:26:04 -04:00
"fielddata_fields" : {
"type" : "list" ,
2013-05-27 11:42:04 -04:00
"description" : "A comma-separated list of fields for `fielddata` metric (supports wildcards)"
2013-05-24 06:02:42 -04:00
} ,
2013-09-20 07:26:04 -04:00
"fields" : {
"type" : "list" ,
"description" : "A comma-separated list of fields for `fielddata` and `completion` metric (supports wildcards)"
} ,
2013-05-26 06:20:43 -04:00
"filter_cache" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about filter cache"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"flush" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about flush operations"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"get" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about get operations"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"groups" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "A comma-separated list of search groups for `search` statistics"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"id_cache" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about ID cache"
2013-05-24 06:02:42 -04:00
} ,
2013-12-11 18:30:12 -05:00
"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" ] ,
"default" : "open" ,
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"indexing" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about indexing operations"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"merge" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about merge operations"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"refresh" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about refresh operations"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"search" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about search operations; use the `groups` parameter to include information for specific search groups"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"store" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about the size of the index"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"warmer" : {
2013-05-27 11:42:04 -04:00
"type" : "boolean" ,
"description" : "Return information about warmers"
2013-05-24 06:02:42 -04:00
}
}
} ,
"body" : null
}
}