Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Alerting] Allow rule to execute if the value is 0 and that mets the condition #105626

Merged

Conversation

chrisronline
Copy link
Contributor

Resolves #103922

The index threshold alert wasn't properly handling cases where the query returned no results, but the condition matched with no results.

This PR addresses that by always checking the empty value against the condition.

To test, see the setup instructions in #103922

@chrisronline chrisronline added review release_note:fix Feature:Alerting v8.0.0 Team:ResponseOps Label for the ResponseOps team (formerly the Cases and Alerting teams) v7.15.0 Feature:Alerting/RuleTypes Issues related to specific Alerting Rules Types labels Jul 14, 2021
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-alerting-services (Team:Alerting Services)

Copy link
Contributor

@ymao1 ymao1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Just one nit about checking for undefined :)

@@ -180,7 +180,7 @@ export function getAlertType(
groupResult.metrics && groupResult.metrics.length > 0 ? groupResult.metrics[0] : null;
const value = metric && metric.length === 2 ? metric[1] : null;

if (!value) {
if (value === null) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: should we also check for value === undefined just to cover all our bases?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It also could be a shorter version:
if (value == null) {
but current way probably is more clear

Copy link
Contributor

@YulNaumenko YulNaumenko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@chrisronline
Copy link
Contributor Author

@elasticmachine merge upstream

@kibanamachine
Copy link
Contributor

💛 Build succeeded, but was flaky


Test Failures

Kibana Pipeline / general / Chrome UI Functional Tests.test/functional/apps/visualize/_metric_chart·ts.visualize app visualize ciGroup10 metric chart should show Percentiles

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has failed 2 times on tracked branches: https://github.com/elastic/kibana/issues/106121

[00:00:00]       │
[00:00:00]         └-: visualize app
[00:00:00]           └-> "before all" hook in "visualize app"
[00:00:00]           └-> "before all" hook in "visualize app"
[00:00:00]             │ debg Starting visualize before method
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Loading "mappings.json"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Loading "data.json.gz"
[00:00:00]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_001/5WC8p9eSS-6yzRu6ACyPkQ] deleting index
[00:00:00]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_task_manager_8.0.0_001/0pjKKSX7TO-ZT9G2UvPL1w] deleting index
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Deleted existing index ".kibana_8.0.0_001"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Created index ".kibana_1"
[00:00:00]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] ".kibana_1" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Indexed 1 docs into ".kibana"
[00:00:00]             │ debg Migrating saved objects
[00:00:00]             │ proc [kibana]   log   [15:33:01.413] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET. took: 4ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.417] [info][savedobjects-service] [.kibana] INIT -> WAIT_FOR_YELLOW_SOURCE. took: 9ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.423] [info][savedobjects-service] [.kibana] WAIT_FOR_YELLOW_SOURCE -> CHECK_UNKNOWN_DOCUMENTS. took: 6ms.
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_task_manager_8.0.0_001]
[00:00:00]             │ proc [kibana]   log   [15:33:01.441] [info][savedobjects-service] [.kibana] CHECK_UNKNOWN_DOCUMENTS -> SET_SOURCE_WRITE_BLOCK. took: 18ms.
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] adding block write to indices [[.kibana_1/vWnREApQSuasXVtjrH8aOw]]
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] completed adding block write to indices [.kibana_1]
[00:00:00]             │ proc [kibana]   log   [15:33:01.532] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY. took: 119ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.554] [info][savedobjects-service] [.kibana] SET_SOURCE_WRITE_BLOCK -> CREATE_REINDEX_TEMP. took: 113ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.582] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE. took: 50ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.583] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 174ms
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_reindex_temp] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_8.0.0_reindex_temp]
[00:00:00]             │ proc [kibana]   log   [15:33:01.652] [info][savedobjects-service] [.kibana] CREATE_REINDEX_TEMP -> REINDEX_SOURCE_TO_TEMP_OPEN_PIT. took: 98ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.668] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_OPEN_PIT -> REINDEX_SOURCE_TO_TEMP_READ. took: 16ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.691] [info][savedobjects-service] [.kibana] Starting to process 1 documents.
[00:00:00]             │ proc [kibana]   log   [15:33:01.692] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_READ -> REINDEX_SOURCE_TO_TEMP_INDEX. took: 23ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.695] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_INDEX -> REINDEX_SOURCE_TO_TEMP_INDEX_BULK. took: 4ms.
[00:00:00]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_reindex_temp/3mJwJfHhS1i9oJY0I1gRZQ] update_mapping [_doc]
[00:00:00]             │ proc [kibana]   log   [15:33:01.741] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_INDEX_BULK -> REINDEX_SOURCE_TO_TEMP_READ. took: 46ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.756] [info][savedobjects-service] [.kibana] Processed 1 documents out of 1.
[00:00:00]             │ proc [kibana]   log   [15:33:01.757] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_READ -> REINDEX_SOURCE_TO_TEMP_CLOSE_PIT. took: 15ms.
[00:00:00]             │ proc [kibana]   log   [15:33:01.766] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_CLOSE_PIT -> SET_TEMP_WRITE_BLOCK. took: 10ms.
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] adding block write to indices [[.kibana_8.0.0_reindex_temp/3mJwJfHhS1i9oJY0I1gRZQ]]
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] completed adding block write to indices [.kibana_8.0.0_reindex_temp]
[00:00:00]             │ proc [kibana]   log   [15:33:01.821] [info][savedobjects-service] [.kibana] SET_TEMP_WRITE_BLOCK -> CLONE_TEMP_TO_TARGET. took: 55ms.
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] applying create index request using existing index [.kibana_8.0.0_reindex_temp] metadata
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_001] creating index, cause [clone_index], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_8.0.0_001]
[00:00:00]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/2HRFryGtRUmY_9xaHhqg3w] create_mapping
[00:00:01]             │ proc [kibana]   log   [15:33:01.984] [info][savedobjects-service] [.kibana] CLONE_TEMP_TO_TARGET -> REFRESH_TARGET. took: 163ms.
[00:00:01]             │ proc [kibana]   log   [15:33:01.992] [info][savedobjects-service] [.kibana] REFRESH_TARGET -> OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT. took: 8ms.
[00:00:01]             │ proc [kibana]   log   [15:33:01.997] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT -> OUTDATED_DOCUMENTS_SEARCH_READ. took: 5ms.
[00:00:01]             │ proc [kibana]   log   [15:33:02.016] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_READ -> OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT. took: 19ms.
[00:00:01]             │ proc [kibana]   log   [15:33:02.021] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT -> UPDATE_TARGET_MAPPINGS. took: 5ms.
[00:00:01]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/2HRFryGtRUmY_9xaHhqg3w] update_mapping [_doc]
[00:00:01]             │ proc [kibana]   log   [15:33:02.126] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK. took: 105ms.
[00:00:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.tasks] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:01]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.tasks]
[00:00:01]             │ info [o.e.t.LoggingTaskListener] [node-01] 720 finished with response BulkByScrollResponse[took=49ms,timed_out=false,sliceId=null,updated=1,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:00:01]             │ proc [kibana]   log   [15:33:02.350] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> MARK_VERSION_INDEX_READY. took: 224ms.
[00:00:01]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_reindex_temp/3mJwJfHhS1i9oJY0I1gRZQ] deleting index
[00:00:01]             │ proc [kibana]   log   [15:33:02.397] [info][savedobjects-service] [.kibana] MARK_VERSION_INDEX_READY -> DONE. took: 47ms.
[00:00:01]             │ proc [kibana]   log   [15:33:02.398] [info][savedobjects-service] [.kibana] Migration completed after 990ms
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] Migrated Kibana index after loading Kibana data
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] Ensured that default space exists in .kibana
[00:00:01]             │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyChartsLibrary":true,"visualization:visualize:legacyPieChartsLibrary":true}
[00:00:03]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Loading "mappings.json"
[00:00:03]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Loading "data.json.gz"
[00:00:03]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.22] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.22"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.22" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.20] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.20"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.20" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.21] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.21"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.21" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:13]             │ info progress: 10825
[00:00:16]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4633 docs into "logstash-2015.09.22"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4757 docs into "logstash-2015.09.20"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4614 docs into "logstash-2015.09.21"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Loading "mappings.json"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Loading "data.json.gz"
[00:00:16]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [long-window-logstash-0] creating index, cause [api], templates [], shards [1]/[0]
[00:00:16]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Created index "long-window-logstash-0"
[00:00:16]             │ debg [test/functional/fixtures/es_archiver/long_window_logstash] "long-window-logstash-0" settings {"index":{"analysis":{"analyzer":{"makelogs_url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:26]             │ info progress: 11138
[00:00:28]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Indexed 14005 docs into "long-window-logstash-0"
[00:00:29]           └-: visualize ciGroup10
[00:00:29]             └-> "before all" hook in "visualize ciGroup10"
[00:10:17]             └-: metric chart
[00:10:17]               └-> "before all" hook for "should have inspector enabled"
[00:10:17]               └-> "before all" hook for "should have inspector enabled"
[00:10:17]                 │ debg Cleaning all saved objects { space: undefined }
[00:10:17]                 │ info deleting batch of 8 objects
[00:10:18]                 │ succ deleted 8 objects
[00:10:18]                 │ debg resolved import for test/functional/fixtures/kbn_archiver/visualize.json to /dev/shm/workspace/parallel/14/kibana/test/functional/fixtures/kbn_archiver/visualize.json
[00:10:18]                 │ info importing 13 saved objects { space: undefined }
[00:10:19]                 │ succ import success
[00:10:19]                 │ debg replacing kibana config doc: {"defaultIndex":"logstash-*","format:bytes:defaultPattern":"0,0.[000]b","visualization:visualize:legacyChartsLibrary":true,"visualization:visualize:legacyPieChartsLibrary":true}
[00:10:20]                 │ debg navigateToApp visualize
[00:10:20]                 │ debg navigating to visualize url: http://localhost:61141/app/visualize#/
[00:10:20]                 │ debg navigate to: http://localhost:61141/app/visualize#/
[00:10:20]                 │ debg browser[INFO] http://localhost:61141/app/visualize?_t=1626709401450#/ 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:10:20]                 │
[00:10:20]                 │ debg browser[INFO] http://localhost:61141/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:10:20]                 │ debg ... sleep(700) start
[00:10:21]                 │ debg ... sleep(700) end
[00:10:21]                 │ debg returned from get, calling refresh
[00:10:22]                 │ERROR browser[SEVERE] http://localhost:61141/44577/bundles/core/core.entry.js 12:155344 TypeError: Failed to fetch
[00:10:22]                 │          at fetch_Fetch.fetchResponse (http://localhost:61141/44577/bundles/core/core.entry.js:6:26323)
[00:10:22]                 │          at async http://localhost:61141/44577/bundles/core/core.entry.js:6:24092
[00:10:22]                 │          at async http://localhost:61141/44577/bundles/core/core.entry.js:6:23998
[00:10:22]                 │ debg browser[INFO] http://localhost:61141/app/visualize?_t=1626709401450#/ 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:10:22]                 │
[00:10:22]                 │ debg browser[INFO] http://localhost:61141/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:10:22]                 │ debg currentUrl = http://localhost:61141/app/visualize#/
[00:10:22]                 │          appUrl = http://localhost:61141/app/visualize#/
[00:10:22]                 │ debg TestSubjects.find(kibanaChrome)
[00:10:22]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:10:23]                 │ debg ... sleep(501) start
[00:10:23]                 │ debg ... sleep(501) end
[00:10:23]                 │ debg in navigateTo url = http://localhost:61141/app/visualize#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:10:23]                 │ debg --- retry.tryForTime error: URL changed, waiting for it to settle
[00:10:24]                 │ debg ... sleep(501) start
[00:10:24]                 │ debg ... sleep(501) end
[00:10:24]                 │ debg in navigateTo url = http://localhost:61141/app/visualize#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:10:24]                 │ debg isGlobalLoadingIndicatorVisible
[00:10:24]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:10:24]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:10:26]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:10:26]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:10:26]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:10:26]                 │ debg TestSubjects.exists(newItemButton)
[00:10:26]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:10:26]                 │ debg TestSubjects.click(newItemButton)
[00:10:26]                 │ debg Find.clickByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:10:26]                 │ debg Find.findByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:10:26]                 │ debg TestSubjects.click(visGroupAggBasedExploreLink)
[00:10:26]                 │ debg Find.clickByCssSelector('[data-test-subj="visGroupAggBasedExploreLink"]') with timeout=10000
[00:10:26]                 │ debg Find.findByCssSelector('[data-test-subj="visGroupAggBasedExploreLink"]') with timeout=10000
[00:10:27]                 │ debg TestSubjects.find(visNewDialogTypes)
[00:10:27]                 │ debg Find.findByCssSelector('[data-test-subj="visNewDialogTypes"]') with timeout=10000
[00:10:27]                 │ debg clickMetric
[00:10:27]                 │ debg TestSubjects.click(visType-metric)
[00:10:27]                 │ debg Find.clickByCssSelector('[data-test-subj="visType-metric"]') with timeout=10000
[00:10:27]                 │ debg Find.findByCssSelector('[data-test-subj="visType-metric"]') with timeout=10000
[00:10:27]                 │ debg isGlobalLoadingIndicatorVisible
[00:10:27]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:10:27]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:10:28]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:10:29]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:10:29]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:10:29]                 │ debg TestSubjects.click(savedObjectTitlelogstash-*)
[00:10:29]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectTitlelogstash-*"]') with timeout=10000
[00:10:29]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitlelogstash-*"]') with timeout=10000
[00:10:29]                 │ debg isGlobalLoadingIndicatorVisible
[00:10:29]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:10:29]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:10:29]                 │ debg browser[INFO] http://localhost:61141/app/visualize#/create?type=metric&indexPattern=logstash-* 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:10:29]                 │
[00:10:29]                 │ debg browser[INFO] http://localhost:61141/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:10:31]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:10:31]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:10:31]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:10:31]                 │ debg Setting absolute range to Sep 19, 2015 @ 06:31:44.000 to Sep 23, 2015 @ 18:31:44.000
[00:10:31]                 │ debg TestSubjects.exists(superDatePickerToggleQuickMenuButton)
[00:10:31]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerToggleQuickMenuButton"]') with timeout=20000
[00:10:31]                 │ debg TestSubjects.exists(superDatePickerShowDatesButton)
[00:10:31]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=2500
[00:10:31]                 │ debg TestSubjects.click(superDatePickerShowDatesButton)
[00:10:31]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:10:31]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:10:31]                 │ debg TestSubjects.exists(superDatePickerstartDatePopoverButton)
[00:10:31]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=2500
[00:10:31]                 │ debg TestSubjects.click(superDatePickerendDatePopoverButton)
[00:10:31]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:10:31]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:10:31]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:10:31]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:10:31]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:10:31]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:10:32]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:10:32]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:32]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:32]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Sep 23, 2015 @ 18:31:44.000)
[00:10:32]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:10:32]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:32]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:32]                 │ debg TestSubjects.click(superDatePickerstartDatePopoverButton)
[00:10:32]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:10:32]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:10:32]                 │ debg Find.waitForElementStale with timeout=10000
[00:10:32]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:10:32]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:10:32]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:10:32]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:10:32]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:10:32]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:32]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:33]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Sep 19, 2015 @ 06:31:44.000)
[00:10:33]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:10:33]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:33]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:10:33]                 │ debg TestSubjects.exists(superDatePickerApplyTimeButton)
[00:10:33]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerApplyTimeButton"]') with timeout=2500
[00:10:35]                 │ debg --- retry.tryForTime error: [data-test-subj="superDatePickerApplyTimeButton"] is not displayed
[00:10:36]                 │ debg TestSubjects.click(querySubmitButton)
[00:10:36]                 │ debg Find.clickByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:10:36]                 │ debg Find.findByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:10:36]                 │ debg Find.waitForElementStale with timeout=10000
[00:10:36]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:10:36]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:10:36]               └-> should have inspector enabled
[00:10:36]                 └-> "before each" hook: global before each for "should have inspector enabled"
[00:10:36]                 │ debg TestSubjects.getAttribute(openInspectorButton, disabled, tryTimeout=120000, findTimeout=10000)
[00:10:36]                 │ debg TestSubjects.find(openInspectorButton)
[00:10:36]                 │ debg Find.findByCssSelector('[data-test-subj="openInspectorButton"]') with timeout=10000
[00:10:36]                 └- ✓ pass  (30ms) "visualize app visualize ciGroup10 metric chart should have inspector enabled"
[00:10:36]               └-> should show Count
[00:10:36]                 └-> "before each" hook: global before each for "should show Count"
[00:10:36]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:10:36]                 └- ✓ pass  (35ms) "visualize app visualize ciGroup10 metric chart should show Count"
[00:10:36]               └-> should show Average
[00:10:36]                 └-> "before each" hook: global before each for "should show Average"
[00:10:36]                 │ debg Find.clickByCssSelector('[data-test-subj="metricsAggGroup"] .euiAccordion__button') with timeout=10000
[00:10:36]                 │ debg Find.findByCssSelector('[data-test-subj="metricsAggGroup"] .euiAccordion__button') with timeout=10000
[00:10:37]                 │ debg Aggregation = Average
[00:10:37]                 │ debg Find.findByCssSelector('
[00:10:37]                 │              [data-test-subj="metricsAggGroup"]
[00:10:37]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:10:37]                 │              
[00:10:37]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:10:37]                 │            ') with timeout=10000
[00:10:37]                 │ debg comboBox.setElement, value: Average
[00:10:37]                 │ debg comboBox.isOptionSelected, value: Average
[00:10:39]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:39]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:39]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Average"]') with timeout=2500
[00:10:39]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:39]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:42]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:10:42]                 │ debg ... sleep(500) start
[00:10:43]                 │ debg ... sleep(500) end
[00:10:43]                 │ debg Field = machine.ram
[00:10:43]                 │ debg selectField machine.ram
[00:10:43]                 │ debg Find.findByCssSelector('
[00:10:43]                 │              [data-test-subj="metricsAggGroup"]
[00:10:43]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:10:43]                 │              [data-test-subj="visAggEditorParams"]
[00:10:43]                 │              
[00:10:43]                 │              [data-test-subj="visDefaultEditorField"]
[00:10:43]                 │            ') with timeout=10000
[00:10:43]                 │ debg comboBox.setElement, value: machine.ram
[00:10:43]                 │ debg comboBox.isOptionSelected, value: machine.ram
[00:10:45]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:45]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:45]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="machine.ram"]') with timeout=2500
[00:10:45]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:45]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:48]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:10:48]                 │ debg -- isNewChartsLibraryEnabled = false
[00:10:48]                 │ debg TestSubjects.find(visualizationLoader)
[00:10:48]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:10:48]                 │ debg Before Rendering count 2
[00:10:48]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:10:48]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:10:48]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:10:49]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [3]...
[00:10:49]                 │ debg TestSubjects.find(visualizationLoader)
[00:10:49]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:10:49]                 │ debg -- currentRenderingCount=2
[00:10:49]                 │ debg -- expectedCount=3
[00:10:49]                 │ debg TestSubjects.find(visualizationLoader)
[00:10:49]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:10:49]                 │ debg -- currentRenderingCount=3
[00:10:49]                 │ debg -- expectedCount=3
[00:10:49]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:10:49]                 └- ✓ pass  (13.0s) "visualize app visualize ciGroup10 metric chart should show Average"
[00:10:49]               └-> should show Sum
[00:10:49]                 └-> "before each" hook: global before each for "should show Sum"
[00:10:49]                 │ debg Aggregation = Sum
[00:10:49]                 │ debg Find.findByCssSelector('
[00:10:49]                 │              [data-test-subj="metricsAggGroup"]
[00:10:49]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:10:49]                 │              
[00:10:49]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:10:49]                 │            ') with timeout=10000
[00:10:50]                 │ debg comboBox.setElement, value: Sum
[00:10:50]                 │ debg comboBox.isOptionSelected, value: Sum
[00:10:52]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:52]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:52]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Sum"]') with timeout=2500
[00:10:52]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:52]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:55]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:10:55]                 │ debg ... sleep(500) start
[00:10:56]                 │ debg ... sleep(500) end
[00:10:56]                 │ debg Field = phpmemory
[00:10:56]                 │ debg selectField phpmemory
[00:10:56]                 │ debg Find.findByCssSelector('
[00:10:56]                 │              [data-test-subj="metricsAggGroup"]
[00:10:56]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:10:56]                 │              [data-test-subj="visAggEditorParams"]
[00:10:56]                 │              
[00:10:56]                 │              [data-test-subj="visDefaultEditorField"]
[00:10:56]                 │            ') with timeout=10000
[00:10:56]                 │ debg comboBox.setElement, value: phpmemory
[00:10:56]                 │ debg comboBox.isOptionSelected, value: phpmemory
[00:10:58]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:10:58]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="phpmemory"]') with timeout=2500
[00:10:58]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:10:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:01]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:01]                 │ debg -- isNewChartsLibraryEnabled = false
[00:11:01]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:01]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:01]                 │ debg Before Rendering count 3
[00:11:01]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:11:01]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:01]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:01]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [4]...
[00:11:01]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:01]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:01]                 │ debg -- currentRenderingCount=3
[00:11:01]                 │ debg -- expectedCount=4
[00:11:02]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:02]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:02]                 │ debg -- currentRenderingCount=4
[00:11:02]                 │ debg -- expectedCount=4
[00:11:02]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:11:02]                 └- ✓ pass  (12.6s) "visualize app visualize ciGroup10 metric chart should show Sum"
[00:11:02]               └-> should show Median
[00:11:02]                 └-> "before each" hook: global before each for "should show Median"
[00:11:02]                 │ debg Aggregation = Median
[00:11:02]                 │ debg Find.findByCssSelector('
[00:11:02]                 │              [data-test-subj="metricsAggGroup"]
[00:11:02]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:02]                 │              
[00:11:02]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:11:02]                 │            ') with timeout=10000
[00:11:02]                 │ debg comboBox.setElement, value: Median
[00:11:02]                 │ debg comboBox.isOptionSelected, value: Median
[00:11:04]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:04]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Median"]') with timeout=2500
[00:11:05]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:05]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:07]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:08]                 │ debg ... sleep(500) start
[00:11:08]                 │ debg ... sleep(500) end
[00:11:08]                 │ debg Field = bytes
[00:11:08]                 │ debg selectField bytes
[00:11:08]                 │ debg Find.findByCssSelector('
[00:11:08]                 │              [data-test-subj="metricsAggGroup"]
[00:11:08]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:08]                 │              [data-test-subj="visAggEditorParams"]
[00:11:08]                 │              
[00:11:08]                 │              [data-test-subj="visDefaultEditorField"]
[00:11:08]                 │            ') with timeout=10000
[00:11:08]                 │ debg comboBox.setElement, value: bytes
[00:11:08]                 │ debg comboBox.isOptionSelected, value: bytes
[00:11:10]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:10]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:11]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="bytes"]') with timeout=2500
[00:11:11]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:13]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:14]                 │ debg -- isNewChartsLibraryEnabled = false
[00:11:14]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:14]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:14]                 │ debg Before Rendering count 4
[00:11:14]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:11:14]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:14]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:14]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [5]...
[00:11:14]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:14]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:14]                 │ debg -- currentRenderingCount=4
[00:11:14]                 │ debg -- expectedCount=5
[00:11:15]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:15]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:15]                 │ debg -- currentRenderingCount=5
[00:11:15]                 │ debg -- expectedCount=5
[00:11:15]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:11:15]                 └- ✓ pass  (12.6s) "visualize app visualize ciGroup10 metric chart should show Median"
[00:11:15]               └-> should show Min
[00:11:15]                 └-> "before each" hook: global before each for "should show Min"
[00:11:15]                 │ debg Aggregation = Min
[00:11:15]                 │ debg Find.findByCssSelector('
[00:11:15]                 │              [data-test-subj="metricsAggGroup"]
[00:11:15]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:15]                 │              
[00:11:15]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:11:15]                 │            ') with timeout=10000
[00:11:15]                 │ debg comboBox.setElement, value: Min
[00:11:15]                 │ debg comboBox.isOptionSelected, value: Min
[00:11:17]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:17]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:17]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Min"]') with timeout=2500
[00:11:17]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:17]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:20]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:20]                 │ debg ... sleep(500) start
[00:11:21]                 │ debg ... sleep(500) end
[00:11:21]                 │ debg Field = @timestamp
[00:11:21]                 │ debg selectField @timestamp
[00:11:21]                 │ debg Find.findByCssSelector('
[00:11:21]                 │              [data-test-subj="metricsAggGroup"]
[00:11:21]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:21]                 │              [data-test-subj="visAggEditorParams"]
[00:11:21]                 │              
[00:11:21]                 │              [data-test-subj="visDefaultEditorField"]
[00:11:21]                 │            ') with timeout=10000
[00:11:21]                 │ debg comboBox.setElement, value: @timestamp
[00:11:21]                 │ debg comboBox.isOptionSelected, value: @timestamp
[00:11:23]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:23]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:23]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="@timestamp"]') with timeout=2500
[00:11:23]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:23]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:26]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:26]                 │ debg -- isNewChartsLibraryEnabled = false
[00:11:26]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:26]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:26]                 │ debg Before Rendering count 5
[00:11:26]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:11:26]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:26]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:27]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [6]...
[00:11:27]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:27]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:27]                 │ debg -- currentRenderingCount=5
[00:11:27]                 │ debg -- expectedCount=6
[00:11:27]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:27]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:27]                 │ debg -- currentRenderingCount=6
[00:11:27]                 │ debg -- expectedCount=6
[00:11:27]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:11:27]                 └- ✓ pass  (12.6s) "visualize app visualize ciGroup10 metric chart should show Min"
[00:11:27]               └-> should show Max
[00:11:27]                 └-> "before each" hook: global before each for "should show Max"
[00:11:27]                 │ debg Aggregation = Max
[00:11:27]                 │ debg Find.findByCssSelector('
[00:11:27]                 │              [data-test-subj="metricsAggGroup"]
[00:11:27]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:27]                 │              
[00:11:27]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:11:27]                 │            ') with timeout=10000
[00:11:27]                 │ debg comboBox.setElement, value: Max
[00:11:27]                 │ debg comboBox.isOptionSelected, value: Max
[00:11:30]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:30]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:30]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Max"]') with timeout=2500
[00:11:30]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:30]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:32]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:33]                 │ debg ... sleep(500) start
[00:11:33]                 │ debg ... sleep(500) end
[00:11:33]                 │ debg Field = relatedContent.article:modified_time
[00:11:33]                 │ debg selectField relatedContent.article:modified_time
[00:11:33]                 │ debg Find.findByCssSelector('
[00:11:33]                 │              [data-test-subj="metricsAggGroup"]
[00:11:33]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:33]                 │              [data-test-subj="visAggEditorParams"]
[00:11:33]                 │              
[00:11:33]                 │              [data-test-subj="visDefaultEditorField"]
[00:11:33]                 │            ') with timeout=10000
[00:11:33]                 │ debg comboBox.setElement, value: relatedContent.article:modified_time
[00:11:33]                 │ debg comboBox.isOptionSelected, value: relatedContent.article:modified_time
[00:11:36]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:36]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="relatedContent.article:modified_time"]') with timeout=2500
[00:11:36]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:38]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:39]                 │ debg -- isNewChartsLibraryEnabled = false
[00:11:39]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:39]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:39]                 │ debg Before Rendering count 6
[00:11:39]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:11:39]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:39]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:39]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [7]...
[00:11:39]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:39]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:39]                 │ debg -- currentRenderingCount=6
[00:11:39]                 │ debg -- expectedCount=7
[00:11:40]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:40]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:40]                 │ debg -- currentRenderingCount=7
[00:11:40]                 │ debg -- expectedCount=7
[00:11:40]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:11:40]                 └- ✓ pass  (12.7s) "visualize app visualize ciGroup10 metric chart should show Max"
[00:11:40]               └-> should show Unique Count
[00:11:40]                 └-> "before each" hook: global before each for "should show Unique Count"
[00:11:40]                 │ debg Aggregation = Unique Count
[00:11:40]                 │ debg Find.findByCssSelector('
[00:11:40]                 │              [data-test-subj="metricsAggGroup"]
[00:11:40]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:40]                 │              
[00:11:40]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:11:40]                 │            ') with timeout=10000
[00:11:40]                 │ debg comboBox.setElement, value: Unique Count
[00:11:40]                 │ debg comboBox.isOptionSelected, value: Unique Count
[00:11:42]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:42]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Unique Count"]') with timeout=2500
[00:11:43]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:45]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:46]                 │ debg ... sleep(500) start
[00:11:46]                 │ debg ... sleep(500) end
[00:11:46]                 │ debg Field = clientip
[00:11:46]                 │ debg selectField clientip
[00:11:46]                 │ debg Find.findByCssSelector('
[00:11:46]                 │              [data-test-subj="metricsAggGroup"]
[00:11:46]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:46]                 │              [data-test-subj="visAggEditorParams"]
[00:11:46]                 │              
[00:11:46]                 │              [data-test-subj="visDefaultEditorField"]
[00:11:46]                 │            ') with timeout=10000
[00:11:46]                 │ debg comboBox.setElement, value: clientip
[00:11:46]                 │ debg comboBox.isOptionSelected, value: clientip
[00:11:49]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:49]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="clientip"]') with timeout=2500
[00:11:49]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:51]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:52]                 │ debg -- isNewChartsLibraryEnabled = false
[00:11:52]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:52]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:52]                 │ debg Before Rendering count 7
[00:11:52]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:11:52]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:52]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:11:52]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [8]...
[00:11:52]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:52]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:52]                 │ debg -- currentRenderingCount=7
[00:11:52]                 │ debg -- expectedCount=8
[00:11:53]                 │ debg TestSubjects.find(visualizationLoader)
[00:11:53]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:11:53]                 │ debg -- currentRenderingCount=8
[00:11:53]                 │ debg -- expectedCount=8
[00:11:53]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:11:53]                 └- ✓ pass  (12.8s) "visualize app visualize ciGroup10 metric chart should show Unique Count"
[00:11:53]               └-> should show Percentiles
[00:11:53]                 └-> "before each" hook: global before each for "should show Percentiles"
[00:11:53]                 │ debg Aggregation = Percentiles
[00:11:53]                 │ debg Find.findByCssSelector('
[00:11:53]                 │              [data-test-subj="metricsAggGroup"]
[00:11:53]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:53]                 │              
[00:11:53]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:11:53]                 │            ') with timeout=10000
[00:11:53]                 │ debg comboBox.setElement, value: Percentiles
[00:11:53]                 │ debg comboBox.isOptionSelected, value: Percentiles
[00:11:55]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:55]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:55]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Percentiles"]') with timeout=2500
[00:11:55]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:55]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:58]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:59]                 │ debg ... sleep(500) start
[00:11:59]                 │ debg ... sleep(500) end
[00:11:59]                 │ debg Field =  machine.ram
[00:11:59]                 │ debg selectField machine.ram
[00:11:59]                 │ debg Find.findByCssSelector('
[00:11:59]                 │              [data-test-subj="metricsAggGroup"]
[00:11:59]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:11:59]                 │              [data-test-subj="visAggEditorParams"]
[00:11:59]                 │              
[00:11:59]                 │              [data-test-subj="visDefaultEditorField"]
[00:11:59]                 │            ') with timeout=10000
[00:11:59]                 │ debg comboBox.setElement, value: machine.ram
[00:11:59]                 │ debg comboBox.isOptionSelected, value: machine.ram
[00:12:01]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:12:01]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:12:01]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="machine.ram"]') with timeout=2500
[00:12:02]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:12:02]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:12:04]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:12:05]                 │ debg -- isNewChartsLibraryEnabled = false
[00:12:05]                 │ debg TestSubjects.find(visualizationLoader)
[00:12:05]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:12:05]                 │ debg Before Rendering count 8
[00:12:05]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:12:05]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:12:05]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:12:05]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [9]...
[00:12:05]                 │ debg TestSubjects.find(visualizationLoader)
[00:12:05]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:12:05]                 │ debg -- currentRenderingCount=8
[00:12:05]                 │ debg -- expectedCount=9
[00:12:06]                 │ debg TestSubjects.find(visualizationLoader)
[00:12:06]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:12:06]                 │ debg -- currentRenderingCount=9
[00:12:06]                 │ debg -- expectedCount=9
[00:12:06]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:06]                 │ debg --- retry.try error: expected [ '2,147,483,648',
[00:12:06]                 │        '1st percentile of machine.ram',
[00:12:06]                 │        '3,221,225,472',
[00:12:06]                 │        '5th percentile of machine.ram',
[00:12:06]                 │        '7,516,192,768',
[00:12:06]                 │        '25th percentile of machine.ram',
[00:12:06]                 │        '12,884,901,888',
[00:12:06]                 │        '50th percentile of machine.ram',
[00:12:06]                 │        '18,253,611,008',
[00:12:06]                 │        '75th percentile of machine.ram',
[00:12:06]                 │        '32,212,254,720',
[00:12:06]                 │        '95th percentile of machine.ram',
[00:12:06]                 │        '32,212,254,720',
[00:12:06]                 │        '99th percentile of machine.ram' ] to sort of equal [ '1,000', 'Unique count of clientip' ]
[00:12:06]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:06]                 │ debg --- retry.try failed again with the same message...
[00:12:07]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:07]                 │ debg --- retry.try failed again with the same message...
[00:12:07]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:07]                 │ debg --- retry.try failed again with the same message...
[00:12:08]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:08]                 │ debg --- retry.try failed again with the same message...
[00:12:08]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:08]                 │ debg --- retry.try failed again with the same message...
[00:12:09]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:09]                 │ debg --- retry.try failed again with the same message...
[00:12:09]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:09]                 │ debg --- retry.try failed again with the same message...
[00:12:10]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:10]                 │ debg --- retry.try failed again with the same message...
[00:12:10]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:10]                 │ debg --- retry.try failed again with the same message...
[00:12:11]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:11]                 │ debg --- retry.try failed again with the same message...
[00:12:11]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:11]                 │ debg --- retry.try failed again with the same message...
[00:12:12]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:12]                 │ debg --- retry.try failed again with the same message...
[00:12:13]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:13]                 │ debg --- retry.try failed again with the same message...
[00:12:13]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:13]                 │ debg --- retry.try failed again with the same message...
[00:12:14]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:14]                 │ debg --- retry.try failed again with the same message...
[00:12:14]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:14]                 │ debg --- retry.try failed again with the same message...
[00:12:15]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:15]                 │ debg --- retry.try failed again with the same message...
[00:12:15]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:15]                 │ debg --- retry.try failed again with the same message...
[00:12:16]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:16]                 │ debg --- retry.try failed again with the same message...
[00:12:16]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:16]                 │ debg --- retry.try failed again with the same message...
[00:12:17]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:17]                 │ debg --- retry.try failed again with the same message...
[00:12:17]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:17]                 │ debg --- retry.try failed again with the same message...
[00:12:18]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:18]                 │ debg --- retry.try failed again with the same message...
[00:12:18]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:18]                 │ debg --- retry.try failed again with the same message...
[00:12:19]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:19]                 │ debg --- retry.try failed again with the same message...
[00:12:19]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:19]                 │ debg --- retry.try failed again with the same message...
[00:12:20]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:20]                 │ debg --- retry.try failed again with the same message...
[00:12:20]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:20]                 │ debg --- retry.try failed again with the same message...
[00:12:21]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:21]                 │ debg --- retry.try failed again with the same message...
[00:12:22]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:22]                 │ debg --- retry.try failed again with the same message...
[00:12:22]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:22]                 │ debg --- retry.try failed again with the same message...
[00:12:23]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:23]                 │ debg --- retry.try failed again with the same message...
[00:12:23]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:23]                 │ debg --- retry.try failed again with the same message...
[00:12:24]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:24]                 │ debg --- retry.try failed again with the same message...
[00:12:24]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:24]                 │ debg --- retry.try failed again with the same message...
[00:12:25]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:25]                 │ debg --- retry.try failed again with the same message...
[00:12:25]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:25]                 │ debg --- retry.try failed again with the same message...
[00:12:26]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:26]                 │ debg --- retry.try failed again with the same message...
[00:12:26]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:26]                 │ debg --- retry.try failed again with the same message...
[00:12:27]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:27]                 │ debg --- retry.try failed again with the same message...
[00:12:27]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:27]                 │ debg --- retry.try failed again with the same message...
[00:12:28]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:28]                 │ debg --- retry.try failed again with the same message...
[00:12:28]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:28]                 │ debg --- retry.try failed again with the same message...
[00:12:29]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:29]                 │ debg --- retry.try failed again with the same message...
[00:12:29]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:29]                 │ debg --- retry.try failed again with the same message...
[00:12:30]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:30]                 │ debg --- retry.try failed again with the same message...
[00:12:31]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:31]                 │ debg --- retry.try failed again with the same message...
[00:12:31]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:31]                 │ debg --- retry.try failed again with the same message...
[00:12:32]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:32]                 │ debg --- retry.try failed again with the same message...
[00:12:32]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:32]                 │ debg --- retry.try failed again with the same message...
[00:12:33]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:33]                 │ debg --- retry.try failed again with the same message...
[00:12:33]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:33]                 │ debg --- retry.try failed again with the same message...
[00:12:34]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:34]                 │ debg --- retry.try failed again with the same message...
[00:12:34]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:34]                 │ debg --- retry.try failed again with the same message...
[00:12:35]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:35]                 │ debg --- retry.try failed again with the same message...
[00:12:35]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:35]                 │ debg --- retry.try failed again with the same message...
[00:12:36]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:36]                 │ debg --- retry.try failed again with the same message...
[00:12:36]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:36]                 │ debg --- retry.try failed again with the same message...
[00:12:37]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:37]                 │ debg --- retry.try failed again with the same message...
[00:12:37]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:37]                 │ debg --- retry.try failed again with the same message...
[00:12:38]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:38]                 │ debg --- retry.try failed again with the same message...
[00:12:38]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:38]                 │ debg --- retry.try failed again with the same message...
[00:12:39]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:39]                 │ debg --- retry.try failed again with the same message...
[00:12:39]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:40]                 │ debg --- retry.try failed again with the same message...
[00:12:40]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:40]                 │ debg --- retry.try failed again with the same message...
[00:12:41]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:41]                 │ debg --- retry.try failed again with the same message...
[00:12:41]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:41]                 │ debg --- retry.try failed again with the same message...
[00:12:42]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:42]                 │ debg --- retry.try failed again with the same message...
[00:12:42]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:42]                 │ debg --- retry.try failed again with the same message...
[00:12:43]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:43]                 │ debg --- retry.try failed again with the same message...
[00:12:43]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:43]                 │ debg --- retry.try failed again with the same message...
[00:12:44]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:44]                 │ debg --- retry.try failed again with the same message...
[00:12:44]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:44]                 │ debg --- retry.try failed again with the same message...
[00:12:45]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:45]                 │ debg --- retry.try failed again with the same message...
[00:12:45]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:45]                 │ debg --- retry.try failed again with the same message...
[00:12:46]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:46]                 │ debg --- retry.try failed again with the same message...
[00:12:46]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:46]                 │ debg --- retry.try failed again with the same message...
[00:12:47]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:47]                 │ debg --- retry.try failed again with the same message...
[00:12:47]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:47]                 │ debg --- retry.try failed again with the same message...
[00:12:48]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:48]                 │ debg --- retry.try failed again with the same message...
[00:12:49]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:49]                 │ debg --- retry.try failed again with the same message...
[00:12:49]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:49]                 │ debg --- retry.try failed again with the same message...
[00:12:50]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:50]                 │ debg --- retry.try failed again with the same message...
[00:12:50]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:50]                 │ debg --- retry.try failed again with the same message...
[00:12:51]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:51]                 │ debg --- retry.try failed again with the same message...
[00:12:51]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:51]                 │ debg --- retry.try failed again with the same message...
[00:12:52]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:52]                 │ debg --- retry.try failed again with the same message...
[00:12:52]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:52]                 │ debg --- retry.try failed again with the same message...
[00:12:53]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:53]                 │ debg --- retry.try failed again with the same message...
[00:12:53]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:53]                 │ debg --- retry.try failed again with the same message...
[00:12:54]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:54]                 │ debg --- retry.try failed again with the same message...
[00:12:54]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:54]                 │ debg --- retry.try failed again with the same message...
[00:12:55]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:55]                 │ debg --- retry.try failed again with the same message...
[00:12:55]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:55]                 │ debg --- retry.try failed again with the same message...
[00:12:56]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:56]                 │ debg --- retry.try failed again with the same message...
[00:12:56]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:56]                 │ debg --- retry.try failed again with the same message...
[00:12:57]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:57]                 │ debg --- retry.try failed again with the same message...
[00:12:58]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:58]                 │ debg --- retry.try failed again with the same message...
[00:12:58]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:58]                 │ debg --- retry.try failed again with the same message...
[00:12:59]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:59]                 │ debg --- retry.try failed again with the same message...
[00:12:59]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:12:59]                 │ debg --- retry.try failed again with the same message...
[00:13:00]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:00]                 │ debg --- retry.try failed again with the same message...
[00:13:00]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:00]                 │ debg --- retry.try failed again with the same message...
[00:13:01]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:01]                 │ debg --- retry.try failed again with the same message...
[00:13:01]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:01]                 │ debg --- retry.try failed again with the same message...
[00:13:02]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:02]                 │ debg --- retry.try failed again with the same message...
[00:13:02]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:02]                 │ debg --- retry.try failed again with the same message...
[00:13:03]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:03]                 │ debg --- retry.try failed again with the same message...
[00:13:03]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:03]                 │ debg --- retry.try failed again with the same message...
[00:13:04]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:04]                 │ debg --- retry.try failed again with the same message...
[00:13:04]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:04]                 │ debg --- retry.try failed again with the same message...
[00:13:05]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:05]                 │ debg --- retry.try failed again with the same message...
[00:13:05]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:05]                 │ debg --- retry.try failed again with the same message...
[00:13:06]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:06]                 │ debg --- retry.try failed again with the same message...
[00:13:07]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:07]                 │ debg --- retry.try failed again with the same message...
[00:13:07]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:07]                 │ debg --- retry.try failed again with the same message...
[00:13:08]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:08]                 │ debg --- retry.try failed again with the same message...
[00:13:08]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:08]                 │ debg --- retry.try failed again with the same message...
[00:13:09]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:09]                 │ debg --- retry.try failed again with the same message...
[00:13:09]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:09]                 │ debg --- retry.try failed again with the same message...
[00:13:10]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:10]                 │ debg --- retry.try failed again with the same message...
[00:13:10]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:10]                 │ debg --- retry.try failed again with the same message...
[00:13:11]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:11]                 │ debg --- retry.try failed again with the same message...
[00:13:11]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:11]                 │ debg --- retry.try failed again with the same message...
[00:13:12]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:12]                 │ debg --- retry.try failed again with the same message...
[00:13:12]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:12]                 │ debg --- retry.try failed again with the same message...
[00:13:13]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:13]                 │ debg --- retry.try failed again with the same message...
[00:13:13]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:13]                 │ debg --- retry.try failed again with the same message...
[00:13:14]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:14]                 │ debg --- retry.try failed again with the same message...
[00:13:14]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:14]                 │ debg --- retry.try failed again with the same message...
[00:13:15]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:15]                 │ debg --- retry.try failed again with the same message...
[00:13:16]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:16]                 │ debg --- retry.try failed again with the same message...
[00:13:16]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:16]                 │ debg --- retry.try failed again with the same message...
[00:13:17]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:17]                 │ debg --- retry.try failed again with the same message...
[00:13:17]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:17]                 │ debg --- retry.try failed again with the same message...
[00:13:18]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:18]                 │ debg --- retry.try failed again with the same message...
[00:13:18]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:18]                 │ debg --- retry.try failed again with the same message...
[00:13:19]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:19]                 │ debg --- retry.try failed again with the same message...
[00:13:19]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:19]                 │ debg --- retry.try failed again with the same message...
[00:13:20]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:20]                 │ debg --- retry.try failed again with the same message...
[00:13:20]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:20]                 │ debg --- retry.try failed again with the same message...
[00:13:21]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:21]                 │ debg --- retry.try failed again with the same message...
[00:13:21]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:21]                 │ debg --- retry.try failed again with the same message...
[00:13:22]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:22]                 │ debg --- retry.try failed again with the same message...
[00:13:22]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:22]                 │ debg --- retry.try failed again with the same message...
[00:13:23]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:23]                 │ debg --- retry.try failed again with the same message...
[00:13:23]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:23]                 │ debg --- retry.try failed again with the same message...
[00:13:24]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:24]                 │ debg --- retry.try failed again with the same message...
[00:13:25]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:25]                 │ debg --- retry.try failed again with the same message...
[00:13:25]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:25]                 │ debg --- retry.try failed again with the same message...
[00:13:26]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:26]                 │ debg --- retry.try failed again with the same message...
[00:13:26]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:26]                 │ debg --- retry.try failed again with the same message...
[00:13:27]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:27]                 │ debg --- retry.try failed again with the same message...
[00:13:27]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:27]                 │ debg --- retry.try failed again with the same message...
[00:13:28]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:28]                 │ debg --- retry.try failed again with the same message...
[00:13:28]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:28]                 │ debg --- retry.try failed again with the same message...
[00:13:29]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:29]                 │ debg --- retry.try failed again with the same message...
[00:13:29]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:29]                 │ debg --- retry.try failed again with the same message...
[00:13:30]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:30]                 │ debg --- retry.try failed again with the same message...
[00:13:30]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:30]                 │ debg --- retry.try failed again with the same message...
[00:13:31]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:31]                 │ debg --- retry.try failed again with the same message...
[00:13:31]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:31]                 │ debg --- retry.try failed again with the same message...
[00:13:32]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:32]                 │ debg --- retry.try failed again with the same message...
[00:13:32]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:33]                 │ debg --- retry.try failed again with the same message...
[00:13:33]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:33]                 │ debg --- retry.try failed again with the same message...
[00:13:34]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:34]                 │ debg --- retry.try failed again with the same message...
[00:13:34]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:34]                 │ debg --- retry.try failed again with the same message...
[00:13:35]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:35]                 │ debg --- retry.try failed again with the same message...
[00:13:35]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:35]                 │ debg --- retry.try failed again with the same message...
[00:13:36]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:36]                 │ debg --- retry.try failed again with the same message...
[00:13:36]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:36]                 │ debg --- retry.try failed again with the same message...
[00:13:37]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:37]                 │ debg --- retry.try failed again with the same message...
[00:13:37]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:37]                 │ debg --- retry.try failed again with the same message...
[00:13:38]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:38]                 │ debg --- retry.try failed again with the same message...
[00:13:38]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:38]                 │ debg --- retry.try failed again with the same message...
[00:13:39]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:39]                 │ debg --- retry.try failed again with the same message...
[00:13:39]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:39]                 │ debg --- retry.try failed again with the same message...
[00:13:40]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:40]                 │ debg --- retry.try failed again with the same message...
[00:13:40]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:40]                 │ debg --- retry.try failed again with the same message...
[00:13:41]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:41]                 │ debg --- retry.try failed again with the same message...
[00:13:41]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:41]                 │ debg --- retry.try failed again with the same message...
[00:13:42]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:42]                 │ debg --- retry.try failed again with the same message...
[00:13:43]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:43]                 │ debg --- retry.try failed again with the same message...
[00:13:43]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:43]                 │ debg --- retry.try failed again with the same message...
[00:13:44]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:44]                 │ debg --- retry.try failed again with the same message...
[00:13:44]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:44]                 │ debg --- retry.try failed again with the same message...
[00:13:45]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:45]                 │ debg --- retry.try failed again with the same message...
[00:13:45]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:45]                 │ debg --- retry.try failed again with the same message...
[00:13:46]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:46]                 │ debg --- retry.try failed again with the same message...
[00:13:46]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:46]                 │ debg --- retry.try failed again with the same message...
[00:13:47]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:47]                 │ debg --- retry.try failed again with the same message...
[00:13:47]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:47]                 │ debg --- retry.try failed again with the same message...
[00:13:48]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:48]                 │ debg --- retry.try failed again with the same message...
[00:13:48]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:48]                 │ debg --- retry.try failed again with the same message...
[00:13:49]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:49]                 │ debg --- retry.try failed again with the same message...
[00:13:49]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:49]                 │ debg --- retry.try failed again with the same message...
[00:13:50]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:50]                 │ debg --- retry.try failed again with the same message...
[00:13:50]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:50]                 │ debg --- retry.try failed again with the same message...
[00:13:51]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:51]                 │ debg --- retry.try failed again with the same message...
[00:13:51]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:52]                 │ debg --- retry.try failed again with the same message...
[00:13:52]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:52]                 │ debg --- retry.try failed again with the same message...
[00:13:53]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:53]                 │ debg --- retry.try failed again with the same message...
[00:13:53]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:53]                 │ debg --- retry.try failed again with the same message...
[00:13:54]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:54]                 │ debg --- retry.try failed again with the same message...
[00:13:54]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:54]                 │ debg --- retry.try failed again with the same message...
[00:13:55]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:55]                 │ debg --- retry.try failed again with the same message...
[00:13:55]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:55]                 │ debg --- retry.try failed again with the same message...
[00:13:56]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:56]                 │ debg --- retry.try failed again with the same message...
[00:13:56]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:56]                 │ debg --- retry.try failed again with the same message...
[00:13:57]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:57]                 │ debg --- retry.try failed again with the same message...
[00:13:57]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:57]                 │ debg --- retry.try failed again with the same message...
[00:13:58]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:58]                 │ debg --- retry.try failed again with the same message...
[00:13:58]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:58]                 │ debg --- retry.try failed again with the same message...
[00:13:59]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:59]                 │ debg --- retry.try failed again with the same message...
[00:13:59]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:13:59]                 │ debg --- retry.try failed again with the same message...
[00:14:00]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:00]                 │ debg --- retry.try failed again with the same message...
[00:14:00]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:00]                 │ debg --- retry.try failed again with the same message...
[00:14:01]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:01]                 │ debg --- retry.try failed again with the same message...
[00:14:02]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:02]                 │ debg --- retry.try failed again with the same message...
[00:14:02]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:02]                 │ debg --- retry.try failed again with the same message...
[00:14:03]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:03]                 │ debg --- retry.try failed again with the same message...
[00:14:03]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:03]                 │ debg --- retry.try failed again with the same message...
[00:14:04]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:04]                 │ debg --- retry.try failed again with the same message...
[00:14:04]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:04]                 │ debg --- retry.try failed again with the same message...
[00:14:05]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:05]                 │ debg --- retry.try failed again with the same message...
[00:14:05]                 │ debg Find.allByCssSelector('[data-test-subj="visualizationLoader"] .mtrVis__container') with timeout=10000
[00:14:05]                 │ debg --- retry.try failed again with the same message...
[00:14:06]                 │ info Taking screenshot "/dev/shm/workspace/parallel/14/kibana/test/functional/screenshots/failure/visualize app visualize ciGroup10 metric chart should show Percentiles.png"
[00:14:06]                 │ info Current URL is: http://localhost:61141/app/visualize#/create?type=metric&indexPattern=logstash-*&_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:%272015-09-19T06:31:44.000Z%27,to:%272015-09-23T18:31:44.000Z%27))&_a=(filters:!(),linked:!f,query:(language:kuery,query:%27%27),uiState:(),vis:(aggs:!((enabled:!t,id:%271%27,params:(field:machine.ram,percents:!(1,5,25,50,75,95,99)),schema:metric,type:percentiles)),params:(addLegend:!f,addTooltip:!t,metric:(colorSchema:%27Green%20to%20Red%27,colorsRange:!((from:0,to:10000)),invertColors:!f,labels:(show:!t),metricColorMode:None,percentageMode:!f,style:(bgColor:!f,bgFill:%23000,fontSize:60,labelColor:!f,subText:%27%27),useRanges:!f),type:metric),title:%27%27,type:metric))
[00:14:06]                 │ info Saving page source to: /dev/shm/workspace/parallel/14/kibana/test/functional/failure_debug/html/visualize app visualize ciGroup10 metric chart should show Percentiles.html
[00:14:06]                 └- ✖ fail: visualize app visualize ciGroup10 metric chart should show Percentiles
[00:14:06]                 │      retry.try timeout: Error: expected [ '2,147,483,648',
[00:14:06]                 │   '1st percentile of machine.ram',
[00:14:06]                 │   '3,221,225,472',
[00:14:06]                 │   '5th percentile of machine.ram',
[00:14:06]                 │   '7,516,192,768',
[00:14:06]                 │   '25th percentile of machine.ram',
[00:14:06]                 │   '12,884,901,888',
[00:14:06]                 │   '50th percentile of machine.ram',
[00:14:06]                 │   '18,253,611,008',
[00:14:06]                 │   '75th percentile of machine.ram',
[00:14:06]                 │   '32,212,254,720',
[00:14:06]                 │   '95th percentile of machine.ram',
[00:14:06]                 │   '32,212,254,720',
[00:14:06]                 │   '99th percentile of machine.ram' ] to sort of equal [ '1,000', 'Unique count of clientip' ]
[00:14:06]                 │     at Assertion.assert (/dev/shm/workspace/parallel/14/kibana/node_modules/@kbn/expect/expect.js:100:11)
[00:14:06]                 │     at Assertion.eql (/dev/shm/workspace/parallel/14/kibana/node_modules/@kbn/expect/expect.js:244:8)
[00:14:06]                 │     at tryingForTime (/dev/shm/workspace/parallel/14/kibana/test/functional/apps/visualize/_metric_chart.ts:154:41)
[00:14:06]                 │     at runMicrotasks (<anonymous>)
[00:14:06]                 │     at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:14:06]                 │     at runAttempt (/dev/shm/workspace/parallel/14/kibana/test/common/services/retry/retry_for_success.ts:27:15)
[00:14:06]                 │     at retryForSuccess (/dev/shm/workspace/parallel/14/kibana/test/common/services/retry/retry_for_success.ts:66:21)
[00:14:06]                 │     at RetryService.try (/dev/shm/workspace/parallel/14/kibana/test/common/services/retry/retry.ts:31:12)
[00:14:06]                 │     at Context.<anonymous> (/dev/shm/workspace/parallel/14/kibana/test/functional/apps/visualize/_metric_chart.ts:152:7)
[00:14:06]                 │     at Object.apply (/dev/shm/workspace/parallel/14/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:14:06]                 │   Error: retry.try timeout: Error: expected [ '2,147,483,648',
[00:14:06]                 │     '1st percentile of machine.ram',
[00:14:06]                 │     '3,221,225,472',
[00:14:06]                 │     '5th percentile of machine.ram',
[00:14:06]                 │     '7,516,192,768',
[00:14:06]                 │     '25th percentile of machine.ram',
[00:14:06]                 │     '12,884,901,888',
[00:14:06]                 │     '50th percentile of machine.ram',
[00:14:06]                 │     '18,253,611,008',
[00:14:06]                 │     '75th percentile of machine.ram',
[00:14:06]                 │     '32,212,254,720',
[00:14:06]                 │     '95th percentile of machine.ram',
[00:14:06]                 │     '32,212,254,720',
[00:14:06]                 │     '99th percentile of machine.ram' ] to sort of equal [ '1,000', 'Unique count of clientip' ]
[00:14:06]                 │       at Assertion.assert (node_modules/@kbn/expect/expect.js:100:11)
[00:14:06]                 │       at Assertion.eql (node_modules/@kbn/expect/expect.js:244:8)
[00:14:06]                 │       at tryingForTime (test/functional/apps/visualize/_metric_chart.ts:154:41)
[00:14:06]                 │       at runMicrotasks (<anonymous>)
[00:14:06]                 │       at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:14:06]                 │       at runAttempt (test/common/services/retry/retry_for_success.ts:27:15)
[00:14:06]                 │       at retryForSuccess (test/common/services/retry/retry_for_success.ts:66:21)
[00:14:06]                 │       at RetryService.try (test/common/services/retry/retry.ts:31:12)
[00:14:06]                 │       at Context.<anonymous> (test/functional/apps/visualize/_metric_chart.ts:152:7)
[00:14:06]                 │       at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:14:06]                 │       at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
[00:14:06]                 │       at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
[00:14:06]                 │       at RetryService.try (test/common/services/retry/retry.ts:31:12)
[00:14:06]                 │       at Context.<anonymous> (test/functional/apps/visualize/_metric_chart.ts:152:7)
[00:14:06]                 │       at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:14:06]                 │ 
[00:14:06]                 │ 

