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

[ML] Adding reset anomaly detection jobs link to jobs list #108039

Merged

Conversation

jgowdyelastic
Copy link
Member

@jgowdyelastic jgowdyelastic commented Aug 10, 2021

Adds reset job links to the individual action menus per jobs
image

and the multi-select action menu.
image

The reset link will no be present in the individual action menu if the selected job is not closed.
If multiple jobs are selected, and one or more are not closed, a warning is shown in the confirmation modal.
image

Also renames the deleting_jobs_tasks endpoint to blocking_jobs_tasks and updates its checks so that it checks for and returns all blocking jobs tasks.

Closes #102661
Closes #105789
Relates to elastic/elasticsearch#73908

Checklist

Delete any items that are not applicable to this PR.

@jgowdyelastic
Copy link
Member Author

@elasticmachine merge upstream

@jgowdyelastic jgowdyelastic self-assigned this Aug 11, 2021
@jgowdyelastic jgowdyelastic added :ml auto-backport Deprecated: Automatically backport this PR after it's merged Feature:Anomaly Detection ML anomaly detection release_note:feature Makes this part of the condensed release notes review v7.15.0 v8.0.0 labels Aug 11, 2021
@jgowdyelastic jgowdyelastic marked this pull request as ready for review August 11, 2021 13:58
@jgowdyelastic jgowdyelastic requested a review from a team as a code owner August 11, 2021 13:58
@elasticmachine
Copy link
Contributor

Pinging @elastic/ml-ui (:ml)

@jgowdyelastic jgowdyelastic changed the title [ML] Adding reset jobs link to jobs list [ML] Adding reset anomaly detection jobs link to jobs list Aug 11, 2021
Comment on lines +69 to +71
setTimeout(() => {
refreshJobs();
}, RESETTING_JOBS_REFRESH_INTERVAL_MS);
Copy link
Contributor

Choose a reason for hiding this comment

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

this part looks alarming, I reckon we should not rely on the hardcoded timeout. in the cloud instances, requests tend to take longer

Copy link
Member Author

Choose a reason for hiding this comment

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

This is also how the delete modal works, it delays for a couple of seconds just in case the job states haven't caught up. The jobs list then starts a poll to track the real state of reverting and deleting processes.

However.... one key difference between this modal and the delete job modal is that there is an await on revert request, meaning that this 2s delay isn't needed. The revert has already been assigned a task ID by this point.
I'll remove this timeout.

Copy link
Member Author

Choose a reason for hiding this comment

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

Updated in 06f04dc

Copy link
Member Author

Choose a reason for hiding this comment

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

Adding this delay back in with 115ad46
We need to give elasticsearch a second for the blocked property to appear in the job.

Copy link
Contributor

Choose a reason for hiding this comment

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

What happens in case of a severe network throttling? Maybe we can define and observable for jobs, and on each update look up for the blocked property?

Copy link
Member Author

Choose a reason for hiding this comment

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

if the network is very slow, i can't see it making a difference. the call to reset is on an await, so this timeout won't start until the call to reset has returned.
Waiting a second to then refresh the jobs list is just there to give the task manager a bit of a breather before we ask if any tasks are running.

Maybe we can define and observable for jobs, and on each update look up for the blocked property?

This is what is coming in the next PR. It's what we already do for "deleting" jobs, but that needs updating to use the new blocked property instead.

x-pack/plugins/ml/server/routes/anomaly_detectors.ts Outdated Show resolved Hide resolved
@jgowdyelastic jgowdyelastic requested a review from a team as a code owner August 11, 2021 15:22
@@ -76,6 +77,10 @@ export function isClosable(jobs) {
);
}

export function isResetable(jobs) {
return jobs.some((j) => j.jobState === JOB_STATE.CLOSED);
Copy link
Contributor

Choose a reason for hiding this comment

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

Should the reset action be shown for jobs that have never run (or ones which have already been reset)?

Copy link
Member Author

Choose a reason for hiding this comment

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

I don't think there is any harm in showing the reset action for jobs which haven't been run or have already been reset.
How would we determine that? closed and no processed records?

This is a similar question to whether we should allow a job to be reset again while a ongoing reset task is running.
For deleting we allow the user to click delete again if the job is "deleting", i think in case the delete task is hanging.
@dimitris-athanasiou what do you think?
Also, should we allow a job to be deleted if an ongoing reset or revert task is running? or should we only allow the user to re-click the current task type?

Copy link
Contributor

Choose a reason for hiding this comment

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

With regard to resetting a job that has never run or that has just been reset: there is no harm indeed. I would argue to keep the logic simple and let the reset action be shown in those cases. If the user hits the reset button again, it will almost be a no-op.

Also, should we allow a job to be deleted if an ongoing reset or revert task is running? or should we only allow the user to re-click the current task type?

A job can be deleted while a reset or revert task is running.

But if a reset or revert task is running, the job should not be allowed to be opened nor the other blocking action should be allowed (revert when reset is running and vice versa). If the user calls, for example, revert while reset is happening, they will get an error message letting them know the job is blocked while resetting. The UI would ideally disable the relevant action with an informative tooltip.

Copy link
Member Author

Choose a reason for hiding this comment

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

But if a reset or revert task is running, the job should not be allowed to be opened nor the other blocking action should be allowed

Yes, we disable all other options, other than delete. but isn't delete a blocking action?

Is there any benefit in allowing the user to reselect reset if a reset task is already running? Like we do with delete.

So just to be clear.. when a delete, revert or reset action is running, the only action that should be available is delete?

Copy link
Contributor

Choose a reason for hiding this comment

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

User should be allowed to reselect the current blocking action. The reason is for recovering from a failure. Say the user clicked reset. Then the reset task failed because of some reason. The job is still blocked on reset. The way to unblock it, is to click reset again and hopefully this time it will complete successfully and unset the job's blocked field.

Copy link
Member Author

Choose a reason for hiding this comment

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

Updated in d8a0969

Menu now allows a resetting job to be reset or deleted.

image

@@ -37,7 +47,7 @@ export function actionsMenuContent(
defaultMessage: 'Start datafeed',
}),
icon: 'play',
enabled: (item) => item.deleting !== true && canStartStopDatafeed,
enabled: (item) => isJobBlocked(item) === false && canStartStopDatafeed,
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't see these action items disabled after hitting reset. Is this to be expected, without the planned follow-up for polling?

