You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Returns the field usage stats for each field of an index"
6
+
},
7
+
"stability": "experimental",
8
+
"visibility": "public",
9
+
"headers": {
10
+
"accept": [
11
+
"application/json"
12
+
]
13
+
},
14
+
"url": {
15
+
"paths": [
16
+
{
17
+
"path": "/{index}/_field_usage_stats",
18
+
"methods": [
19
+
"GET"
20
+
],
21
+
"parts": {
22
+
"index": {
23
+
"type": "string",
24
+
"description": "A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices"
25
+
}
26
+
}
27
+
}
28
+
]
29
+
},
30
+
"params": {
31
+
"fields":{
32
+
"type":"list",
33
+
"description":"A comma-separated list of fields to include in the stats if only a subset of fields should be returned (supports wildcards)"
34
+
},
35
+
"ignore_unavailable": {
36
+
"type": "boolean",
37
+
"description": "Whether specified concrete indices should be ignored when unavailable (missing or closed)"
38
+
},
39
+
"allow_no_indices": {
40
+
"type": "boolean",
41
+
"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)"
42
+
},
43
+
"expand_wildcards": {
44
+
"type": "enum",
45
+
"options": [
46
+
"open",
47
+
"closed",
48
+
"hidden",
49
+
"none",
50
+
"all"
51
+
],
52
+
"default": "open",
53
+
"description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
Copy file name to clipboardExpand all lines: src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.Indices.cs
+35
Original file line number
Diff line number
Diff line change
@@ -530,6 +530,41 @@ public TimeSpan MasterTimeout
530
530
}
531
531
}
532
532
533
+
///<summary>Request options for FieldUsageStats <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-field-usage-stats.html</para></summary>
///<summary>GET on /{index}/_field_usage_stats <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-field-usage-stats.html</para></summary>
305
+
///<param name = "index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
306
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
307
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
///<summary>GET on /{index}/_field_usage_stats <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-field-usage-stats.html</para></summary>
311
+
///<param name = "index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
312
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
313
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
0 commit comments