Stack Trace

Error: retry.try timeout: Error: expected [ '2,147,483,648',
  '1st percentile of machine.ram',
  '3,221,225,472',
  '5th percentile of machine.ram',
  '7,516,192,768',
  '25th percentile of machine.ram',
  '12,884,901,888',
  '50th percentile of machine.ram',
  '18,253,611,008',
  '75th percentile of machine.ram',
  '32,212,254,720',
  '95th percentile of machine.ram',
  '32,212,254,720',
  '99th percentile of machine.ram' ] to sort of equal [ '1,000', 'Unique count of clientip' ]
    at Assertion.assert (node_modules/@kbn/expect/expect.js:100:11)
    at Assertion.eql (node_modules/@kbn/expect/expect.js:244:8)
    at tryingForTime (test/functional/apps/visualize/_metric_chart.ts:154:41)
    at runMicrotasks (<anonymous>)
    at processTicksAndRejections (internal/process/task_queues.js:95:5)
    at runAttempt (test/common/services/retry/retry_for_success.ts:27:15)
    at retryForSuccess (test/common/services/retry/retry_for_success.ts:66:21)
    at RetryService.try (test/common/services/retry/retry.ts:31:12)
    at Context.<anonymous> (test/functional/apps/visualize/_metric_chart.ts:152:7)
    at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
    at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
    at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
    at RetryService.try (test/common/services/retry/retry.ts:31:12)
    at Context.<anonymous> (test/functional/apps/visualize/_metric_chart.ts:152:7)
    at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)

