Home
last modified time | relevance | path

Searched refs:stats (Results 51 – 75 of 105) sorted by path

12345

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIndicesNamespace.asciidoc71 * <<Elasticsearch_Namespaces_IndicesNamespacestats_stats,`stats()`>>
908 .`stats(array $params = [])`
H A DMlNamespace.asciidoc462 $params['id'] = (string) The ID of the data frame analytics stats to fetch
466 $params['verbose'] = (boolean) whether the stats response should be verbose (Default = false)
479 $params['datafeed_id'] = (string) The ID of the datafeeds stats to fetch
547 $params['job_id'] = (string) The ID of the jobs stats to fetch
655 $params['model_id'] = (string) The ID of the trained models stats to fetch
H A DNodesNamespace.asciidoc24 * <<Elasticsearch_Namespaces_NodesNamespacestats_stats,`stats()`>>
76 .`stats(array $params = [])`
H A DSearchableSnapshotsNamespace.asciidoc24 * <<Elasticsearch_Namespaces_SearchableSnapshotsNamespacestats_stats,`stats()`>>
71 $params['repository'] = (string) The repository for which to get the stats for
79 .`stats(array $params = [])`
86 $params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices)
H A DTransformNamespace.asciidoc69 $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms
70 $params['from'] = (number) skips a number of transform stats, defaults to 0
71 $params['size'] = (number) specifies a max number of transform stats to get, defaults to 100
H A DWatcherNamespace.asciidoc30 * <<Elasticsearch_Namespaces_WatcherNamespacestats_stats,`stats()`>>
160 .`stats(array $params = [])`
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D028f6d6ac2594e20b78b8a8f8cbad49d.asciidoc29 'stats' => [
H A D34efeade38445b2834749ced59782e25.asciidoc17 'stats' => [
H A Ddc15e2373e5ecbe09b4ea0858eb63d47.asciidoc24 'stats' => [
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dnamespaces.asciidoc12 | `indices()` | Index-centric stats and info
13 | `nodes()` | Node-centric stats and info
14 | `cluster()` | Cluster-centric stats and info
30 $response = $client->indices()->stats();
33 // Corresponds to curl -XGET localhost:9200/_nodes/stats
34 $response = $client->nodes()->stats();
37 // Corresponds to curl -XGET localhost:9200/_cluster/stats
38 $response = $client->cluster()->stats();
42 As you can see, the same `stats()` call is made through three different
46 For example, we can requests index stats abou
[all...]
H A Dper-request-configuration.asciidoc129 information (for example, stats about the transfer, headers, status codes, and
162 With verbosity turned on, you will see all of the transfer stats:
H A Drelease-notes.asciidoc314 parameters to `indices.stats` API.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DCcrNamespace.php95 * Retrieves follower stats. return shard-level stats about the following tasks associated with each shard for the specified indices.
101 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-follow-stats.html
264 * Gets all stats related to cross-cluster replication.
269 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-stats.html
271 public function stats(array $params = []) function in Elasticsearch\\Namespaces\\CcrNamespace
H A DClusterNamespace.php362 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-stats.html
364 public function stats(array $params = []) function in Elasticsearch\\Namespaces\\ClusterNamespace
H A DEnrichNamespace.php120 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-stats-api.html
122 public function stats(array $params = []) function in Elasticsearch\\Namespaces\\EnrichNamespace
H A DIndicesNamespace.php515 * Returns the field usage stats for each field of an index
518 * $params['fields'] = (list) A comma-separated list of fields to include in the stats if only a subset of fields should be returned (supports wildcards)
525 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/field-usage-stats.html
1380 * $params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices)
1382 * $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)
1383 * $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)
1385 * $params['forbid_closed_indices'] = (boolean) If set to false stats will also collected from closed indices if explicitly specified or if expand_wildcards expands to closed indices (Default = true)
1389 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-stats.html
1391 public function stats(arra function in Elasticsearch\\Namespaces\\IndicesNamespace
[all...]
H A DNodesNamespace.php164 * $params['level'] = (enum) Return indices stats aggregated at index, node or shard level (Options = indices,node,shards) (Default = node)
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)
172 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-nodes-stats.html
174 public function stats(array $params = []) function in Elasticsearch\\Namespaces\\NodesNamespace
H A DSearchableSnapshotsNamespace.php114 * $params['repository'] = (string) The repository for which to get the stats for
138 * $params['level'] = (enum) Return stats aggregated at cluster, index or shard level (Options = cluster,indices,shards) (Default = indices)
147 public function stats(array $params = []) function in Elasticsearch\\Namespaces\\SearchableSnapshotsNamespace
H A DWatcherNamespace.php229 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api-stats.html
231 public function stats(array $params = []) function in Elasticsearch\\Namespaces\\WatcherNamespace
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStream.php186 $stats = fstat($this->stream);
187 if (isset($stats['size'])) {
188 $this->size = $stats['size'];
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/da/
H A Dda.txt74 1. Enhver har ret til at bevæge sig frit og til frit at vælge opholdssted indenfor hver stats grænser.
119 Enhver har som medlem af samfundet ret til social tryghed og har krav på, at de økonomiske, sociale og kulturelle rettigheder, der er uundværlige for hans værdighed og hans personligheds frie udvikling, gennemføres ved nationale foranstaltninger og internationalt samarbejde og i overensstemmelse med hver stats organisation og hjælpekilder.
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/nb/
H A Dnb.txt76 1. Enhver har rett til å bevege seg fritt og til fritt å velge oppholdssted innenfor en stats grenser.
121 Enhver har som medlem av samfunnet rett til sosial trygghet og har krav på at de økonomiske, sosiale og kulturelle goder som er uunnværlige for hans verdighet og den frie utvikling av hans personlighet, blir skaffet til veie gjennom nasjonale tiltak og internasjonalt samarbeid i samsvar med hver enkelt stats organisasjon og ressurser.
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/sv/
H A Dsv.txt74 1. Envar har rätt att inom varje stats gränser fritt förflytta sig och välja sin vistelseort.
119 Envar äger i sin egenskap av samhällsmedlem rätt till social trygghet och är berättigad till att de ekonomiska, sociala och kulturella rättigheter, som äro oundgängliga för hans värdighet och för en fri utveckling av hans personlighet, förverkligas genom nationella åtgärder och mellanfolkligt samarbete med hänsyn tagen till varje stats organisation och resurser.
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php128 * stats aggregation.
130 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-stats-aggregation.html
132 public function stats(string $name): Stats function in Elastica\\QueryBuilder\\DSL\\Aggregation
138 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline-stats-bucket-aggregation.html
146 * extended stats aggregation.
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DCrap4j.php58 $stats = $document->createElement('stats');
114 $stats->appendChild($document->createElement('name', 'Method Crap Stats'));
115 $stats->appendChild($document->createElement('methodCount', $fullMethodCount));
116 $stats->appendChild($document->createElement('crapMethodCount', $fullCrapMethodCount));
117 $stats->appendChild($document->createElement('crapLoad', round($fullCrapLoad)));
118 $stats->appendChild($document->createElement('totalCrap', $fullCrap));
126 $stats->appendChild($document->createElement('crapMethodPercent', $crapMethodPercent));
128 $root->appendChild($stats);

12345