reset_actions

Copy link
Member Author

Choose a reason for hiding this comment

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

797c274 fixes this issue.
It's still tricky to reproduce as you need to catch the job while the reset task is running.
I think i might need to reinstate the slight delay to refresh the jobs after applying the reset, just to increase the chance that the first refresh will catch the the job why the task is running, and not before, which is happening now.
The follow up work will add a poll for the tasks so the jobs list will update once the task is complete.

image

Note, delete is still available. I've raised this as a question in a previous comment.

@jgowdyelastic
Copy link
Member Author

@elasticmachine merge upstream

@peteharverson
Copy link
Contributor

peteharverson commented Aug 13, 2021

Not to do with the changes here, but could we hide / disable the cog icon for the multi-select actions menu if there are no actions available? For example here, where I've logged in as ml_viewer where clicking on the cog icon does nothing.

image


@peteharverson yes i noticed that too when doing this work. i'm not sure why the button doesn't appear disabled when it is.
It might be an eui issue, i'll investigate.

Copy link
Contributor

@peteharverson peteharverson left a comment

Choose a reason for hiding this comment

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

Tested latest edits and LGTM

@jgowdyelastic
Copy link
Member Author

@elasticmachine merge upstream

Copy link
Contributor

@darnautov darnautov left a comment

Choose a reason for hiding this comment

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

LGTM

@@ -41,7 +42,7 @@ import { RefreshJobsListButton } from '../refresh_jobs_list_button';
import { DELETING_JOBS_REFRESH_INTERVAL_MS } from '../../../../../../common/constants/jobs_list';
import { JobListMlAnomalyAlertFlyout } from '../../../../../alerting/ml_alerting_flyout';

let deletingJobsRefreshTimeout = null;
let blockingJobsRefreshTimeout = null;
Copy link
Contributor

Choose a reason for hiding this comment

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

should it be a part of JobsListView? not sure if it belongs to the outer scope.

Copy link
Member

@spong spong left a comment

Choose a reason for hiding this comment

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

Security Solution changes LGTM! Thanks! 🙂 👍

I'm just now reading up on the new reset functionality, but do you think this is something we'll want to expose via the Security UI's as well? Seems like it could be useful (especially for custom jobs) -- what do you think @randomuserid?

I've added this to the list of changes to consider as part of the Security Job Mgmt UI re-design here: #102837

@jgowdyelastic
Copy link
Member Author

@elasticmachine merge upstream

@jgowdyelastic
Copy link
Member Author

@elasticmachine merge upstream