Metrics [docs]

✅ unchanged

History

To update your PR or re-run it, just comment with:
@elasticmachine merge upstream

@chrisronline chrisronline merged commit 887a149 into elastic:master Jul 19, 2021
@chrisronline chrisronline deleted the alerting/index_threshold_fix branch July 19, 2021 16:54
jloleysens added a commit to jloleysens/kibana that referenced this pull request Jul 20, 2021
…y-show-migrate-to-authzd-users

* 'master' of github.com:elastic/kibana: (187 commits)
  Space management page UX improvements (elastic#100448)
  [Reporting] Unskip flaky test when downloading CSV with "no data" (elastic#105252)
  Update dependency @elastic/charts to v33 (master) (elastic#105633)
  [Observability RAC] Improve alerts table columns (elastic#105446)
  Introduce `preboot` lifecycle stage (elastic#103636)
  [Security Solution] Invalid kql query timeline refresh bug (elastic#105525)
  skip flaky suite (elastic#106121)
  [Security Solution][Endpoint] Fix UI inconsistency between isolation forms and remove display of Pending isolation statuses (elastic#106118)
  docs: APM RUM Source map API (elastic#105332)
  [CTI] Adds indicator match rule improvements (elastic#97310)
  [Security Solution] update text for Isolation action submissions (elastic#105956)
  EP Meta Telemetry Perf (elastic#104396)
  [Metrics UI] Drop partial buckets from ALL Metrics UI queries (elastic#104784)
  Remove beta admonitions for Fleet docs (elastic#106010)
  [Observability RAC] Remove indexing of rule evaluation documents (elastic#104970)
  Parameterize migration test for kibana version (elastic#105417)
  [Alerting] Allow rule to execute if the value is 0 and that mets the condition (elastic#105626)
  [ML] Fix Index data visualizer sometimes shows wrong doc count for saved searches (elastic#106007)
  [Security Solution] UX fixes for Policy page and Case Host Isolation comment (elastic#106027)
  [Security Solution]Memory protection configuration card for policies integration. (elastic#101365)
  ...

# Conflicts:
#	x-pack/plugins/reporting/public/management/report_listing.test.tsx
#	x-pack/plugins/reporting/public/management/report_listing.tsx
@kibanamachine kibanamachine added the backport missing Added to PRs automatically when the are determined to be missing a backport. label Jul 21, 2021
@kibanamachine
Copy link
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create backports run node scripts/backport --pr 105626 or prevent reminders by adding the backport:skip label.

chrisronline added a commit to chrisronline/kibana that referenced this pull request Jul 21, 2021
…condition (elastic#105626)

* Allow rule to execute if the value is 0 and that mets the condition

* PR feedback

* Fix type issue

* PR feedback

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
@kibanamachine kibanamachine removed the backport missing Added to PRs automatically when the are determined to be missing a backport. label Jul 21, 2021
chrisronline added a commit that referenced this pull request Jul 21, 2021
…condition (#105626) (#106441)

* Allow rule to execute if the value is 0 and that mets the condition

* PR feedback

* Fix type issue

* PR feedback

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
@ymao1
Copy link
Contributor

ymao1 commented Jul 28, 2021

@chrisronline Can we also backport this bug fix to 7.14?

@chrisronline
Copy link
Contributor Author

@ymao1 Sure!

chrisronline added a commit to chrisronline/kibana that referenced this pull request Jul 28, 2021
…condition (elastic#105626)

* Allow rule to execute if the value is 0 and that mets the condition

* PR feedback

* Fix type issue

* PR feedback

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
chrisronline added a commit that referenced this pull request Jul 28, 2021
…condition (#105626) (#107052)

* Allow rule to execute if the value is 0 and that mets the condition

* PR feedback

* Fix type issue

* PR feedback

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:Alerting/RuleTypes Issues related to specific Alerting Rules Types Feature:Alerting release_note:fix review Team:ResponseOps Label for the ResponseOps team (formerly the Cases and Alerting teams) v7.14.1 v7.15.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

index threshold rule does not work as expected with a threshold below a value
5 participants