Home
last modified time | relevance | path

Searched refs:metric (Results 1 – 25 of 56) sorted by last modified time

123

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Watcher/
H A DStats.php30 protected $metric; variable in Elasticsearch\\Endpoints\\Watcher\\Stats
34 $metric = $this->metric ?? null;
36 if (isset($metric)) {
37 return "/_watcher/stats/$metric";
45 'metric',
55 public function setMetric($metric): Stats argument
57 if (isset($metric) !== true) {
60 if (is_array($metric) === true) {
61 $metric
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DClusterNamespace.php302 * $params['metric'] = (list) Limit the information returned to the specified metrics. Defaults to all but metadata (Options = _all,blocks,metadata,nodes,routing_table,master_node,version)
325 * $params['metric'] = (list) Limit the information returned to the specified metrics
342 $metric = $this->extractArgument($params, 'metric');
348 $endpoint->setMetric($metric);
H A DIndicesNamespace.php1374 * $params['metric'] = (list) Limit the information returned the specific metrics.
1376 * $params['completion_fields'] = (list) A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards)
1377 * $params['fielddata_fields'] = (list) A comma-separated list of fields for `fielddata` index metric (supports wildcards)
1378 * $params['fields'] = (list) A comma-separated list of fields for `fielddata` and `completion` index metric (supports wildcards)
1379 * $params['groups'] = (list) A comma-separated list of search groups for `search` index metric
1381 * $params['types'] = (list) A comma-separated list of document types for the `indexing` index metric
1393 $metric = $this->extractArgument($params, 'metric');
1399 $endpoint->setMetric($metric);
H A DNodesNamespace.php109 * $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty to return all.
120 $metric = $this->extractArgument($params, 'metric');
126 $endpoint->setMetric($metric);
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 (support
[all...]
H A DWatcherNamespace.php224 * $params['metric'] = (list) Controls what additional stat metrics should be include in the response
233 $metric = $this->extractArgument($params, 'metric');
238 $endpoint->setMetric($metric);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cluster/
H A DState.php30 protected $metric; variable in Elasticsearch\\Endpoints\\Cluster\\State
34 $metric = $this->metric ?? null;
37 if (isset($metric) && isset($index)) {
38 return "/_cluster/state/$metric/$index";
40 if (isset($metric)) {
41 return "/_cluster/state/$metric";
65 public function setMetric($metric): State argument
67 if (isset($metric) !== true) {
70 if (is_array($metric)
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DWatcherNamespace.asciidoc165 $params['metric'] = (list) Controls what additional stat metrics should be include in the response
H A DClusterNamespace.asciidoc233 $params['metric'] = (list) Limit the information returned to the specified metrics. Defaults to all but metadata (Options = _all,blocks,metadata,nodes,routing_table,master_node,version)
249 $params['metric'] = (list) Limit the information returned to the specified metrics
H A DNodesNamespace.asciidoc55 $params['metric'] = (list) A comma-separated list of metrics you wish returned. Leave empty to return all.
82 $params['metric'] = (list) Limit the information returned to the specified metrics
83 $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.
97 $params['metric'] = (list) Limit the information returned to the specified metrics
H A DIndicesNamespace.asciidoc913 $params['metric'] = (list) Limit the information returned the specific metrics.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc641 $params['body'] = (array) The ranking evaluation search definition, including search requests, document ratings and ranking metric definition. (Required)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DStats.php30 protected $metric; variable in Elasticsearch\\Endpoints\\Indices\\Stats
34 $metric = $this->metric ?? null;
37 if (isset($index) && isset($metric)) {
38 return "/$index/_stats/$metric";
40 if (isset($metric)) {
41 return "/_stats/$metric";
70 public function setMetric($metric): Stats argument
72 if (isset($metric) !== true) {
75 if (is_array($metric)
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Nodes/
H A DUsage.php31 protected $metric; variable in Elasticsearch\\Endpoints\\Nodes\\Usage
36 $metric = $this->metric ?? null;
38 if (isset($node_id) && isset($metric)) {
39 return "/_nodes/$node_id/usage/$metric";
44 if (isset($metric)) {
45 return "/_nodes/usage/$metric";
75 public function setMetric($metric): Usage argument
77 if (isset($metric) !== true) {
80 if (is_array($metric)
[all...]
H A DInfo.php31 protected $metric; variable in Elasticsearch\\Endpoints\\Nodes\\Info
36 $metric = $this->metric ?? null;
38 if (isset($node_id) && isset($metric)) {
39 return "/_nodes/$node_id/$metric";
44 if (isset($metric)) {
45 return "/_nodes/$metric";
76 public function setMetric($metric): Info argument
78 if (isset($metric) !== true) {
81 if (is_array($metric)
[all...]
H A DStats.php31 protected $metric; variable in Elasticsearch\\Endpoints\\Nodes\\Stats
37 $metric = $this->metric ?? null;
40 if (isset($node_id) && isset($metric) && isset($index_metric)) {
41 return "/_nodes/$node_id/stats/$metric/$index_metric";
43 if (isset($metric) && isset($index_metric)) {
44 return "/_nodes/stats/$metric/$index_metric";
46 if (isset($node_id) && isset($metric)) {
47 return "/_nodes/$node_id/stats/$metric";
52 if (isset($metric)) {
91 setMetric($metric) global() argument
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md361 * Replaced [params._agg](https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking-changes-7.0.html#_replaced_literal_params__agg_literal_with_literal_state_literal_context_variable_in_scripted_metric_aggregations) with state context variable in scripted metric aggregations
1121 - Add support for scripted metric aggrations [#780](https://github.com/ruflin/Elastica/issues/780/)
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DV1Beta1QuotaOverride.php33 public $metric; variable in Google\\Service\\ServiceConsumerManagement\\V1Beta1QuotaOverride
78 public function setMetric($metric) argument
80 $this->metric = $metric;
87 return $this->metric;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GameServices/
H A DCounterOptions.php32 public $metric; variable in Google\\Service\\GameServices\\CounterOptions
65 public function setMetric($metric) argument
67 $this->metric = $metric;
74 return $this->metric;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMachineLearningEngine/
H A DGoogleCloudMlV1MeasurementMetric.php25 public $metric; variable in Google\\Service\\CloudMachineLearningEngine\\GoogleCloudMlV1MeasurementMetric
31 public function setMetric($metric) argument
33 $this->metric = $metric;
40 return $this->metric;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DKeyRangeInfo.php111 public function setMetric(LocalizedString $metric) argument
113 $this->metric = $metric;
120 return $this->metric;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DQuotaLimit.php49 public $metric; variable in Google\\Service\\ServiceNetworking\\QuotaLimit
150 public function setMetric($metric) argument
152 $this->metric = $metric;
159 return $this->metric;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DQuotaLimit.php49 public $metric; variable in Google\\Service\\ServiceUsage\\QuotaLimit
150 public function setMetric($metric) argument
152 $this->metric = $metric;
159 return $this->metric;
H A DQuotaOverride.php33 public $metric; variable in Google\\Service\\ServiceUsage\\QuotaOverride
78 public function setMetric($metric) argument
80 $this->metric = $metric;
87 return $this->metric;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DLogConfigCounterOptions.php32 public $metric; variable in Google\\Service\\Compute\\LogConfigCounterOptions
65 public function setMetric($metric) argument
67 $this->metric = $metric;
74 return $this->metric;

123