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
Copy file name to clipboardExpand all lines: src/Elasticsearch/Client.php
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1344,6 +1344,33 @@ public function fieldStats($params = array())
1344
1344
return$this->performRequest($endpoint);
1345
1345
}
1346
1346
1347
+
/**
1348
+
* $params['index'] = (list) A comma-separated list of indices to restrict the results
1349
+
* ['ignore_unavailable'] = (bool) Whether specified concrete indices should be ignored when unavailable (missing or closed)
1350
+
* ['allow_no_indices'] = (bool) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
1351
+
* ['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both.
1352
+
*
1353
+
* @param $params array Associative array of parameters
0 commit comments