123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869 |
- /*
- * Licensed to Elasticsearch under one or more contributor
- * license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright
- * ownership. Elasticsearch licenses this file to you under
- * the Apache License, Version 2.0 (the "License"); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- apply plugin: 'elasticsearch.docs-test'
- /* List of files that have snippets that require a gold or platinum licence
- and therefore cannot be tested yet... */
- buildRestTests.expectedUnconvertedCandidates = [
- 'reference/ml/transforms.asciidoc',
- ]
- integTestCluster {
- /* Enable regexes in painless so our tests don't complain about example
- * snippets that use them. */
- setting 'script.painless.regex.enabled', 'true'
- Closure configFile = {
- extraConfigFile it, "src/test/cluster/config/$it"
- }
- configFile 'analysis/example_word_list.txt'
- configFile 'analysis/hyphenation_patterns.xml'
- configFile 'analysis/synonym.txt'
- configFile 'analysis/stemmer_override.txt'
- configFile 'userdict_ja.txt'
- configFile 'userdict_ko.txt'
- configFile 'KeywordTokenizer.rbbi'
- extraConfigFile 'hunspell/en_US/en_US.aff', '../server/src/test/resources/indices/analyze/conf_dir/hunspell/en_US/en_US.aff'
- extraConfigFile 'hunspell/en_US/en_US.dic', '../server/src/test/resources/indices/analyze/conf_dir/hunspell/en_US/en_US.dic'
- // Whitelist reindexing from the local node so we can test it.
- setting 'reindex.remote.whitelist', '127.0.0.1:*'
- // TODO: remove this for 7.0, this exists to allow the doc examples in 6.x to continue using the defaults
- systemProperty 'es.scripting.use_java_time', 'false'
- systemProperty 'es.scripting.update.ctx_in_params', 'false'
- }
- // remove when https://github.com/elastic/elasticsearch/issues/31305 is fixed
- if (rootProject.ext.compilerJavaVersion.isJava11()) {
- integTestRunner {
- systemProperty 'tests.rest.blacklist', [
- 'plugins/ingest-attachment/line_164',
- 'plugins/ingest-attachment/line_117'
- ].join(',')
- }
- }
- // Build the cluster with all plugins
- project.rootProject.subprojects.findAll { it.parent.path == ':plugins' }.each { subproj ->
- /* Skip repositories. We just aren't going to be able to test them so it
- * doesn't make sense to waste time installing them. */
- if (subproj.path.startsWith(':plugins:repository-')) {
- return
- }
- subproj.afterEvaluate { // need to wait until the project has been configured
- integTestCluster {
- plugin subproj.path
- }
- }
- }
- buildRestTests.docs = fileTree(projectDir) {
- // No snippets in here!
- exclude 'build.gradle'
- // That is where the snippets go, not where they come from!
- exclude 'build'
- // Just syntax examples
- exclude 'README.asciidoc'
- // Broken code snippet tests
- exclude 'reference/rollup/rollup-getting-started.asciidoc'
- exclude 'reference/rollup/apis/rollup-job-config.asciidoc'
- exclude 'reference/rollup/apis/rollup-index-caps.asciidoc'
- exclude 'reference/rollup/apis/put-job.asciidoc'
- exclude 'reference/rollup/apis/stop-job.asciidoc'
- exclude 'reference/rollup/apis/start-job.asciidoc'
- exclude 'reference/rollup/apis/rollup-search.asciidoc'
- exclude 'reference/rollup/apis/delete-job.asciidoc'
- exclude 'reference/rollup/apis/get-job.asciidoc'
- exclude 'reference/rollup/apis/rollup-caps.asciidoc'
- }
- listSnippets.docs = buildRestTests.docs
- Closure setupTwitter = { String name, int count ->
- buildRestTests.setups[name] = '''
- - do:
- indices.create:
- index: twitter
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- user:
- type: keyword
- doc_values: true
- date:
- type: date
- likes:
- type: long
- - do:
- bulk:
- index: twitter
- type: _doc
- refresh: true
- body: |'''
- for (int i = 0; i < count; i++) {
- String user, text
- if (i == 0) {
- user = 'kimchy'
- text = 'trying out Elasticsearch'
- } else {
- user = 'test'
- text = "some message with the number $i"
- }
- buildRestTests.setups[name] += """
- {"index":{"_id": "$i"}}
- {"user": "$user", "message": "$text", "date": "2009-11-15T14:12:12", "likes": $i}"""
- }
- }
- setupTwitter('twitter', 5)
- setupTwitter('big_twitter', 120)
- setupTwitter('huge_twitter', 1200)
- buildRestTests.setups['host'] = '''
- # Fetch the http host. We use the host of the master because we know there will always be a master.
- - do:
- cluster.state: {}
- - set: { master_node: master }
- - do:
- nodes.info:
- metric: [ http, transport ]
- - is_true: nodes.$master.http.publish_address
- - set: {nodes.$master.http.publish_address: host}
- - set: {nodes.$master.transport.publish_address: transport_host}
- '''
- buildRestTests.setups['node'] = '''
- # Fetch the node name. We use the host of the master because we know there will always be a master.
- - do:
- cluster.state: {}
- - is_true: master_node
- - set: { master_node: node_name }
- '''
- // Used by scripted metric docs
- buildRestTests.setups['ledger'] = '''
- - do:
- indices.create:
- index: ledger
- body:
- settings:
- number_of_shards: 2
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- type:
- type: keyword
- amount:
- type: double
- - do:
- bulk:
- index: ledger
- type: _doc
- refresh: true
- body: |
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "amount": 200, "type": "sale", "description": "something"}
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "amount": 10, "type": "expense", "decription": "another thing"}
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "amount": 150, "type": "sale", "description": "blah"}
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "amount": 50, "type": "expense", "description": "cost of blah"}
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "amount": 50, "type": "expense", "description": "advertisement"}'''
- // Used by aggregation docs
- buildRestTests.setups['sales'] = '''
- - do:
- indices.create:
- index: sales
- body:
- settings:
- number_of_shards: 2
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- type:
- type: keyword
- - do:
- bulk:
- index: sales
- type: _doc
- refresh: true
- body: |
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "price": 200, "promoted": true, "rating": 1, "type": "hat"}
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "price": 200, "promoted": true, "rating": 1, "type": "t-shirt"}
- {"index":{}}
- {"date": "2015/01/01 00:00:00", "price": 150, "promoted": true, "rating": 5, "type": "bag"}
- {"index":{}}
- {"date": "2015/02/01 00:00:00", "price": 50, "promoted": false, "rating": 1, "type": "hat"}
- {"index":{}}
- {"date": "2015/02/01 00:00:00", "price": 10, "promoted": true, "rating": 4, "type": "t-shirt"}
- {"index":{}}
- {"date": "2015/03/01 00:00:00", "price": 200, "promoted": true, "rating": 1, "type": "hat"}
- {"index":{}}
- {"date": "2015/03/01 00:00:00", "price": 175, "promoted": false, "rating": 2, "type": "t-shirt"}'''
- // Dummy bank account data used by getting-started.asciidoc
- buildRestTests.setups['bank'] = '''
- - do:
- indices.create:
- index: bank
- body:
- settings:
- number_of_shards: 5
- number_of_routing_shards: 5
- - do:
- bulk:
- index: bank
- type: _doc
- refresh: true
- body: |
- #bank_data#
- '''
- /* Load the actual accounts only if we're going to use them. This complicates
- * dependency checking but that is a small price to pay for not building a
- * 400kb string every time we start the build. */
- File accountsFile = new File("$projectDir/src/test/resources/accounts.json")
- buildRestTests.inputs.file(accountsFile)
- buildRestTests.doFirst {
- String accounts = accountsFile.getText('UTF-8')
- // Indent like a yaml test needs
- accounts = accounts.replaceAll('(?m)^', ' ')
- buildRestTests.setups['bank'] =
- buildRestTests.setups['bank'].replace('#bank_data#', accounts)
- }
- // Used by index boost doc
- buildRestTests.setups['index_boost'] = '''
- - do:
- indices.create:
- index: index1
- - do:
- indices.create:
- index: index2
- - do:
- indices.put_alias:
- index: index1
- name: alias1
- '''
- // Used by sampler and diversified-sampler aggregation docs
- buildRestTests.setups['stackoverflow'] = '''
- - do:
- indices.create:
- index: stackoverflow
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- author:
- type: keyword
- tags:
- type: keyword
- - do:
- bulk:
- index: stackoverflow
- type: _doc
- refresh: true
- body: |'''
- // Make Kibana strongly connected to elasticsearch and logstash
- // Make Kibana rarer (and therefore higher-ranking) than Javascript
- // Make Javascript strongly connected to jquery and angular
- // Make Cabana strongly connected to elasticsearch but only as a result of a single author
- for (int i = 0; i < 150; i++) {
- buildRestTests.setups['stackoverflow'] += """
- {"index":{}}
- {"author": "very_relevant_$i", "tags": ["elasticsearch", "kibana"]}"""
- }
- for (int i = 0; i < 50; i++) {
- buildRestTests.setups['stackoverflow'] += """
- {"index":{}}
- {"author": "very_relevant_$i", "tags": ["logstash", "kibana"]}"""
- }
- for (int i = 0; i < 200; i++) {
- buildRestTests.setups['stackoverflow'] += """
- {"index":{}}
- {"author": "partially_relevant_$i", "tags": ["javascript", "jquery"]}"""
- }
- for (int i = 0; i < 200; i++) {
- buildRestTests.setups['stackoverflow'] += """
- {"index":{}}
- {"author": "partially_relevant_$i", "tags": ["javascript", "angular"]}"""
- }
- for (int i = 0; i < 50; i++) {
- buildRestTests.setups['stackoverflow'] += """
- {"index":{}}
- {"author": "noisy author", "tags": ["elasticsearch", "cabana"]}"""
- }
- buildRestTests.setups['stackoverflow'] += """
- """
- // Used by significant_text aggregation docs
- buildRestTests.setups['news'] = '''
- - do:
- indices.create:
- index: news
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- source:
- type: keyword
- content:
- type: text
- - do:
- bulk:
- index: news
- type: _doc
- refresh: true
- body: |'''
- // Make h5n1 strongly connected to bird flu
- for (int i = 0; i < 100; i++) {
- buildRestTests.setups['news'] += """
- {"index":{}}
- {"source": "very_relevant_$i", "content": "bird flu h5n1"}"""
- }
- for (int i = 0; i < 100; i++) {
- buildRestTests.setups['news'] += """
- {"index":{}}
- {"source": "filler_$i", "content": "bird dupFiller "}"""
- }
- for (int i = 0; i < 100; i++) {
- buildRestTests.setups['news'] += """
- {"index":{}}
- {"source": "filler_$i", "content": "flu dupFiller "}"""
- }
- for (int i = 0; i < 20; i++) {
- buildRestTests.setups['news'] += """
- {"index":{}}
- {"source": "partially_relevant_$i", "content": "elasticsearch dupFiller dupFiller dupFiller dupFiller pozmantier"}"""
- }
- for (int i = 0; i < 10; i++) {
- buildRestTests.setups['news'] += """
- {"index":{}}
- {"source": "partially_relevant_$i", "content": "elasticsearch logstash kibana"}"""
- }
- buildRestTests.setups['news'] += """
- """
- // Used by some aggregations
- buildRestTests.setups['exams'] = '''
- - do:
- indices.create:
- index: exams
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- grade:
- type: byte
- - do:
- bulk:
- index: exams
- type: _doc
- refresh: true
- body: |
- {"index":{}}
- {"grade": 100, "weight": 2}
- {"index":{}}
- {"grade": 50, "weight": 3}'''
- buildRestTests.setups['stored_example_script'] = '''
- # Simple script to load a field. Not really a good example, but a simple one.
- - do:
- put_script:
- id: "my_script"
- body: { "script": { "lang": "painless", "source": "doc[params.field].value" } }
- - match: { acknowledged: true }
- '''
- buildRestTests.setups['stored_scripted_metric_script'] = '''
- - do:
- put_script:
- id: "my_init_script"
- body: { "script": { "lang": "painless", "source": "state.transactions = []" } }
- - match: { acknowledged: true }
- - do:
- put_script:
- id: "my_map_script"
- body: { "script": { "lang": "painless", "source": "state.transactions.add(doc.type.value == 'sale' ? doc.amount.value : -1 * doc.amount.value)" } }
- - match: { acknowledged: true }
- - do:
- put_script:
- id: "my_combine_script"
- body: { "script": { "lang": "painless", "source": "double profit = 0;for (t in state.transactions) { profit += t; } return profit" } }
- - match: { acknowledged: true }
- - do:
- put_script:
- id: "my_reduce_script"
- body: { "script": { "lang": "painless", "source": "double profit = 0;for (a in states) { profit += a; } return profit" } }
- - match: { acknowledged: true }
- '''
- // Used by analyze api
- buildRestTests.setups['analyze_sample'] = '''
- - do:
- indices.create:
- index: analyze_sample
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 0
- analysis:
- normalizer:
- my_normalizer:
- type: custom
- filter: [lowercase]
- mappings:
- _doc:
- properties:
- obj1.field1:
- type: text'''
- // Used by percentile/percentile-rank aggregations
- buildRestTests.setups['latency'] = '''
- - do:
- indices.create:
- index: latency
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- load_time:
- type: long
- - do:
- bulk:
- index: latency
- type: _doc
- refresh: true
- body: |'''
- for (int i = 0; i < 100; i++) {
- def value = i
- if (i % 10) {
- value = i*10
- }
- buildRestTests.setups['latency'] += """
- {"index":{}}
- {"load_time": "$value"}"""
- }
- // Used by iprange agg
- buildRestTests.setups['iprange'] = '''
- - do:
- indices.create:
- index: ip_addresses
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- _doc:
- properties:
- ip:
- type: ip
- - do:
- bulk:
- index: ip_addresses
- type: _doc
- refresh: true
- body: |'''
- for (int i = 0; i < 255; i++) {
- buildRestTests.setups['iprange'] += """
- {"index":{}}
- {"ip": "10.0.0.$i"}"""
- }
- for (int i = 0; i < 5; i++) {
- buildRestTests.setups['iprange'] += """
- {"index":{}}
- {"ip": "9.0.0.$i"}"""
- buildRestTests.setups['iprange'] += """
- {"index":{}}
- {"ip": "11.0.0.$i"}"""
- buildRestTests.setups['iprange'] += """
- {"index":{}}
- {"ip": "12.0.0.$i"}"""
- }
- // Used by SQL because it looks SQL-ish
- buildRestTests.setups['library'] = '''
- - do:
- indices.create:
- index: library
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 1
- mappings:
- book:
- properties:
- name:
- type: text
- fields:
- keyword:
- type: keyword
- author:
- type: text
- fields:
- keyword:
- type: keyword
- release_date:
- type: date
- page_count:
- type: short
- - do:
- bulk:
- index: library
- type: book
- refresh: true
- body: |
- {"index":{"_id": "Leviathan Wakes"}}
- {"name": "Leviathan Wakes", "author": "James S.A. Corey", "release_date": "2011-06-02", "page_count": 561}
- {"index":{"_id": "Hyperion"}}
- {"name": "Hyperion", "author": "Dan Simmons", "release_date": "1989-05-26", "page_count": 482}
- {"index":{"_id": "Dune"}}
- {"name": "Dune", "author": "Frank Herbert", "release_date": "1965-06-01", "page_count": 604}
- {"index":{"_id": "Dune Messiah"}}
- {"name": "Dune Messiah", "author": "Frank Herbert", "release_date": "1969-10-15", "page_count": 331}
- {"index":{"_id": "Children of Dune"}}
- {"name": "Children of Dune", "author": "Frank Herbert", "release_date": "1976-04-21", "page_count": 408}
- {"index":{"_id": "God Emperor of Dune"}}
- {"name": "God Emperor of Dune", "author": "Frank Herbert", "release_date": "1981-05-28", "page_count": 454}
- {"index":{"_id": "Consider Phlebas"}}
- {"name": "Consider Phlebas", "author": "Iain M. Banks", "release_date": "1987-04-23", "page_count": 471}
- {"index":{"_id": "Pandora's Star"}}
- {"name": "Pandora's Star", "author": "Peter F. Hamilton", "release_date": "2004-03-02", "page_count": 768}
- {"index":{"_id": "Revelation Space"}}
- {"name": "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585}
- {"index":{"_id": "A Fire Upon the Deep"}}
- {"name": "A Fire Upon the Deep", "author": "Vernor Vinge", "release_date": "1992-06-01", "page_count": 613}
- {"index":{"_id": "Ender's Game"}}
- {"name": "Ender's Game", "author": "Orson Scott Card", "release_date": "1985-06-01", "page_count": 324}
- {"index":{"_id": "1984"}}
- {"name": "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328}
- {"index":{"_id": "Fahrenheit 451"}}
- {"name": "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227}
- {"index":{"_id": "Brave New World"}}
- {"name": "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268}
- {"index":{"_id": "Foundation"}}
- {"name": "Foundation", "author": "Isaac Asimov", "release_date": "1951-06-01", "page_count": 224}
- {"index":{"_id": "The Giver"}}
- {"name": "The Giver", "author": "Lois Lowry", "release_date": "1993-04-26", "page_count": 208}
- {"index":{"_id": "Slaughterhouse-Five"}}
- {"name": "Slaughterhouse-Five", "author": "Kurt Vonnegut", "release_date": "1969-06-01", "page_count": 275}
- {"index":{"_id": "The Hitchhiker's Guide to the Galaxy"}}
- {"name": "The Hitchhiker's Guide to the Galaxy", "author": "Douglas Adams", "release_date": "1979-10-12", "page_count": 180}
- {"index":{"_id": "Snow Crash"}}
- {"name": "Snow Crash", "author": "Neal Stephenson", "release_date": "1992-06-01", "page_count": 470}
- {"index":{"_id": "Neuromancer"}}
- {"name": "Neuromancer", "author": "William Gibson", "release_date": "1984-07-01", "page_count": 271}
- {"index":{"_id": "The Handmaid's Tale"}}
- {"name": "The Handmaid's Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311}
- {"index":{"_id": "Starship Troopers"}}
- {"name": "Starship Troopers", "author": "Robert A. Heinlein", "release_date": "1959-12-01", "page_count": 335}
- {"index":{"_id": "The Left Hand of Darkness"}}
- {"name": "The Left Hand of Darkness", "author": "Ursula K. Le Guin", "release_date": "1969-06-01", "page_count": 304}
- {"index":{"_id": "The Moon is a Harsh Mistress"}}
- {"name": "The Moon is a Harsh Mistress", "author": "Robert A. Heinlein", "release_date": "1966-04-01", "page_count": 288}
- '''
- buildRestTests.setups['sensor_rollup_job'] = '''
- - do:
- indices.create:
- index: sensor-1
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 0
- mappings:
- _doc:
- properties:
- timestamp:
- type: date
- temperature:
- type: long
- voltage:
- type: float
- node:
- type: keyword
- - do:
- xpack.rollup.put_job:
- id: "sensor"
- body: >
- {
- "index_pattern": "sensor-*",
- "rollup_index": "sensor_rollup",
- "cron": "*/30 * * * * ?",
- "page_size" :1000,
- "groups" : {
- "date_histogram": {
- "field": "timestamp",
- "interval": "1h",
- "delay": "7d"
- },
- "terms": {
- "fields": ["node"]
- }
- },
- "metrics": [
- {
- "field": "temperature",
- "metrics": ["min", "max", "sum"]
- },
- {
- "field": "voltage",
- "metrics": ["avg"]
- }
- ]
- }
- '''
- buildRestTests.setups['sensor_started_rollup_job'] = '''
- - do:
- indices.create:
- index: sensor-1
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 0
- mappings:
- _doc:
- properties:
- timestamp:
- type: date
- temperature:
- type: long
- voltage:
- type: float
- node:
- type: keyword
- - do:
- bulk:
- index: sensor-1
- type: _doc
- refresh: true
- body: |
- {"index":{}}
- {"timestamp": 1516729294000, "temperature": 200, "voltage": 5.2, "node": "a"}
- {"index":{}}
- {"timestamp": 1516642894000, "temperature": 201, "voltage": 5.8, "node": "b"}
- {"index":{}}
- {"timestamp": 1516556494000, "temperature": 202, "voltage": 5.1, "node": "a"}
- {"index":{}}
- {"timestamp": 1516470094000, "temperature": 198, "voltage": 5.6, "node": "b"}
- {"index":{}}
- {"timestamp": 1516383694000, "temperature": 200, "voltage": 4.2, "node": "c"}
- {"index":{}}
- {"timestamp": 1516297294000, "temperature": 202, "voltage": 4.0, "node": "c"}
- - do:
- xpack.rollup.put_job:
- id: "sensor"
- body: >
- {
- "index_pattern": "sensor-*",
- "rollup_index": "sensor_rollup",
- "cron": "* * * * * ?",
- "page_size" :1000,
- "groups" : {
- "date_histogram": {
- "field": "timestamp",
- "interval": "1h",
- "delay": "7d"
- },
- "terms": {
- "fields": ["node"]
- }
- },
- "metrics": [
- {
- "field": "temperature",
- "metrics": ["min", "max", "sum"]
- },
- {
- "field": "voltage",
- "metrics": ["avg"]
- }
- ]
- }
- - do:
- xpack.rollup.start_job:
- id: "sensor"
- '''
- buildRestTests.setups['sensor_index'] = '''
- - do:
- indices.create:
- index: sensor-1
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 0
- mappings:
- _doc:
- properties:
- timestamp:
- type: date
- temperature:
- type: long
- voltage:
- type: float
- node:
- type: keyword
- load:
- type: double
- net_in:
- type: long
- net_out:
- type: long
- hostname:
- type: keyword
- datacenter:
- type: keyword
- '''
- buildRestTests.setups['sensor_prefab_data'] = '''
- - do:
- indices.create:
- index: sensor-1
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 0
- mappings:
- _doc:
- properties:
- timestamp:
- type: date
- temperature:
- type: long
- voltage:
- type: float
- node:
- type: keyword
- - do:
- indices.create:
- index: sensor_rollup
- body:
- settings:
- number_of_shards: 1
- number_of_replicas: 0
- mappings:
- _doc:
- properties:
- node.terms.value:
- type: keyword
- temperature.sum.value:
- type: double
- temperature.max.value:
- type: double
- temperature.min.value:
- type: double
- timestamp.date_histogram.time_zone:
- type: keyword
- timestamp.date_histogram.interval:
- type: keyword
- timestamp.date_histogram.timestamp:
- type: date
- timestamp.date_histogram._count:
- type: long
- voltage.avg.value:
- type: double
- voltage.avg._count:
- type: long
- _rollup.id:
- type: keyword
- _rollup.version:
- type: long
- _meta:
- _rollup:
- sensor:
- cron: "* * * * * ?"
- rollup_index: "sensor_rollup"
- index_pattern: "sensor-*"
- timeout: "20s"
- page_size: 1000
- groups:
- date_histogram:
- delay: "7d"
- field: "timestamp"
- interval: "1h"
- time_zone: "UTC"
- terms:
- fields:
- - "node"
- id: sensor
- metrics:
- - field: "temperature"
- metrics:
- - min
- - max
- - sum
- - field: "voltage"
- metrics:
- - avg
- - do:
- bulk:
- index: sensor_rollup
- type: _doc
- refresh: true
- body: |
- {"index":{}}
- {"node.terms.value":"b","temperature.sum.value":201.0,"temperature.max.value":201.0,"timestamp.date_histogram.time_zone":"UTC","temperature.min.value":201.0,"timestamp.date_histogram._count":1,"timestamp.date_histogram.interval":"1h","_rollup.computed":["temperature.sum","temperature.min","voltage.avg","temperature.max","node.terms","timestamp.date_histogram"],"voltage.avg.value":5.800000190734863,"node.terms._count":1,"_rollup.version":1,"timestamp.date_histogram.timestamp":1516640400000,"voltage.avg._count":1.0,"_rollup.id":"sensor"}
- {"index":{}}
- {"node.terms.value":"c","temperature.sum.value":200.0,"temperature.max.value":200.0,"timestamp.date_histogram.time_zone":"UTC","temperature.min.value":200.0,"timestamp.date_histogram._count":1,"timestamp.date_histogram.interval":"1h","_rollup.computed":["temperature.sum","temperature.min","voltage.avg","temperature.max","node.terms","timestamp.date_histogram"],"voltage.avg.value":4.199999809265137,"node.terms._count":1,"_rollup.version":1,"timestamp.date_histogram.timestamp":1516381200000,"voltage.avg._count":1.0,"_rollup.id":"sensor"}
- {"index":{}}
- {"node.terms.value":"a","temperature.sum.value":202.0,"temperature.max.value":202.0,"timestamp.date_histogram.time_zone":"UTC","temperature.min.value":202.0,"timestamp.date_histogram._count":1,"timestamp.date_histogram.interval":"1h","_rollup.computed":["temperature.sum","temperature.min","voltage.avg","temperature.max","node.terms","timestamp.date_histogram"],"voltage.avg.value":5.099999904632568,"node.terms._count":1,"_rollup.version":1,"timestamp.date_histogram.timestamp":1516554000000,"voltage.avg._count":1.0,"_rollup.id":"sensor"}
- {"index":{}}
- {"node.terms.value":"a","temperature.sum.value":200.0,"temperature.max.value":200.0,"timestamp.date_histogram.time_zone":"UTC","temperature.min.value":200.0,"timestamp.date_histogram._count":1,"timestamp.date_histogram.interval":"1h","_rollup.computed":["temperature.sum","temperature.min","voltage.avg","temperature.max","node.terms","timestamp.date_histogram"],"voltage.avg.value":5.199999809265137,"node.terms._count":1,"_rollup.version":1,"timestamp.date_histogram.timestamp":1516726800000,"voltage.avg._count":1.0,"_rollup.id":"sensor"}
- {"index":{}}
- {"node.terms.value":"b","temperature.sum.value":198.0,"temperature.max.value":198.0,"timestamp.date_histogram.time_zone":"UTC","temperature.min.value":198.0,"timestamp.date_histogram._count":1,"timestamp.date_histogram.interval":"1h","_rollup.computed":["temperature.sum","temperature.min","voltage.avg","temperature.max","node.terms","timestamp.date_histogram"],"voltage.avg.value":5.599999904632568,"node.terms._count":1,"_rollup.version":1,"timestamp.date_histogram.timestamp":1516467600000,"voltage.avg._count":1.0,"_rollup.id":"sensor"}
- {"index":{}}
- {"node.terms.value":"c","temperature.sum.value":202.0,"temperature.max.value":202.0,"timestamp.date_histogram.time_zone":"UTC","temperature.min.value":202.0,"timestamp.date_histogram._count":1,"timestamp.date_histogram.interval":"1h","_rollup.computed":["temperature.sum","temperature.min","voltage.avg","temperature.max","node.terms","timestamp.date_histogram"],"voltage.avg.value":4.0,"node.terms._count":1,"_rollup.version":1,"timestamp.date_histogram.timestamp":1516294800000,"voltage.avg._count":1.0,"_rollup.id":"sensor"}
- '''
|