@jgowdyelastic
Copy link
Member 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/management/_runtime_fields·js.management runtime fields create runtime field should create runtime field

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: management
[00:00:00]           └-> "before all" hook in "management"
[00:00:00]           └-> "before all" hook in "management"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Unloading indices from "mappings.json"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Unloading indices from "data.json.gz"
[00:00:01]             │ info [test/functional/fixtures/es_archiver/makelogs] Loading "mappings.json"
[00:00:01]             │ info [test/functional/fixtures/es_archiver/makelogs] Loading "data.json.gz"
[00:00:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.17] creating index, cause [api], templates [], shards [1]/[0]
[00:00:01]             │ info [o.e.c.r.a.AllocationService] [node-01] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[logstash-2015.09.17][0]]])." previous.health="YELLOW" reason="shards started [[logstash-2015.09.17][0]]"
[00:00:01]             │ info [test/functional/fixtures/es_archiver/makelogs] Created index "logstash-2015.09.17"
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/makelogs] "logstash-2015.09.17" 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:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.18] creating index, cause [api], templates [], shards [1]/[0]
[00:00:01]             │ info [o.e.c.r.a.AllocationService] [node-01] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[logstash-2015.09.18][0]]])." previous.health="YELLOW" reason="shards started [[logstash-2015.09.18][0]]"
[00:00:01]             │ info [test/functional/fixtures/es_archiver/makelogs] Created index "logstash-2015.09.18"
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/makelogs] "logstash-2015.09.18" 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:01]             │ info [test/functional/fixtures/es_archiver/makelogs] Indexed 101 docs into "logstash-2015.09.17"
[00:00:01]             │ info [test/functional/fixtures/es_archiver/makelogs] Indexed 301 docs into "logstash-2015.09.18"
[00:00:01]           └-: 
[00:00:01]             └-> "before all" hook in ""
[00:09:24]             └-: runtime fields
[00:09:24]               └-> "before all" hook in "runtime fields"
[00:09:24]               └-> "before all" hook in "runtime fields"
[00:09:25]                 │ info [test/functional/fixtures/es_archiver/discover] Loading "mappings.json"
[00:09:25]                 │ info [test/functional/fixtures/es_archiver/discover] Loading "data.json"
[00:09:25]                 │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_task_manager_8.0.0_001/K8b53OsAQL-JmEA2_YioUw] deleting index
[00:09:25]                 │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_001/UaqtNzqOT9ydms5asiVGag] deleting index
[00:09:25]                 │ info [test/functional/fixtures/es_archiver/discover] Deleted existing index ".kibana_8.0.0_001"
[00:09:25]                 │ info [test/functional/fixtures/es_archiver/discover] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:09:25]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_001] creating index, cause [api], templates [], shards [1]/[0]
[00:09:25]                 │ info [o.e.c.r.a.AllocationService] [node-01] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_8.0.0_001][0]]])." previous.health="YELLOW" reason="shards started [[.kibana_8.0.0_001][0]]"
[00:09:25]                 │ info [test/functional/fixtures/es_archiver/discover] Created index ".kibana_8.0.0_001"
[00:09:25]                 │ debg [test/functional/fixtures/es_archiver/discover] ".kibana_8.0.0_001" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1","priority":"10","refresh_interval":"1s","routing_partition_size":"1"}}
[00:09:25]                 │ info [test/functional/fixtures/es_archiver/discover] Indexed 2 docs into ".kibana"
[00:09:25]                 │ debg Migrating saved objects
[00:09:25]                 │ proc [kibana]   log   [17:11:07.768] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET. took: 3ms.
[00:09:25]                 │ proc [kibana]   log   [17:11:07.773] [info][savedobjects-service] [.kibana] INIT -> OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT. took: 10ms.
[00:09:25]                 │ proc [kibana]   log   [17:11:07.775] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT -> OUTDATED_DOCUMENTS_SEARCH_READ. took: 2ms.
[00:09:25]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:09:25]                 │ 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:09:25]                 │ proc [kibana]   log   [17:11:07.781] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_READ -> OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT. took: 6ms.
[00:09:25]                 │ proc [kibana]   log   [17:11:07.784] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT -> UPDATE_TARGET_MAPPINGS. took: 3ms.
[00:09:25]                 │ info [o.e.c.r.a.AllocationService] [node-01] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_task_manager_8.0.0_001][0]]])." previous.health="YELLOW" reason="shards started [[.kibana_task_manager_8.0.0_001][0]]"
[00:09:25]                 │ proc [kibana]   log   [17:11:07.824] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY. took: 56ms.
[00:09:25]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/UaZNVVmEQyqe4WKtKi5JxQ] update_mapping [_doc]
[00:09:25]                 │ proc [kibana]   log   [17:11:07.883] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK. took: 99ms.
[00:09:25]                 │ info [o.e.t.LoggingTaskListener] [node-01] 9282 finished with response BulkByScrollResponse[took=18.4ms,timed_out=false,sliceId=null,updated=2,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:09:25]                 │ proc [kibana]   log   [17:11:07.903] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE. took: 79ms.
[00:09:25]                 │ proc [kibana]   log   [17:11:07.904] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 139ms
[00:09:25]                 │ proc [kibana]   log   [17:11:07.988] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> DONE. took: 105ms.
[00:09:25]                 │ proc [kibana]   log   [17:11:07.989] [info][savedobjects-service] [.kibana] Migration completed after 226ms
[00:09:25]                 │ debg [test/functional/fixtures/es_archiver/discover] Migrated Kibana index after loading Kibana data
[00:09:26]                 │ debg [test/functional/fixtures/es_archiver/discover] Ensured that default space exists in .kibana
[00:09:26]                 │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyChartsLibrary":true,"visualization:visualize:legacyPieChartsLibrary":true}
[00:09:26]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/UaZNVVmEQyqe4WKtKi5JxQ] update_mapping [_doc]
[00:09:28]                 │ debg replacing kibana config doc: {}
[00:09:29]                 │ debg applying update to kibana config: {}
[00:09:30]               └-: create runtime field
[00:09:30]                 └-> "before all" hook for "should create runtime field"
[00:09:30]                 └-> should create runtime field
[00:09:30]                   └-> "before each" hook: global before each for "should create runtime field"
[00:09:30]                   │ debg navigating to settings url: http://localhost:61111/app/management
[00:09:30]                   │ debg navigate to: http://localhost:61111/app/management
[00:09:30]                   │ debg browser[INFO] http://localhost:61111/app/management?_t=1629220272731 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:09:30]                   │
[00:09:30]                   │ debg browser[INFO] http://localhost:61111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:09:30]                   │ debg ... sleep(700) start
[00:09:31]                   │ debg ... sleep(700) end
[00:09:31]                   │ debg returned from get, calling refresh
[00:09:31]                   │ debg browser[INFO] http://localhost:61111/app/management?_t=1629220272731 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:09:31]                   │
[00:09:31]                   │ debg browser[INFO] http://localhost:61111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:09:32]                   │ debg currentUrl = http://localhost:61111/app/management
[00:09:32]                   │          appUrl = http://localhost:61111/app/management
[00:09:32]                   │ debg TestSubjects.find(kibanaChrome)
[00:09:32]                   │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:09:32]                   │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/UaZNVVmEQyqe4WKtKi5JxQ] update_mapping [_doc]
[00:09:32]                   │ debg ... sleep(501) start
[00:09:32]                   │ debg ... sleep(501) end
[00:09:32]                   │ debg in navigateTo url = http://localhost:61111/app/management
[00:09:32]                   │ debg clickKibanaIndexPatterns link
[00:09:32]                   │ debg TestSubjects.click(indexPatterns)
[00:09:32]                   │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:09:32]                   │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:09:32]                   │ debg isGlobalLoadingIndicatorVisible
[00:09:32]                   │ debg TestSubjects.exists(globalLoadingIndicator)
[00:09:32]                   │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:09:34]                   │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:09:34]                   │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:09:34]                   │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:09:34]                   │ debg Find.byXPath('//a[descendant::*[text()='logstash-*']]') with timeout=10000
[00:09:35]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:35]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:35]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:35]                   │ debg add runtime field
[00:09:35]                   │ debg click Add Field
[00:09:35]                   │ debg TestSubjects.click(addField)
[00:09:35]                   │ debg Find.clickByCssSelector('[data-test-subj="addField"]') with timeout=10000
[00:09:35]                   │ debg Find.findByCssSelector('[data-test-subj="addField"]') with timeout=10000
[00:09:35]                   │ debg set field name = atest
[00:09:35]                   │ debg TestSubjects.setValue(nameField, atest)
[00:09:35]                   │ debg TestSubjects.click(nameField)
[00:09:35]                   │ debg Find.clickByCssSelector('[data-test-subj="nameField"]') with timeout=10000
[00:09:35]                   │ debg Find.findByCssSelector('[data-test-subj="nameField"]') with timeout=10000
[00:09:36]                   │ debg set type = Keyword
[00:09:36]                   │ debg TestSubjects.setValue(typeField, Keyword)
[00:09:36]                   │ debg TestSubjects.click(typeField)
[00:09:36]                   │ debg Find.clickByCssSelector('[data-test-subj="typeField"]') with timeout=10000
[00:09:36]                   │ debg Find.findByCssSelector('[data-test-subj="typeField"]') with timeout=10000
[00:09:36]                   │ debg set script = emit('hello world')
[00:09:36]                   │ debg toggling tow = valueRow
[00:09:36]                   │ debg TestSubjects.find(valueRow)
[00:09:36]                   │ debg Find.findByCssSelector('[data-test-subj="valueRow"]') with timeout=10000
[00:09:36]                   │ debg Waiting up to 20000ms for monaco editor is ready...
[00:09:36]                   │ debg check that field preview is rendered
[00:09:36]                   │ debg TestSubjects.exists(fieldPreviewItem)
[00:09:36]                   │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="fieldPreviewItem"]') with timeout=1500
[00:09:37]                   │ debg click Save
[00:09:37]                   │ debg TestSubjects.click(fieldSaveButton)
[00:09:37]                   │ debg Find.clickByCssSelector('[data-test-subj="fieldSaveButton"]') with timeout=10000
[00:09:37]                   │ debg Find.findByCssSelector('[data-test-subj="fieldSaveButton"]') with timeout=10000
[00:09:37]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:37]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:37]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:37]                   │ debg --- retry.try error: expected 86 to equal 87
[00:09:38]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:38]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:38]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:38]                   │ debg --- retry.try failed again with the same message...
[00:09:38]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:38]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:38]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:38]                   │ debg --- retry.try failed again with the same message...
[00:09:39]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:39]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:39]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:39]                   │ debg --- retry.try failed again with the same message...
[00:09:39]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:39]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:39]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:39]                   │ debg --- retry.try failed again with the same message...
[00:09:40]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:40]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:40]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:40]                   │ debg --- retry.try failed again with the same message...
[00:09:40]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:40]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:40]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:40]                   │ debg --- retry.try failed again with the same message...
[00:09:41]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:41]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:41]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:41]                   │ debg --- retry.try failed again with the same message...
[00:09:41]                   │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/UaZNVVmEQyqe4WKtKi5JxQ] update_mapping [_doc]
[00:09:41]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:41]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:41]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:41]                   │ debg --- retry.try failed again with the same message...
[00:09:42]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:42]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:42]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:42]                   │ debg --- retry.try failed again with the same message...
[00:09:42]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:42]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:42]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:42]                   │ debg --- retry.try failed again with the same message...
[00:09:43]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:43]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:43]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:43]                   │ debg --- retry.try failed again with the same message...
[00:09:43]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:43]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:43]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:43]                   │ debg --- retry.try failed again with the same message...
[00:09:44]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:44]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:44]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:44]                   │ debg --- retry.try failed again with the same message...
[00:09:44]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:44]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:44]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:44]                   │ debg --- retry.try failed again with the same message...
[00:09:45]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:45]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:45]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:45]                   │ debg --- retry.try failed again with the same message...
[00:09:45]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:45]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:45]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:45]                   │ debg --- retry.try failed again with the same message...
[00:09:46]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:46]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:46]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:46]                   │ debg --- retry.try failed again with the same message...
[00:09:46]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:46]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:46]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:46]                   │ debg --- retry.try failed again with the same message...
[00:09:47]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:47]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:47]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:47]                   │ debg --- retry.try failed again with the same message...
[00:09:48]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:48]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:48]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:48]                   │ debg --- retry.try failed again with the same message...
[00:09:48]                   │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_task_manager_8.0.0_001/FRh94Vv-S1OsogYm7FTyFQ] update_mapping [_doc]
[00:09:48]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:48]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:48]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:48]                   │ debg --- retry.try failed again with the same message...
[00:09:49]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:49]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:49]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:49]                   │ debg --- retry.try failed again with the same message...
[00:09:49]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:49]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:49]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:49]                   │ debg --- retry.try failed again with the same message...
[00:09:50]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:50]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:50]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:50]                   │ debg --- retry.try failed again with the same message...
[00:09:50]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:50]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:50]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:50]                   │ debg --- retry.try failed again with the same message...
[00:09:51]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:51]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:51]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:51]                   │ debg --- retry.try failed again with the same message...
[00:09:51]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:51]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:51]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:51]                   │ debg --- retry.try failed again with the same message...
[00:09:52]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:52]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:52]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:52]                   │ debg --- retry.try failed again with the same message...
[00:09:52]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:52]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:52]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:52]                   │ debg --- retry.try failed again with the same message...
[00:09:53]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:53]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:53]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:53]                   │ debg --- retry.try failed again with the same message...
[00:09:53]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:53]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:53]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:53]                   │ debg --- retry.try failed again with the same message...
[00:09:54]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:54]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:54]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:54]                   │ debg --- retry.try failed again with the same message...
[00:09:54]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:54]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:54]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:54]                   │ debg --- retry.try failed again with the same message...
[00:09:55]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:55]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:55]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:55]                   │ debg --- retry.try failed again with the same message...
[00:09:55]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:55]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:55]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:55]                   │ debg --- retry.try failed again with the same message...
[00:09:56]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:56]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:56]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:56]                   │ debg --- retry.try failed again with the same message...
[00:09:56]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:56]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:56]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:56]                   │ debg --- retry.try failed again with the same message...
[00:09:57]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:57]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:57]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:57]                   │ debg --- retry.try failed again with the same message...
[00:09:57]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:57]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:57]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:57]                   │ debg --- retry.try failed again with the same message...
[00:09:58]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:58]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:58]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:58]                   │ debg --- retry.try failed again with the same message...
[00:09:59]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:59]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:59]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:59]                   │ debg --- retry.try failed again with the same message...
[00:09:59]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:09:59]                   │ debg TestSubjects.find(tab-indexedFields)
[00:09:59]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:09:59]                   │ debg --- retry.try failed again with the same message...
[00:10:00]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:00]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:00]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:00]                   │ debg --- retry.try failed again with the same message...
[00:10:00]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:00]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:00]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:00]                   │ debg --- retry.try failed again with the same message...
[00:10:01]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:01]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:01]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:01]                   │ debg --- retry.try failed again with the same message...
[00:10:01]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:01]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:01]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:01]                   │ debg --- retry.try failed again with the same message...
[00:10:02]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:02]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:02]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:02]                   │ debg --- retry.try failed again with the same message...
[00:10:02]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:02]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:02]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:02]                   │ debg --- retry.try failed again with the same message...
[00:10:03]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:03]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:03]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:03]                   │ debg --- retry.try failed again with the same message...
[00:10:03]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:03]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:03]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:03]                   │ debg --- retry.try failed again with the same message...
[00:10:04]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:04]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:04]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:04]                   │ debg --- retry.try failed again with the same message...
[00:10:04]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:04]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:04]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:04]                   │ debg --- retry.try failed again with the same message...
[00:10:05]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:05]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:05]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:05]                   │ debg --- retry.try failed again with the same message...
[00:10:05]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:05]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:05]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:05]                   │ debg --- retry.try failed again with the same message...
[00:10:06]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:06]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:06]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:06]                   │ debg --- retry.try failed again with the same message...
[00:10:06]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:06]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:06]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:06]                   │ debg --- retry.try failed again with the same message...
[00:10:07]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:07]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:07]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:07]                   │ debg --- retry.try failed again with the same message...
[00:10:07]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:07]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:07]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:07]                   │ debg --- retry.try failed again with the same message...
[00:10:08]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:08]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:08]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:08]                   │ debg --- retry.try failed again with the same message...
[00:10:08]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:08]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:08]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:09]                   │ debg --- retry.try failed again with the same message...
[00:10:09]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:09]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:09]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:09]                   │ debg --- retry.try failed again with the same message...
[00:10:10]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:10]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:10]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:10]                   │ debg --- retry.try failed again with the same message...
[00:10:10]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:10]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:10]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:10]                   │ debg --- retry.try failed again with the same message...
[00:10:11]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:11]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:11]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:11]                   │ debg --- retry.try failed again with the same message...
[00:10:11]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:11]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:11]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:11]                   │ debg --- retry.try failed again with the same message...
[00:10:12]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:12]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:12]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:12]                   │ debg --- retry.try failed again with the same message...
[00:10:12]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:12]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:12]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:12]                   │ debg --- retry.try failed again with the same message...
[00:10:13]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:13]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:13]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:13]                   │ debg --- retry.try failed again with the same message...
[00:10:13]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:13]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:13]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:13]                   │ debg --- retry.try failed again with the same message...
[00:10:14]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:14]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:14]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:14]                   │ debg --- retry.try failed again with the same message...
[00:10:14]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:14]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:14]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:14]                   │ debg --- retry.try failed again with the same message...
[00:10:15]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:15]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:15]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:15]                   │ debg --- retry.try failed again with the same message...
[00:10:15]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:15]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:15]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:15]                   │ debg --- retry.try failed again with the same message...
[00:10:16]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:16]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:16]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:16]                   │ debg --- retry.try failed again with the same message...
[00:10:16]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:16]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:16]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:16]                   │ debg --- retry.try failed again with the same message...
[00:10:17]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:17]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:17]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:17]                   │ debg --- retry.try failed again with the same message...
[00:10:17]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:17]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:17]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:17]                   │ debg --- retry.try failed again with the same message...
[00:10:18]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:18]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:18]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:18]                   │ debg --- retry.try failed again with the same message...
[00:10:18]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:18]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:18]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:18]                   │ debg --- retry.try failed again with the same message...
[00:10:19]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:19]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:19]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:19]                   │ debg --- retry.try failed again with the same message...
[00:10:19]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:19]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:19]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:20]                   │ debg --- retry.try failed again with the same message...
[00:10:20]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:20]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:20]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:20]                   │ debg --- retry.try failed again with the same message...
[00:10:21]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:21]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:21]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:21]                   │ debg --- retry.try failed again with the same message...
[00:10:21]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:21]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:21]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:21]                   │ debg --- retry.try failed again with the same message...
[00:10:22]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:22]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:22]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:22]                   │ debg --- retry.try failed again with the same message...
[00:10:22]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:22]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:22]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:22]                   │ debg --- retry.try failed again with the same message...
[00:10:23]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:23]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:23]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:23]                   │ debg --- retry.try failed again with the same message...
[00:10:23]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:23]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:23]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:23]                   │ debg --- retry.try failed again with the same message...
[00:10:24]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:24]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:24]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:24]                   │ debg --- retry.try failed again with the same message...
[00:10:24]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:24]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:24]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:24]                   │ debg --- retry.try failed again with the same message...
[00:10:25]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:25]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:25]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:25]                   │ debg --- retry.try failed again with the same message...
[00:10:25]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:25]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:25]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:25]                   │ debg --- retry.try failed again with the same message...
[00:10:26]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:26]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:26]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:26]                   │ debg --- retry.try failed again with the same message...
[00:10:26]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:26]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:26]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:26]                   │ debg --- retry.try failed again with the same message...
[00:10:27]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:27]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:27]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:27]                   │ debg --- retry.try failed again with the same message...
[00:10:27]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:27]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:27]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:27]                   │ debg --- retry.try failed again with the same message...
[00:10:28]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:28]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:28]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:28]                   │ debg --- retry.try failed again with the same message...
[00:10:28]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:28]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:28]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:28]                   │ debg --- retry.try failed again with the same message...
[00:10:29]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:29]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:29]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:29]                   │ debg --- retry.try failed again with the same message...
[00:10:29]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:29]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:29]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:29]                   │ debg --- retry.try failed again with the same message...
[00:10:30]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:30]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:30]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:30]                   │ debg --- retry.try failed again with the same message...
[00:10:31]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:31]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:31]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:31]                   │ debg --- retry.try failed again with the same message...
[00:10:31]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:31]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:31]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:31]                   │ debg --- retry.try failed again with the same message...
[00:10:32]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:32]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:32]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:32]                   │ debg --- retry.try failed again with the same message...
[00:10:32]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:32]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:32]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:32]                   │ debg --- retry.try failed again with the same message...
[00:10:33]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:33]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:33]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:33]                   │ debg --- retry.try failed again with the same message...
[00:10:33]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:33]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:33]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:33]                   │ debg --- retry.try failed again with the same message...
[00:10:34]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:34]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:34]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:34]                   │ debg --- retry.try failed again with the same message...
[00:10:34]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:34]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:34]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:34]                   │ debg --- retry.try failed again with the same message...
[00:10:35]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:35]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:35]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:35]                   │ debg --- retry.try failed again with the same message...
[00:10:35]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:35]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:35]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:35]                   │ debg --- retry.try failed again with the same message...
[00:10:36]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:36]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:36]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:36]                   │ debg --- retry.try failed again with the same message...
[00:10:36]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:36]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:36]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:36]                   │ debg --- retry.try failed again with the same message...
[00:10:37]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:37]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:37]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:37]                   │ debg --- retry.try failed again with the same message...
[00:10:37]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:37]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:37]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:37]                   │ debg --- retry.try failed again with the same message...
[00:10:38]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:38]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:38]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:38]                   │ debg --- retry.try failed again with the same message...
[00:10:38]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:38]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:38]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:38]                   │ debg --- retry.try failed again with the same message...
[00:10:39]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:39]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:39]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:39]                   │ debg --- retry.try failed again with the same message...
[00:10:39]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:39]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:39]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:39]                   │ debg --- retry.try failed again with the same message...
[00:10:40]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:40]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:40]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:40]                   │ debg --- retry.try failed again with the same message...
[00:10:40]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:40]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:40]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:41]                   │ debg --- retry.try failed again with the same message...
[00:10:41]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:41]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:41]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:41]                   │ debg --- retry.try failed again with the same message...
[00:10:42]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:42]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:42]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:42]                   │ debg --- retry.try failed again with the same message...
[00:10:42]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:42]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:42]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:42]                   │ debg --- retry.try failed again with the same message...
[00:10:43]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:43]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:43]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:43]                   │ debg --- retry.try failed again with the same message...
[00:10:43]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:43]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:43]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:43]                   │ debg --- retry.try failed again with the same message...
[00:10:44]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:44]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:44]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:44]                   │ debg --- retry.try failed again with the same message...
[00:10:44]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:44]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:44]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:44]                   │ debg --- retry.try failed again with the same message...
[00:10:45]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:45]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:45]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:45]                   │ debg --- retry.try failed again with the same message...
[00:10:45]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:45]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:45]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:45]                   │ debg --- retry.try failed again with the same message...
[00:10:46]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:46]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:46]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:46]                   │ debg --- retry.try failed again with the same message...
[00:10:46]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:46]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:46]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:46]                   │ debg --- retry.try failed again with the same message...
[00:10:47]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:47]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:47]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:47]                   │ debg --- retry.try failed again with the same message...
[00:10:47]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:47]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:47]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:47]                   │ debg --- retry.try failed again with the same message...
[00:10:48]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:48]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:48]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:48]                   │ debg --- retry.try failed again with the same message...
[00:10:48]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:48]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:48]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:48]                   │ debg --- retry.try failed again with the same message...
[00:10:49]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:49]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:49]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:49]                   │ debg --- retry.try failed again with the same message...
[00:10:49]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:49]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:49]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:49]                   │ debg --- retry.try failed again with the same message...
[00:10:50]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:50]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:50]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:50]                   │ debg --- retry.try failed again with the same message...
[00:10:50]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:50]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:50]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:50]                   │ debg --- retry.try failed again with the same message...
[00:10:51]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:51]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:51]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:51]                   │ debg --- retry.try failed again with the same message...
[00:10:51]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:51]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:51]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:51]                   │ debg --- retry.try failed again with the same message...
[00:10:52]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:52]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:52]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:52]                   │ debg --- retry.try failed again with the same message...
[00:10:53]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:53]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:53]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:53]                   │ debg --- retry.try failed again with the same message...
[00:10:53]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:53]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:53]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:53]                   │ debg --- retry.try failed again with the same message...
[00:10:54]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:54]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:54]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:54]                   │ debg --- retry.try failed again with the same message...
[00:10:54]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:54]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:54]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:54]                   │ debg --- retry.try failed again with the same message...
[00:10:55]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:55]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:55]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:55]                   │ debg --- retry.try failed again with the same message...
[00:10:55]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:55]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:55]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:55]                   │ debg --- retry.try failed again with the same message...
[00:10:56]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:56]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:56]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:56]                   │ debg --- retry.try failed again with the same message...
[00:10:56]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:56]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:56]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:56]                   │ debg --- retry.try failed again with the same message...
[00:10:57]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:57]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:57]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:57]                   │ debg --- retry.try failed again with the same message...
[00:10:57]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:57]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:57]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:57]                   │ debg --- retry.try failed again with the same message...
[00:10:58]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:58]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:58]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:58]                   │ debg --- retry.try failed again with the same message...
[00:10:58]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:58]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:58]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:58]                   │ debg --- retry.try failed again with the same message...
[00:10:59]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:59]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:59]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:59]                   │ debg --- retry.try failed again with the same message...
[00:10:59]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:10:59]                   │ debg TestSubjects.find(tab-indexedFields)
[00:10:59]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:10:59]                   │ debg --- retry.try failed again with the same message...
[00:11:00]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:00]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:00]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:00]                   │ debg --- retry.try failed again with the same message...
[00:11:00]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:00]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:00]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:00]                   │ debg --- retry.try failed again with the same message...
[00:11:01]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:01]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:01]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:01]                   │ debg --- retry.try failed again with the same message...
[00:11:01]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:01]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:01]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:01]                   │ debg --- retry.try failed again with the same message...
[00:11:02]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:02]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:02]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:02]                   │ debg --- retry.try failed again with the same message...
[00:11:02]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:02]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:02]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:02]                   │ debg --- retry.try failed again with the same message...
[00:11:03]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:03]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:03]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:03]                   │ debg --- retry.try failed again with the same message...
[00:11:04]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:04]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:04]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:04]                   │ debg --- retry.try failed again with the same message...
[00:11:04]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:04]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:04]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:04]                   │ debg --- retry.try failed again with the same message...
[00:11:05]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:05]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:05]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:05]                   │ debg --- retry.try failed again with the same message...
[00:11:05]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:05]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:05]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:05]                   │ debg --- retry.try failed again with the same message...
[00:11:06]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:06]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:06]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:06]                   │ debg --- retry.try failed again with the same message...
[00:11:06]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:06]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:06]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:06]                   │ debg --- retry.try failed again with the same message...
[00:11:07]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:07]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:07]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:07]                   │ debg --- retry.try failed again with the same message...
[00:11:07]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:07]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:07]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:07]                   │ debg --- retry.try failed again with the same message...
[00:11:08]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:08]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:08]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:08]                   │ debg --- retry.try failed again with the same message...
[00:11:08]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:08]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:08]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:08]                   │ debg --- retry.try failed again with the same message...
[00:11:09]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:09]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:09]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:09]                   │ debg --- retry.try failed again with the same message...
[00:11:09]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:09]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:09]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:09]                   │ debg --- retry.try failed again with the same message...
[00:11:10]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:10]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:10]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:10]                   │ debg --- retry.try failed again with the same message...
[00:11:10]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:10]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:10]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:10]                   │ debg --- retry.try failed again with the same message...
[00:11:11]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:11]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:11]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:11]                   │ debg --- retry.try failed again with the same message...
[00:11:11]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:11]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:11]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:11]                   │ debg --- retry.try failed again with the same message...
[00:11:12]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:12]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:12]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:12]                   │ debg --- retry.try failed again with the same message...
[00:11:12]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:12]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:12]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:12]                   │ debg --- retry.try failed again with the same message...
[00:11:13]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:13]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:13]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:13]                   │ debg --- retry.try failed again with the same message...
[00:11:13]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:13]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:13]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:14]                   │ debg --- retry.try failed again with the same message...
[00:11:14]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:14]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:14]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:14]                   │ debg --- retry.try failed again with the same message...
[00:11:15]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:15]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:15]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:15]                   │ debg --- retry.try failed again with the same message...
[00:11:15]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:15]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:15]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:15]                   │ debg --- retry.try failed again with the same message...
[00:11:16]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:16]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:16]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:16]                   │ debg --- retry.try failed again with the same message...
[00:11:16]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:16]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:16]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:16]                   │ debg --- retry.try failed again with the same message...
[00:11:17]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:17]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:17]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:17]                   │ debg --- retry.try failed again with the same message...
[00:11:17]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:17]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:17]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:17]                   │ debg --- retry.try failed again with the same message...
[00:11:18]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:18]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:18]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:18]                   │ debg --- retry.try failed again with the same message...
[00:11:18]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:18]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:18]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:18]                   │ debg --- retry.try failed again with the same message...
[00:11:19]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:19]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:19]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:19]                   │ debg --- retry.try failed again with the same message...
[00:11:19]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:19]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:19]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:19]                   │ debg --- retry.try failed again with the same message...
[00:11:20]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:20]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:20]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:20]                   │ debg --- retry.try failed again with the same message...
[00:11:20]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:20]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:20]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:20]                   │ debg --- retry.try failed again with the same message...
[00:11:21]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:21]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:21]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:21]                   │ debg --- retry.try failed again with the same message...
[00:11:21]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:21]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:21]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:21]                   │ debg --- retry.try failed again with the same message...
[00:11:22]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:22]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:22]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:22]                   │ debg --- retry.try failed again with the same message...
[00:11:22]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:22]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:22]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:22]                   │ debg --- retry.try failed again with the same message...
[00:11:23]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:23]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:23]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:23]                   │ debg --- retry.try failed again with the same message...
[00:11:23]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:23]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:23]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:23]                   │ debg --- retry.try failed again with the same message...
[00:11:24]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:24]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:24]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:24]                   │ debg --- retry.try failed again with the same message...
[00:11:25]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:25]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:25]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:25]                   │ debg --- retry.try failed again with the same message...
[00:11:25]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:25]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:25]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:25]                   │ debg --- retry.try failed again with the same message...
[00:11:26]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:26]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:26]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:26]                   │ debg --- retry.try failed again with the same message...
[00:11:26]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:26]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:26]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:26]                   │ debg --- retry.try failed again with the same message...
[00:11:27]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:27]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:27]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:27]                   │ debg --- retry.try failed again with the same message...
[00:11:27]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:27]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:27]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:27]                   │ debg --- retry.try failed again with the same message...
[00:11:28]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:28]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:28]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:28]                   │ debg --- retry.try failed again with the same message...
[00:11:28]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:28]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:28]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:28]                   │ debg --- retry.try failed again with the same message...
[00:11:29]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:29]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:29]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:29]                   │ debg --- retry.try failed again with the same message...
[00:11:29]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:29]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:29]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:29]                   │ debg --- retry.try failed again with the same message...
[00:11:30]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:30]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:30]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:30]                   │ debg --- retry.try failed again with the same message...
[00:11:30]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:30]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:30]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:30]                   │ debg --- retry.try failed again with the same message...
[00:11:31]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:31]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:31]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:31]                   │ debg --- retry.try failed again with the same message...
[00:11:31]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:31]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:31]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:31]                   │ debg --- retry.try failed again with the same message...
[00:11:32]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:32]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:32]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:32]                   │ debg --- retry.try failed again with the same message...
[00:11:32]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:32]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:32]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:32]                   │ debg --- retry.try failed again with the same message...
[00:11:33]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:33]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:33]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:33]                   │ debg --- retry.try failed again with the same message...
[00:11:33]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:33]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:33]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:33]                   │ debg --- retry.try failed again with the same message...
[00:11:34]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:34]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:34]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:34]                   │ debg --- retry.try failed again with the same message...
[00:11:34]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:34]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:34]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:34]                   │ debg --- retry.try failed again with the same message...
[00:11:35]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:35]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:35]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:35]                   │ debg --- retry.try failed again with the same message...
[00:11:36]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:36]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:36]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:36]                   │ debg --- retry.try failed again with the same message...
[00:11:36]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:36]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:36]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:36]                   │ debg --- retry.try failed again with the same message...
[00:11:37]                   │ debg TestSubjects.getVisibleText(tab-indexedFields)
[00:11:37]                   │ debg TestSubjects.find(tab-indexedFields)
[00:11:37]                   │ debg Find.findByCssSelector('[data-test-subj="tab-indexedFields"]') with timeout=10000
[00:11:37]                   │ debg --- retry.try failed again with the same message...
[00:11:37]                   │ info Taking screenshot "/dev/shm/workspace/parallel/11/kibana/test/functional/screenshots/failure/management  runtime fields create runtime field should create runtime field.png"
[00:11:37]                   │ info Current URL is: http://localhost:61111/app/management/kibana/indexPatterns/patterns/logstash-*#/?_a=(tab:indexedFields)
[00:11:37]                   │ info Saving page source to: /dev/shm/workspace/parallel/11/kibana/test/functional/failure_debug/html/management  runtime fields create runtime field should create runtime field.html
[00:11:37]                   └- ✖ fail: management  runtime fields create runtime field should create runtime field
[00:11:37]                   │      retry.try timeout: Error: expected 86 to equal 87
[00:11:37]                   │     at Assertion.assert (/dev/shm/workspace/parallel/11/kibana/node_modules/@kbn/expect/expect.js:100:11)
[00:11:37]                   │     at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/11/kibana/node_modules/@kbn/expect/expect.js:227:8)
[00:11:37]                   │     at Assertion.be (/dev/shm/workspace/parallel/11/kibana/node_modules/@kbn/expect/expect.js:69:22)
[00:11:37]                   │     at /dev/shm/workspace/parallel/11/kibana/test/functional/apps/management/_runtime_fields.js:59:79
[00:11:37]                   │     at runMicrotasks (<anonymous>)
[00:11:37]                   │     at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:11:37]                   │     at runAttempt (/dev/shm/workspace/parallel/11/kibana/test/common/services/retry/retry_for_success.ts:27:15)
[00:11:37]                   │     at retryForSuccess (/dev/shm/workspace/parallel/11/kibana/test/common/services/retry/retry_for_success.ts:66:21)
[00:11:37]                   │     at RetryService.try (/dev/shm/workspace/parallel/11/kibana/test/common/services/retry/retry.ts:31:12)
[00:11:37]                   │     at Context.<anonymous> (/dev/shm/workspace/parallel/11/kibana/test/functional/apps/management/_runtime_fields.js:58:9)
[00:11:37]                   │     at Object.apply (/dev/shm/workspace/parallel/11/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:11:37]                   │   Error: retry.try timeout: Error: expected 86 to equal 87
[00:11:37]                   │       at Assertion.assert (node_modules/@kbn/expect/expect.js:100:11)
[00:11:37]                   │       at Assertion.be.Assertion.equal (node_modules/@kbn/expect/expect.js:227:8)
[00:11:37]                   │       at Assertion.be (node_modules/@kbn/expect/expect.js:69:22)
[00:11:37]                   │       at /dev/shm/workspace/parallel/11/kibana/test/functional/apps/management/_runtime_fields.js:59:79
[00:11:37]                   │       at runMicrotasks (<anonymous>)
[00:11:37]                   │       at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:11:37]                   │       at runAttempt (test/common/services/retry/retry_for_success.ts:27:15)
[00:11:37]                   │       at retryForSuccess (test/common/services/retry/retry_for_success.ts:66:21)
[00:11:37]                   │       at RetryService.try (test/common/services/retry/retry.ts:31:12)
[00:11:37]                   │       at Context.<anonymous> (test/functional/apps/management/_runtime_fields.js:58:9)
[00:11:37]                   │       at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:11:37]                   │       at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
[00:11:37]                   │       at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
[00:11:37]                   │       at RetryService.try (test/common/services/retry/retry.ts:31:12)
[00:11:37]                   │       at Context.<anonymous> (test/functional/apps/management/_runtime_fields.js:58:9)
[00:11:37]                   │       at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:11:37]                   │ 
[00:11:37]                   │ 

