Lines Matching refs:params

33      * $params['node_id']             = (list) Comma-separated list of node IDs or names used to limit returned information.
34 * $params['max_archive_version'] = (long) Specifies the maximum archive_version to be cleared from the archive.
36 * @param array $params Associative array of parameters
43 public function clearRepositoriesMeteringArchive(array $params = [])
45 $node_id = $this->extractArgument($params, 'node_id');
46 $max_archive_version = $this->extractArgument($params, 'max_archive_version');
50 $endpoint->setParams($params);
59 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information.
61 * @param array $params Associative array of parameters
68 public function getRepositoriesMeteringInfo(array $params = [])
70 $node_id = $this->extractArgument($params, 'node_id');
74 $endpoint->setParams($params);
82 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
83 * $params['interval'] = (time) The interval for the second sampling of threads
84 * $params['snapshots'] = (number) Number of samples of thread stacktrace (default: 10)
85 * $params['threads'] = (number) Specify the number of threads to provide information for (default: 3)
86 * $params['ignore_idle_threads'] = (boolean) Don't show threads that are in known-idle places, such as waiting on a socket select or pulling from an empty task queue (default: true)
87 * $params['type'] = (enum) The type to sample (default: cpu) (Options = cpu,wait,block)
88 * $params['timeout'] = (time) Explicit operation timeout
90 * @param array $params Associative array of parameters
94 public function hotThreads(array $params = [])
96 $node_id = $this->extractArgument($params, 'node_id');
100 $endpoint->setParams($params);
108 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
109 * $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty to return all.
110 * $params['flat_settings'] = (boolean) Return settings in flat format (default: false)
111 * $params['timeout'] = (time) Explicit operation timeout
113 * @param array $params Associative array of parameters
117 public function info(array $params = [])
119 $node_id = $this->extractArgument($params, 'node_id');
120 $metric = $this->extractArgument($params, 'metric');
124 $endpoint->setParams($params);
133 * $params['node_id'] = (list) A comma-separated list of node IDs to span the reload/reinit call. Should stay empty because reloading usually involves all cluster nodes.
134 * $params['timeout'] = (time) Explicit operation timeout
135 * $params['body'] = (array) An object containing the password for the elasticsearch keystore
137 * @param array $params Associative array of parameters
141 public function reloadSecureSettings(array $params = [])
143 $node_id = $this->extractArgument($params, 'node_id');
144 $body = $this->extractArgument($params, 'body');
148 $endpoint->setParams($params);
157 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
158 * $params['metric'] = (list) Limit the information returned to the specified metrics
159 * $params['index_metric'] = (list) Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified.
160 * $params['completion_fields'] = (list) A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards)
161 * $params['fielddata_fields'] = (list) A comma-separated list of fields for `fielddata` index metric (supports wildcards)
162 * $params['fields'] = (list) A comma-separated list of fields for `fielddata` and `completion` index metric (supports wildcards)
163 * $params['groups'] = (boolean) A comma-separated list of search groups for `search` index metric
164 * $params['level'] = (enum) Return indices stats aggregated at index, node or shard level (Options = indices,node,shards) (Default = node)
165 * $params['types'] = (list) A comma-separated list of document types for the `indexing` index metric
166 * $params['timeout'] = (time) Explicit operation timeout
167 * $params['include_segment_file_sizes'] = (boolean) Whether to report the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested) (Default = false)
168 * $params['include_unloaded_segments'] = (boolean) If set to true segment stats will include stats for segments that are not currently loaded into memory (Default = false)
170 * @param array $params Associative array of parameters
174 public function stats(array $params = [])
176 $node_id = $this->extractArgument($params, 'node_id');
177 $metric = $this->extractArgument($params, 'metric');
178 $index_metric = $this->extractArgument($params, 'index_metric');
182 $endpoint->setParams($params);
192 * $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
193 * $params['metric'] = (list) Limit the information returned to the specified metrics
194 * $params['timeout'] = (time) Explicit operation timeout
196 * @param array $params Associative array of parameters
200 public function usage(array $params = [])
202 $node_id = $this->extractArgument($params, 'node_id');
203 $metric = $this->extractArgument($params, 'metric');
207 $endpoint->setParams($params);