Stack Trace

Error: retry.try timeout: Error: expected 86 to equal 87
    at Assertion.assert (node_modules/@kbn/expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (node_modules/@kbn/expect/expect.js:227:8)
    at Assertion.be (node_modules/@kbn/expect/expect.js:69:22)
    at /dev/shm/workspace/parallel/11/kibana/test/functional/apps/management/_runtime_fields.js:59:79
    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/management/_runtime_fields.js:58:9)
    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/management/_runtime_fields.js:58:9)
    at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)

Metrics [docs]

Module Count

Fewer modules leads to a faster build time

id before after diff
ml 1812 1816 +4

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
ml 6.1MB 6.1MB +9.3KB
securitySolution 6.5MB 6.5MB +15.0B
total +9.3KB

Page load bundle

Size of the bundles that are downloaded on every page load. Target size is below 100kb

id before after diff
ml 64.9KB 64.9KB +21.0B
Unknown metric groups

API count

id before after diff
ml 279 280 +1

API count missing comments

id before after diff
ml 275 276 +1

History

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

cc @jgowdyelastic

@jgowdyelastic jgowdyelastic merged commit 61097e7 into elastic:master Aug 17, 2021
@jgowdyelastic jgowdyelastic deleted the adding-reset-job-links-to-job-list branch August 17, 2021 18:34
kibanamachine added a commit to kibanamachine/kibana that referenced this pull request Aug 17, 2021
…08039)

* [ML] Adding reset jobs link to jobs list

* fixing types

* updating types

* improving react code

* adding closed job warning callout

* small code changes after review

* updating comment for api docs

* adding canResetJob to security's emptyMlCapabilities

* updating apidoc

* adding blocked to job summary

* udating test

* adding delayed refresh back in

* updating tests

* adding better reverting controls and labels

* fixing bug in delete modal

* updating job task polling for all blocking tasks

* fixing types after es client update

* one other type correction

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

💚 Backport successful

Status Branch Result
7.x

This backport PR will be merged automatically after passing CI.

kibanamachine added a commit that referenced this pull request Aug 17, 2021
…108971)

* [ML] Adding reset jobs link to jobs list

* fixing types

* updating types

* improving react code

* adding closed job warning callout

* small code changes after review

* updating comment for api docs

* adding canResetJob to security's emptyMlCapabilities

* updating apidoc

* adding blocked to job summary

* udating test

* adding delayed refresh back in

* updating tests

* adding better reverting controls and labels

* fixing bug in delete modal

* updating job task polling for all blocking tasks

* fixing types after es client update

* one other type correction

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

Co-authored-by: James Gowdy <jgowdy@elastic.co>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
auto-backport Deprecated: Automatically backport this PR after it's merged Feature:Anomaly Detection ML anomaly detection :ml release_note:feature Makes this part of the condensed release notes review v7.15.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[ML] Visual indicator for anomaly detection job blocks [ML] Add reset action for anomaly detection jobs
7 participants