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

Add delete data stream action and detail panel #68919

Merged
merged 8 commits into from
Jun 25, 2020

Conversation

cjcenizal
Copy link
Contributor

@cjcenizal cjcenizal commented Jun 11, 2020

Builds upon #67806

Changes

Aside from what's mentioned in the title, I also changed the wording and CTA in the empty prompt based on stakeholder feedback.

image

However, if Ingest Manager is disabled, the prompt guides the user to index templates.

image

Note that the detail panel always opens if deep-linked, regardless of whether the table is loading, has an error, or contains no data streams. I believe this is a good UX, because the user expects a deep-link to show a detail panel regardless of these contextual states.

image

Testing

To test, create some data streams in Console and see them in Index Management.

PUT _index_template/ds-template
{
  "index_patterns": ["data-stream*"],
  "data_stream": {
    "timestamp_field": "@timestamp"
  }
}

PUT _data_stream/data-stream-test

Release note (moved to original: #67806)

We added the ability to delete a data stream from the UI, and a panel for digging into a data stream's advanced details.

image

image

@cjcenizal cjcenizal force-pushed the data-streams/delete-action branch 2 times, most recently from 95ee364 to f77081e Compare June 18, 2020 22:20
@cjcenizal cjcenizal changed the title Add delete data stream action. Add delete data stream action and detail panel Jun 18, 2020
@cjcenizal cjcenizal added Feature:Index Management Index and index templates UI release_note:enhancement Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.9.0 v8.0.0 labels Jun 18, 2020
@cjcenizal cjcenizal marked this pull request as ready for review June 18, 2020 22:25
@cjcenizal cjcenizal requested a review from a team as a code owner June 18, 2020 22:25
@elasticmachine
Copy link
Contributor

Pinging @elastic/es-ui (Team:Elasticsearch UI)

@cjcenizal cjcenizal force-pushed the data-streams/delete-action branch 3 times, most recently from 1ac88d8 to 95989df Compare June 23, 2020 22:53
@cjcenizal cjcenizal requested a review from a team June 23, 2020 22:53
@botelastic botelastic bot added the Team:Fleet Team label for Observability Data Collection Fleet team label Jun 23, 2020
@elasticmachine
Copy link
Contributor

Pinging @elastic/ingest-management (Team:Ingest Management)

/>
</EuiDescriptionListTitle>

<EuiDescriptionListDescription>{timeStampField.name}</EuiDescriptionListDescription>
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Note that this will render blank until the ES snapshot is updated.

export type IngestManagerSetup = void;
// We need to provide an object instead of void so that dependent plugins know when Ingest Manager
// is disabled.
export interface IngestManagerSetup {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@elastic/ingest-management I made this change so we could inspect whether Ingest Manager was disabled or not. When it's disabled, the Ingest Manager setup dependency will be undefined. I'm happy to change this return value to anything you'd prefer.

@jloleysens
Copy link
Contributor

@elasticmachine merge upstream

Copy link
Contributor

@jloleysens jloleysens left a comment

Choose a reason for hiding this comment

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

Great work @cjcenizal !

Left some comments about what I think can be improved in the code. Tested locally, specifically with the ingest manager not being enabled workflow.

Thanks for adding test coverage!

const { actions, exists } = testBed;
test('when Ingest Manager is disabled, goes to index templates tab when "Get started" link is clicked', async () => {
await act(async () => {
testBed = await setup({
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit; this should be able to sit outside of act.

@@ -74,7 +99,7 @@ export const DataStreamDetailPanel: React.FunctionComponent<Props> = ({
>
<EuiFlyoutHeader>
<EuiTitle size="m">
<h2 id="dataStreamDetailPanelTitle" data-test-subj="title">
<h2 id="dataStreamDetailPanelTitle" data-test-subj="dataStreamDetailPanelTitle">
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit; I think if we wanted to stick with title we could use the find test utility's . notation. So the flyout could be dataStreamFlyout and this would be title. Then in the test we could have find('dataStreamFlyout.title')

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good point! I prefer to use a selector that references a specific element instead of depending upon context, so I'm going to leave this as-is for now.

}}
/>
defaultMessage="Data streams represent collections of time series indices."
/>{' '}
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit; not sure whether this space is intentional?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We need this space to separate the two sentences. I'll add a comment.

Comment on lines 15 to 21
export const DeleteDataStreamConfirmationModal = ({
dataStreams,
callback,
}: {
dataStreams: string[];
callback: (data?: { hasDeletedDataStreams: boolean }) => void;
}) => {
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit; could we make use of React's FunctionComponent type util here? And create a separate Props interface. So the end result will be something like:

interface Props {
  dataStreams: string[];
  callback: (data?: { hasDeletedDataStreams: boolean }) => void;
}

export const DeleteDataStreamConfirmationModal: FunctionComponent<Props> = ({
  dataStreams,
  callback,
}) => { ...

This also gives type security in the return value of the component (i.e., it can only return valid component-like things) and IMO tidies things up a bit.

One comment would be that we change callback to onConfirm. I would also move the deletion logic up to the parent component and then we can avoid hasDeletedDataStreams which seems like a prop that is compressing quite a lot of information to consumers.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good points! I'll make these changes. Thanks.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've incorporated your other suggestions, but I've decided to leave the deletion logic encapsulated inside of the delete modal. This logic is will be the same regardless of the consumer (which can be the table or the detail panel), so I think the added complexity of hasDeletedDataStreams is worth the hidden complexity of implementing the deletion logic in multiple places. FWIW this is a pattern we've used for most (maybe all) of our confirmation modals so if we change this pattern I think we should consider it in all of our apps.

return useRequest<DataStream[]>({
path: `${API_BASE_PATH}/data_stream/${encodeURIComponent(name)}`,
return useRequest<DataStream>({
path: `${API_BASE_PATH}/data_streams/${encodeURIComponent(name)}`,
Copy link
Contributor

Choose a reason for hiding this comment

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

I see the type annotation was changed to not being an array but the endpoint is pluralised, is this intended to be the case?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, this was a deliberate change to align with our other Index Management APIs, which consistently use plural nouns regardless of whether you're fetching all or one of a given entity.

@mostlyjason
Copy link
Contributor

I can't comment on the code, but the screenshot looks good :)

// We need to provide an object instead of void so that dependent plugins know when Ingest Manager
// is disabled.
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface IngestManagerSetup {}
Copy link
Contributor

Choose a reason for hiding this comment

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

I didn't realize the current code would prevent consumers from even testing if it was enabled

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks for taking a look and approving @jfsiii! I doubt anyone was aware of this type of interaction. I stumbled on it by accident myself! I opened #69845 to discuss the problem and seek a global solution.

@cjcenizal cjcenizal force-pushed the data-streams/delete-action branch 2 times, most recently from 39f8aeb to b1d34e6 Compare June 24, 2020 22:53
- Add delete action to flyout.
- Always render the detail panel when deep-linked, even if table is loading, errored, or has no data streams.
- Fix tests and TS errors,
@cjcenizal cjcenizal merged commit b48c8bf into elastic:master Jun 25, 2020
@cjcenizal cjcenizal deleted the data-streams/delete-action branch June 25, 2020 02:30
cjcenizal added a commit that referenced this pull request Jun 25, 2020
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
@cjcenizal cjcenizal added release_note:skip Skip the PR/issue when compiling release notes and removed release_note:enhancement labels Jul 7, 2020
@kibanamachine
Copy link
Contributor

💔 Build Failed

Failed CI Steps


Test Failures

Kibana Pipeline / kibana-xpack-agent / Firefox XPack UI Functional Tests.x-pack/test/functional/apps/infra/home_page·ts.InfraOps app Home page with metrics present renders the waffle map for dates with data

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:06:51]         └-: InfraOps app
[00:06:51]           └-> "before all" hook
[00:06:51]           └-: Home page
[00:06:51]             └-> "before all" hook
[00:06:51]             └-> "before all" hook
[00:06:51]               │ info [empty_kibana] Loading "mappings.json"
[00:06:51]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_1/yE2BkDuQT1i45UuCPNmYPA] deleting index
[00:06:51]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/fJV_oh0xRyO_XaEpAKY36Q] deleting index
[00:06:51]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:06:51]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:06:51]               │ info [empty_kibana] Created index ".kibana"
[00:06:51]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:06:51]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana/pBOr8faxSPGP5kCo2l-2oQ] update_mapping [_doc]
[00:06:51]               │ debg Migrating saved objects
[00:06:51]               │ proc [kibana]   log   [17:20:54.763] [info][savedobjects-service] Creating index .kibana_2.
[00:06:51]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:06:51]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] updating number_of_replicas to [0] for indices [.kibana_2]
[00:06:51]               │ proc [kibana]   log   [17:20:54.873] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:06:51]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:06:51]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] updating number_of_replicas to [0] for indices [.kibana_1]
[00:06:51]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] 5443 finished with response BulkByScrollResponse[took=4.1ms,timed_out=false,sliceId=null,updated=0,created=0,deleted=0,batches=0,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:06:52]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana/pBOr8faxSPGP5kCo2l-2oQ] deleting index
[00:06:52]               │ proc [kibana]   log   [17:20:55.291] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:06:52]               │ proc [kibana]   log   [17:20:55.296] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:06:52]               │ proc [kibana]   log   [17:20:55.341] [info][savedobjects-service] Finished in 580ms.
[00:06:52]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:06:52]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/dbLhKYNESc6l9l77wI4NMw] update_mapping [_doc]
[00:06:52]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/dbLhKYNESc6l9l77wI4NMw] update_mapping [_doc]
[00:06:52]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/dbLhKYNESc6l9l77wI4NMw] update_mapping [_doc]
[00:07:25]             └-: with metrics present
[00:07:25]               └-> "before all" hook
[00:07:25]               └-> "before all" hook
[00:07:25]                 │ info [infra/metrics_and_logs] Loading "mappings.json"
[00:07:25]                 │ info [infra/metrics_and_logs] Loading "data.json.gz"
[00:07:25]                 │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [metricbeat-7.0.0-alpha1-2018.10.17] creating index, cause [api], templates [], shards [1]/[0]
[00:07:25]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[metricbeat-7.0.0-alpha1-2018.10.17][0]]])." previous.health="YELLOW" reason="shards started [[metricbeat-7.0.0-alpha1-2018.10.17][0]]"
[00:07:25]                 │ info [infra/metrics_and_logs] Created index "metricbeat-7.0.0-alpha1-2018.10.17"
[00:07:25]                 │ debg [infra/metrics_and_logs] "metricbeat-7.0.0-alpha1-2018.10.17" settings {"index":{"codec":"best_compression","mapping":{"total_fields":{"limit":"10000"}},"number_of_replicas":"0","number_of_shards":"1","query":{"default_field":["beat.name","beat.hostname","beat.timezone","beat.version","tags","error.message","error.type","meta.cloud.provider","meta.cloud.instance_id","meta.cloud.instance_name","meta.cloud.machine_type","meta.cloud.availability_zone","meta.cloud.project_id","meta.cloud.region","docker.container.id","docker.container.image","docker.container.name","host.name","host.id","host.architecture","host.os.platform","host.os.version","host.os.family","host.mac","kubernetes.pod.name","kubernetes.pod.uid","kubernetes.namespace","kubernetes.node.name","kubernetes.container.name","kubernetes.container.image","metricset.module","metricset.name","metricset.host","metricset.namespace","type","service.name","aerospike.namespace.name","aerospike.namespace.node.host","aerospike.namespace.node.name","apache.status.hostname","ceph.cluster_health.overall_status","ceph.cluster_health.timechecks.round.status","ceph.monitor_health.health","ceph.monitor_health.name","ceph.osd_df.name","ceph.osd_df.device_class","ceph.osd_tree.name","ceph.osd_tree.type","ceph.osd_tree.children","ceph.osd_tree.status","ceph.osd_tree.device_class","ceph.osd_tree.father","ceph.pool_disk.name","couchbase.bucket.name","couchbase.bucket.type","couchbase.node.hostname","docker.container.command","docker.container.status","docker.container.ip_addresses","docker.healthcheck.status","docker.healthcheck.event.output","docker.image.id.current","docker.image.id.parent","docker.info.id","docker.network.interface","elasticsearch.cluster.name","elasticsearch.cluster.id","elasticsearch.cluster.state.id","elasticsearch.index.name","elasticsearch.node.name","elasticsearch.node.version","elasticsearch.node.jvm.version","elasticsearch.cluster.pending_task.source","elasticsearch.shard.state","etcd.leader.leader","etcd.self.id","etcd.self.leaderinfo.leader","etcd.self.leaderinfo.starttime","etcd.self.leaderinfo.uptime","etcd.self.name","etcd.self.starttime","etcd.self.state","golang.expvar.cmdline","golang.heap.cmdline","graphite.server.example","haproxy.stat.status","haproxy.stat.service_name","haproxy.stat.check.status","haproxy.stat.check.health.last","haproxy.stat.proxy.name","http.request.method","http.request.body","http.response.code","http.response.phrase","http.response.body","kafka.consumergroup.broker.address","kafka.consumergroup.id","kafka.consumergroup.topic","kafka.consumergroup.meta","kafka.consumergroup.client.id","kafka.consumergroup.client.host","kafka.consumergroup.client.member_id","kafka.partition.topic.name","kafka.partition.broker.address","kibana.stats.cluster_uuid","kibana.stats.name","kibana.stats.uuid","kibana.stats.version.number","kibana.stats.status.overall.state","kibana.status.name","kibana.status.uuid","kibana.status.version.number","kibana.status.status.overall.state","kubernetes.apiserver.request.client","kubernetes.apiserver.request.resource","kubernetes.apiserver.request.subresource","kubernetes.apiserver.request.scope","kubernetes.apiserver.request.verb","kubernetes.event.message","kubernetes.event.reason","kubernetes.event.type","kubernetes.event.metadata.name","kubernetes.event.metadata.namespace","kubernetes.event.metadata.resource_version","kubernetes.event.metadata.uid","kubernetes.event.metadata.self_link","kubernetes.event.involved_object.api_version","kubernetes.event.involved_object.kind","kubernetes.event.involved_object.name","kubernetes.event.involved_object.resource_version","kubernetes.event.involved_object.uid","kubernetes.container.id","kubernetes.container.status.phase","kubernetes.container.status.reason","kubernetes.deployment.name","kubernetes.node.status.ready","kubernetes.pod.status.phase","kubernetes.pod.status.ready","kubernetes.pod.status.scheduled","kubernetes.replicaset.name","kubernetes.statefulset.name","kubernetes.system.container","kubernetes.volume.name","kvm.dommemstat.stat.name","kvm.dommemstat.name","logstash.node.host","logstash.node.version","logstash.node.jvm.version","mongodb.collstats.db","mongodb.collstats.collection","mongodb.collstats.name","mongodb.dbstats.db","mongodb.status.version","mongodb.status.storage_engine.name","mysql.galera_status.cluster.status","mysql.galera_status.connected","mysql.galera_status.evs.evict","mysql.galera_status.evs.state","mysql.galera_status.local.state","mysql.galera_status.ready","nginx.stubstatus.hostname","php_fpm.pool.name","php_fpm.pool.process_manager","postgresql.activity.database.name","postgresql.activity.user.name","postgresql.activity.application_name","postgresql.activity.client.address","postgresql.activity.client.hostname","postgresql.activity.state","postgresql.activity.query","postgresql.database.name","postgresql.statement.query.text","rabbitmq.connection.name","rabbitmq.connection.vhost","rabbitmq.connection.user","rabbitmq.connection.node","rabbitmq.connection.type","rabbitmq.connection.host","rabbitmq.connection.peer.host","rabbitmq.exchange.name","rabbitmq.exchange.vhost","rabbitmq.exchange.user","rabbitmq.node.name","rabbitmq.node.type","rabbitmq.queue.name","rabbitmq.queue.vhost","rabbitmq.queue.node","rabbitmq.queue.state","redis.info.memory.max.policy","redis.info.memory.allocator","redis.info.persistence.rdb.bgsave.last_status","redis.info.persistence.aof.bgrewrite.last_status","redis.info.persistence.aof.write.last_status","redis.info.replication.role","redis.info.server.version","redis.info.server.git_sha1","redis.info.server.git_dirty","redis.info.server.build_id","redis.info.server.mode","redis.info.server.os","redis.info.server.arch_bits","redis.info.server.multiplexing_api","redis.info.server.gcc_version","redis.info.server.run_id","redis.info.server.config_file","redis.keyspace.id","system.diskio.name","system.diskio.serial_number","system.filesystem.device_name","system.filesystem.type","system.filesystem.mount_point","system.network.name","system.process.name","system.process.state","system.process.cmdline","system.process.username","system.process.cwd","system.process.cgroup.id","system.process.cgroup.path","system.process.cgroup.cpu.id","system.process.cgroup.cpu.path","system.process.cgroup.cpuacct.id","system.process.cgroup.cpuacct.path","system.process.cgroup.memory.id","system.process.cgroup.memory.path","system.process.cgroup.blkio.id","system.process.cgroup.blkio.path","system.raid.name","system.raid.activity_state","system.socket.direction","system.socket.family","system.socket.remote.host","system.socket.remote.etld_plus_one","system.socket.remote.host_error","system.socket.process.command","system.socket.process.cmdline","system.socket.process.exe","system.socket.user.name","uwsgi.status.worker.status","uwsgi.status.worker.rss","vsphere.datastore.name","vsphere.datastore.fstype","vsphere.host.name","vsphere.host.network_names","vsphere.virtualmachine.host","vsphere.virtualmachine.name","vsphere.virtualmachine.network_names","windows.service.id","windows.service.name","windows.service.display_name","windows.service.start_type","windows.service.state","windows.service.exit_code","zookeeper.mntr.hostname","zookeeper.mntr.server_state","zookeeper.mntr.version","fields.*"]},"refresh_interval":"5s"}}
[00:07:25]                 │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [filebeat-7.0.0-alpha1-2018.10.17] creating index, cause [api], templates [], shards [1]/[0]
[00:07:25]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[filebeat-7.0.0-alpha1-2018.10.17][0]]])." previous.health="YELLOW" reason="shards started [[filebeat-7.0.0-alpha1-2018.10.17][0]]"
[00:07:25]                 │ info [infra/metrics_and_logs] Created index "filebeat-7.0.0-alpha1-2018.10.17"
[00:07:25]                 │ debg [infra/metrics_and_logs] "filebeat-7.0.0-alpha1-2018.10.17" settings {"index":{"codec":"best_compression","mapping":{"total_fields":{"limit":"10000"}},"number_of_replicas":"0","number_of_shards":"1","query":{"default_field":["beat.name","beat.hostname","beat.timezone","beat.version","tags","error.message","error.type","meta.cloud.provider","meta.cloud.instance_id","meta.cloud.instance_name","meta.cloud.machine_type","meta.cloud.availability_zone","meta.cloud.project_id","meta.cloud.region","docker.container.id","docker.container.image","docker.container.name","host.name","host.id","host.architecture","host.os.platform","host.os.version","host.os.family","host.mac","kubernetes.pod.name","kubernetes.pod.uid","kubernetes.namespace","kubernetes.node.name","kubernetes.container.name","kubernetes.container.image","source","message","stream","prospector.type","input.type","read_timestamp","fileset.module","fileset.name","syslog.severity_label","syslog.facility_label","process.program","service.name","log.level","apache2.access.remote_ip","apache2.access.user_name","apache2.access.method","apache2.access.url","apache2.access.http_version","apache2.access.referrer","apache2.access.agent","apache2.access.user_agent.device","apache2.access.user_agent.patch","apache2.access.user_agent.name","apache2.access.user_agent.os","apache2.access.user_agent.os_name","apache2.access.geoip.continent_name","apache2.access.geoip.country_iso_code","apache2.access.geoip.region_name","apache2.access.geoip.city_name","apache2.error.level","apache2.error.client","apache2.error.message","apache2.error.module","auditd.log.record_type","auditd.log.old_auid","auditd.log.new_auid","auditd.log.old_ses","auditd.log.new_ses","auditd.log.acct","auditd.log.pid","auditd.log.ppid","auditd.log.items","auditd.log.item","auditd.log.a0","auditd.log.res","auditd.log.geoip.continent_name","auditd.log.geoip.city_name","auditd.log.geoip.region_name","auditd.log.geoip.country_iso_code","elasticsearch.audit.node_name","elasticsearch.audit.layer","elasticsearch.audit.event_type","elasticsearch.audit.origin_type","elasticsearch.audit.principal","elasticsearch.audit.action","elasticsearch.audit.uri","elasticsearch.audit.request","elasticsearch.audit.request_body","elasticsearch.gc.tags","elasticsearch.server.component","elasticsearch.slowlog.loglevel","elasticsearch.slowlog.logger","elasticsearch.slowlog.node_name","elasticsearch.slowlog.index_name","elasticsearch.slowlog.shard_id","elasticsearch.slowlog.took","elasticsearch.slowlog.types","elasticsearch.slowlog.stats","elasticsearch.slowlog.search_type","elasticsearch.slowlog.source_query","elasticsearch.slowlog.extra_source","elasticsearch.slowlog.took_millis","elasticsearch.slowlog.total_hits","elasticsearch.slowlog.total_shards","icinga.debug.facility","icinga.debug.severity","icinga.debug.message","icinga.main.facility","icinga.main.severity","icinga.main.message","icinga.startup.facility","icinga.startup.severity","icinga.startup.message","iis.access.server_ip","iis.access.method","iis.access.url","iis.access.query_string","iis.access.user_name","iis.access.remote_ip","iis.access.referrer","iis.access.site_name","iis.access.server_name","iis.access.http_version","iis.access.cookie","iis.access.hostname","iis.access.agent","iis.access.user_agent.device","iis.access.user_agent.patch","iis.access.user_agent.name","iis.access.user_agent.os","iis.access.user_agent.os_name","iis.access.geoip.continent_name","iis.access.geoip.country_iso_code","iis.access.geoip.region_name","iis.access.geoip.city_name","iis.error.remote_ip","iis.error.server_ip","iis.error.http_version","iis.error.method","iis.error.url","iis.error.reason_phrase","iis.error.queue_name","iis.error.geoip.continent_name","iis.error.geoip.country_iso_code","iis.error.geoip.region_name","iis.error.geoip.city_name","kafka.log.timestamp","kafka.log.level","kafka.log.message","kafka.log.component","kafka.log.class","kafka.log.trace.class","kafka.log.trace.message","kafka.log.trace.full","kibana.log.tags","kibana.log.state","logstash.log.message","logstash.log.level","logstash.log.module","logstash.log.thread","logstash.slowlog.message","logstash.slowlog.level","logstash.slowlog.module","logstash.slowlog.thread","logstash.slowlog.event","logstash.slowlog.plugin_name","logstash.slowlog.plugin_type","logstash.slowlog.plugin_params","mongodb.log.severity","mongodb.log.component","mongodb.log.context","mongodb.log.message","mysql.error.timestamp","mysql.error.level","mysql.error.message","mysql.slowlog.user","mysql.slowlog.host","mysql.slowlog.ip","mysql.slowlog.query","nginx.access.remote_ip","nginx.access.user_name","nginx.access.method","nginx.access.url","nginx.access.http_version","nginx.access.referrer","nginx.access.agent","nginx.access.user_agent.device","nginx.access.user_agent.patch","nginx.access.user_agent.name","nginx.access.user_agent.os","nginx.access.user_agent.os_name","nginx.access.geoip.continent_name","nginx.access.geoip.country_iso_code","nginx.access.geoip.region_name","nginx.access.geoip.city_name","nginx.error.level","nginx.error.message","osquery.result.name","osquery.result.action","osquery.result.host_identifier","osquery.result.calendar_time","postgresql.log.timestamp","postgresql.log.timezone","postgresql.log.user","postgresql.log.database","postgresql.log.level","postgresql.log.query","postgresql.log.message","redis.log.role","redis.log.level","redis.log.message","redis.slowlog.cmd","redis.slowlog.key","redis.slowlog.args","system.auth.timestamp","system.auth.hostname","system.auth.program","system.auth.message","system.auth.user","system.auth.ssh.event","system.auth.ssh.method","system.auth.ssh.signature","system.auth.ssh.geoip.continent_name","system.auth.ssh.geoip.city_name","system.auth.ssh.geoip.region_name","system.auth.ssh.geoip.country_iso_code","system.auth.sudo.error","system.auth.sudo.tty","system.auth.sudo.pwd","system.auth.sudo.user","system.auth.sudo.command","system.auth.useradd.name","system.auth.useradd.home","system.auth.useradd.shell","system.auth.groupadd.name","system.syslog.timestamp","system.syslog.hostname","system.syslog.program","system.syslog.pid","system.syslog.message","traefik.access.remote_ip","traefik.access.user_name","traefik.access.method","traefik.access.url","traefik.access.http_version","traefik.access.referrer","traefik.access.agent","traefik.access.user_agent.device","traefik.access.user_agent.patch","traefik.access.user_agent.name","traefik.access.user_agent.os","traefik.access.user_agent.os_name","traefik.access.geoip.continent_name","traefik.access.geoip.country_iso_code","traefik.access.geoip.region_name","traefik.access.geoip.city_name","traefik.access.frontend_name","traefik.access.backend_url","fields.*"]},"refresh_interval":"5s"}}
[00:07:29]                 │ info [infra/metrics_and_logs] Indexed 11063 docs into "metricbeat-7.0.0-alpha1-2018.10.17"
[00:07:29]                 │ info [infra/metrics_and_logs] Indexed 1632 docs into "filebeat-7.0.0-alpha1-2018.10.17"
[00:07:30]                 │ debg navigating to infraOps url: http://localhost:6111/app/metrics
[00:07:30]                 │ debg navigate to: http://localhost:6111/app/metrics
[00:07:30]                 │ debg browser[log] "^ A single error about an inline script not firing due to content security policy is expected!"
[00:07:30]                 │ debg ... sleep(700) start
[00:07:31]                 │ debg ... sleep(700) end
[00:07:31]                 │ debg returned from get, calling refresh
[00:07:32]                 │ debg browser[info] "INFO: 2020-07-07T17:21:35Z
[00:07:32]                 │        Adding connection to http://localhost:6111/elasticsearch
[00:07:32]                 │
[00:07:32]                 │      "
[00:07:33]                 │ERROR browser[error] (new TypeError("NetworkError when attempting to fetch resource.", ""))
[00:07:33]                 │ debg browser[log] "^ A single error about an inline script not firing due to content security policy is expected!"
[00:07:33]                 │ debg currentUrl = http://localhost:6111/app/metrics
[00:07:33]                 │          appUrl = http://localhost:6111/app/metrics
[00:07:33]                 │ debg TestSubjects.find(kibanaChrome)
[00:07:33]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:07:40]                 │ debg browser[info] "INFO: 2020-07-07T17:21:43Z
[00:07:40]                 │        Adding connection to http://localhost:6111/elasticsearch
[00:07:40]                 │
[00:07:40]                 │      "
[00:07:42]                 │ debg ... sleep(501) start
[00:07:42]                 │ debg ... sleep(501) end
[00:07:42]                 │ debg in navigateTo url = http://localhost:6111/app/metrics
[00:07:42]                 │ debg TestSubjects.exists(statusPageContainer)
[00:07:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:07:45]                 │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:07:45]                 │ debg TestSubjects.missingOrFail(loadingMessage)
[00:07:45]                 │ debg Find.waitForDeletedByCssSelector('[data-test-subj="loadingMessage"]') with timeout=20000
[00:07:46]               └-> renders the waffle map for dates with data
[00:07:46]                 └-> "before each" hook: global before each
[00:07:46]                 │ debg Find.findByCssSelector('[data-test-subj="waffleDatePicker"] .euiDatePicker.euiFieldText') with timeout=10000
[00:07:56]                 │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/InfraOps app Home page with metrics present renders the waffle map for dates with data.png"
[00:07:56]                 │ info Current URL is: http://localhost:6111/app/metrics/inventory?waffleFilter=(expression%3A''%2Ckind%3Akuery)&waffleTime=(currentTime%3A1594142518781%2CisAutoReloading%3A!f)&waffleOptions=(accountId%3A''%2CautoBounds%3A!t%2CboundsOverride%3A(max%3A1%2Cmin%3A0)%2CcustomMetrics%3A!()%2CcustomOptions%3A!()%2CgroupBy%3A!()%2Clegend%3A(palette%3Acool%2CreverseColors%3A!f%2Csteps%3A10)%2Cmetric%3A(type%3Acpu)%2CnodeType%3Ahost%2Cregion%3A''%2Csort%3A(by%3Aname%2Cdirection%3Adesc)%2Cview%3Amap)
[00:07:56]                 │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/InfraOps app Home page with metrics present renders the waffle map for dates with data.html
[00:07:56]                 └- ✖ fail: "InfraOps app Home page with metrics present renders the waffle map for dates with data"
[00:07:56]                 │

Stack Trace

{ TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="waffleDatePicker"] .euiDatePicker.euiFieldText)
Wait timed out after 10099ms
    at /dev/shm/workspace/kibana/node_modules/selenium-webdriver/lib/webdriver.js:842:17
    at process._tickCallback (internal/process/next_tick.js:68:7) name: 'TimeoutError', remoteStacktrace: '' }

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/index_management/home_page·ts.Index Management app Home page Component templates renders the component templates tab

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:33:37]         └-: Index Management app
[00:33:37]           └-> "before all" hook
[00:33:37]           └-: Home page
[00:33:37]             └-> "before all" hook
[00:33:37]             └-> "before all" hook
[00:33:37]               │ debg navigating to indexManagement url: http://localhost:6141/app/management/data/index_management
[00:33:37]               │ debg navigate to: http://localhost:6141/app/management/data/index_management
[00:33:37]               │ debg browser[INFO] http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594144127856 341 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:33:37]               │
[00:33:37]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:33:37]               │ debg ... sleep(700) start
[00:33:38]               │ debg ... sleep(700) end
[00:33:38]               │ debg returned from get, calling refresh
[00:33:39]               │ debg browser[INFO] http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:48:48Z
[00:33:39]               │        Adding connection to http://localhost:6141/elasticsearch
[00:33:39]               │
[00:33:39]               │      "
[00:33:39]               │ERROR browser[SEVERE] http://localhost:6141/34028/bundles/core/core.entry.js 75:261347 TypeError: Failed to fetch
[00:33:39]               │          at Fetch._callee3$ (http://localhost:6141/34028/bundles/core/core.entry.js:26:104500)
[00:33:39]               │          at l (http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:998712)
[00:33:39]               │          at Generator._invoke (http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:998465)
[00:33:39]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:999069)
[00:33:39]               │          at fetch_asyncGeneratorStep (http://localhost:6141/34028/bundles/core/core.entry.js:26:98881)
[00:33:39]               │          at _throw (http://localhost:6141/34028/bundles/core/core.entry.js:26:99289)
[00:33:39]               │ debg browser[INFO] http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594144127856 341 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:33:39]               │
[00:33:39]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:33:39]               │ debg currentUrl = http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594144127856
[00:33:39]               │          appUrl = http://localhost:6141/app/management/data/index_management
[00:33:39]               │ debg TestSubjects.find(kibanaChrome)
[00:33:39]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:33:40]               │ debg Found login page
[00:33:40]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:33:40]               │ debg TestSubjects.click(loginUsername)
[00:33:40]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:33:40]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:33:40]               │ debg browser[INFO] http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:48:50Z
[00:33:40]               │        Adding connection to http://localhost:6141/elasticsearch
[00:33:40]               │
[00:33:40]               │      "
[00:33:40]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:33:40]               │ debg TestSubjects.click(loginPassword)
[00:33:40]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:33:40]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:33:40]               │ debg TestSubjects.click(loginSubmit)
[00:33:40]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:33:40]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:33:40]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:33:42]               │ debg browser[INFO] http://localhost:6141/app/management/data/index_management?_t=1594144127856 341 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:33:42]               │
[00:33:42]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:33:42]               │ debg browser[INFO] http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:48:52Z
[00:33:42]               │        Adding connection to http://localhost:6141/elasticsearch
[00:33:42]               │
[00:33:42]               │      "
[00:33:42]               │ debg browser[INFO] http://localhost:6141/app/management/data/index_management?_t=1594144132771 341 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:33:42]               │
[00:33:42]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:33:42]               │ debg Finished login process currentUrl = http://localhost:6141/app/management/data/index_management
[00:33:42]               │ debg ... sleep(501) start
[00:33:43]               │ debg ... sleep(501) end
[00:33:43]               │ debg in navigateTo url = http://localhost:6141/app/management/data/index_management
[00:33:43]               │ debg TestSubjects.exists(statusPageContainer)
[00:33:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:33:45]               │ debg browser[INFO] http://localhost:6141/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:48:53Z
[00:33:45]               │        Adding connection to http://localhost:6141/elasticsearch
[00:33:45]               │
[00:33:45]               │      "
[00:33:45]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:33:46]             └-> Loads the app and renders the indices tab by default
[00:33:46]               └-> "before each" hook: global before each
[00:33:46]               │ debg Checking for section heading to say Index Management.
[00:33:46]               │ debg TestSubjects.getVisibleText(appTitle)
[00:33:46]               │ debg TestSubjects.find(appTitle)
[00:33:46]               │ debg Find.findByCssSelector('[data-test-subj="appTitle"]') with timeout=10000
[00:33:46]               │ debg TestSubjects.exists(indicesList)
[00:33:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="indicesList"]') with timeout=2500
[00:33:46]               │ debg TestSubjects.find(reloadIndicesButton)
[00:33:46]               │ debg Find.findByCssSelector('[data-test-subj="reloadIndicesButton"]') with timeout=10000
[00:33:46]               └- ✓ pass  (96ms) "Index Management app Home page Loads the app and renders the indices tab by default"
[00:33:46]             └-: Data streams
[00:33:46]               └-> "before all" hook
[00:33:49]             └-: Component templates
[00:33:49]               └-> "before all" hook
[00:33:49]               └-> renders the component templates tab
[00:33:49]                 └-> "before each" hook: global before each
[00:33:49]                 │ debg TestSubjects.click(component_templatesTab)
[00:33:49]                 │ debg Find.clickByCssSelector('[data-test-subj="component_templatesTab"]') with timeout=10000
[00:33:49]                 │ debg Find.findByCssSelector('[data-test-subj="component_templatesTab"]') with timeout=10000
[00:33:49]                 │ debg isGlobalLoadingIndicatorVisible
[00:33:49]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:33:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:33:49]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:33:49]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:33:49]                 │ debg TestSubjects.exists(emptyList)
[00:33:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="emptyList"]') with timeout=2500
[00:33:51]                 │ debg --- retry.tryForTime error: [data-test-subj="emptyList"] is not displayed
[00:33:52]                 │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/Index Management app Home page Component templates renders the component templates tab.png"
[00:33:52]                 │ info Current URL is: http://localhost:6141/app/management/data/index_management/component_templates
[00:33:52]                 │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/Index Management app Home page Component templates renders the component templates tab.html
[00:33:52]                 └- ✖ fail: "Index Management app Home page Component templates renders the component templates tab"
[00:33:52]                 │

Stack Trace

Error: expected false to equal true
    at Assertion.assert (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:69:22)
    at Context.it (test/functional/apps/index_management/home_page.ts:86:49)

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/security/doc_level_security_roles·js.security app dls user East should only see EAST doc

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has failed 1 times on tracked branches: https://dryrun

[00:00:00]       │
[00:00:00]         └-: security app
[00:00:00]           └-> "before all" hook
[00:01:06]           └-: dls
[00:01:06]             └-> "before all" hook
[00:01:06]             └-> "before all" hook: initialize tests
[00:01:06]               │ info [empty_kibana] Loading "mappings.json"
[00:01:06]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_1/z0SKIrARSFSEFwm-bcvsKQ] deleting index
[00:01:06]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/vNi5vlVsSMmz7mdDF0rvUQ] deleting index
[00:01:06]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:01:06]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:06]               │ info [empty_kibana] Created index ".kibana"
[00:01:06]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:06]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana/01tmnVuFTBOC_bmIW3dpxA] update_mapping [_doc]
[00:01:06]               │ debg Migrating saved objects
[00:01:06]               │ proc [kibana]   log   [17:23:58.261] [info][savedobjects-service] Creating index .kibana_2.
[00:01:06]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:06]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:07]               │ proc [kibana]   log   [17:23:58.491] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:07]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:07]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:07]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] 1808 finished with response BulkByScrollResponse[took=4.7ms,timed_out=false,sliceId=null,updated=0,created=0,deleted=0,batches=0,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:01:07]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana/01tmnVuFTBOC_bmIW3dpxA] deleting index
[00:01:07]               │ proc [kibana]   log   [17:23:59.070] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:07]               │ proc [kibana]   log   [17:23:59.086] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:07]               │ proc [kibana]   log   [17:23:59.168] [info][savedobjects-service] Finished in 917ms.
[00:01:07]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:01:07]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/d_fn5UhpS8q8Yg8UNG-Ppg] update_mapping [_doc]
[00:01:08]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/d_fn5UhpS8q8Yg8UNG-Ppg] update_mapping [_doc]
[00:01:09]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/d_fn5UhpS8q8Yg8UNG-Ppg] update_mapping [_doc]
[00:01:10]               │ info [security/dlstest] Loading "mappings.json"
[00:01:10]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:10]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:10]               │ info [security/dlstest] Created index "dlstest"
[00:01:10]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:10]               │ info [security/dlstest] Indexed 2 docs into "dlstest"
[00:01:10]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:10]               │ debg navigate to: http://localhost:6151/app/management
[00:01:11]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594142642267 341 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:01:11]               │
[00:01:11]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:11]               │ debg ... sleep(700) start
[00:01:11]               │ debg ... sleep(700) end
[00:01:11]               │ debg returned from get, calling refresh
[00:01:12]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594142642267 341 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:01:12]               │
[00:01:12]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:13]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594142642267
[00:01:13]               │          appUrl = http://localhost:6151/app/management
[00:01:13]               │ debg TestSubjects.find(kibanaChrome)
[00:01:13]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:13]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:04Z
[00:01:13]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:13]               │
[00:01:13]               │      "
[00:01:13]               │ debg Found login page
[00:01:13]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:13]               │ debg TestSubjects.click(loginUsername)
[00:01:13]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:13]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:13]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:13]               │ debg TestSubjects.click(loginPassword)
[00:01:13]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:13]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:13]               │ debg TestSubjects.click(loginSubmit)
[00:01:13]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:13]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:13]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:15]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142642267 341 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:01:15]               │
[00:01:15]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:15]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:06Z
[00:01:15]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:15]               │
[00:01:15]               │      "
[00:01:15]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142646923 341 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:01:15]               │
[00:01:15]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:15]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:15]               │ debg ... sleep(501) start
[00:01:16]               │ debg ... sleep(501) end
[00:01:16]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:16]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:16]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:19]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:08Z
[00:01:19]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:19]               │
[00:01:19]               │      "
[00:01:19]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:19]               │ debg isGlobalLoadingIndicatorVisible
[00:01:19]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:21]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:21]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:21]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:21]               │ debg clickKibanaIndexPatterns link
[00:01:21]               │ debg TestSubjects.click(indexPatterns)
[00:01:21]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:21]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:21]               │ debg isGlobalLoadingIndicatorVisible
[00:01:21]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:21]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:21]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:21]               │ debg Waiting up to 20000ms for index pattern info flyout...
[00:01:21]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:22]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:22]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:22]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:22]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:25]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:25]               │ debg isGlobalLoadingIndicatorVisible
[00:01:25]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:27]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:27]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:27]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:27]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:27]               │ debg isGlobalLoadingIndicatorVisible
[00:01:27]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:27]               │ debg setIndexPatternField(dlstest)
[00:01:27]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:27]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:29]               │ debg setIndexPatternField set to dlstest
[00:01:29]               │ debg ... sleep(2000) start
[00:01:31]               │ debg ... sleep(2000) end
[00:01:31]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:31]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:31]               │ debg ... sleep(2000) start
[00:01:33]               │ debg ... sleep(2000) end
[00:01:33]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:33]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:33]               │ debg isGlobalLoadingIndicatorVisible
[00:01:33]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:33]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:33]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:33]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/d_fn5UhpS8q8Yg8UNG-Ppg] update_mapping [_doc]
[00:01:34]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] [.kibana_2/d_fn5UhpS8q8Yg8UNG-Ppg] update_mapping [_doc]
[00:01:35]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/b418f5b0-c076-11ea-a8e8-f50fceabba28
[00:01:35]               │ debg --- retry.try error: Index pattern not created
[00:01:35]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/b418f5b0-c076-11ea-a8e8-f50fceabba28
[00:01:35]               │ debg --- retry.try failed again with the same message...
[00:01:36]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/b418f5b0-c076-11ea-a8e8-f50fceabba28
[00:01:36]               │ debg --- retry.try failed again with the same message...
[00:01:36]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/b418f5b0-c076-11ea-a8e8-f50fceabba28#/?_a=(tab:indexedFields)
[00:01:36]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/b418f5b0-c076-11ea-a8e8-f50fceabba28#/?_a=(tab:indexedFields)
[00:01:36]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[00:01:36]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:36]               │ debg navigate to: http://localhost:6151/app/management
[00:01:37]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142668225 341 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:01:37]               │
[00:01:37]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:37]               │ debg ... sleep(700) start
[00:01:37]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:28Z
[00:01:37]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:37]               │
[00:01:37]               │      "
[00:01:37]               │ debg ... sleep(700) end
[00:01:37]               │ debg returned from get, calling refresh
[00:01:38]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142668225 341 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:01:38]               │
[00:01:38]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:38]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:38]               │          appUrl = http://localhost:6151/app/management
[00:01:38]               │ debg TestSubjects.find(kibanaChrome)
[00:01:38]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:39]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:30Z
[00:01:39]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:39]               │
[00:01:39]               │      "
[00:01:39]               │ debg ... sleep(501) start
[00:01:40]               │ debg ... sleep(501) end
[00:01:40]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:40]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:42]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:43]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:43]               │ debg navigate to: http://localhost:6151/app/management
[00:01:43]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142674663 341 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:01:43]               │
[00:01:43]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:43]               │ debg ... sleep(700) start
[00:01:44]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:35Z
[00:01:44]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:44]               │
[00:01:44]               │      "
[00:01:44]               │ debg ... sleep(700) end
[00:01:44]               │ debg returned from get, calling refresh
[00:01:44]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142674663 341 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:01:44]               │
[00:01:44]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:44]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:44]               │          appUrl = http://localhost:6151/app/management
[00:01:44]               │ debg TestSubjects.find(kibanaChrome)
[00:01:44]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:46]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:36Z
[00:01:46]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:46]               │
[00:01:46]               │      "
[00:01:46]               │ debg ... sleep(501) start
[00:01:46]               │ debg ... sleep(501) end
[00:01:46]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:46]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:49]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:49]               │ debg TestSubjects.click(roles)
[00:01:49]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:49]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:49]             └-> should add new role myroleEast
[00:01:49]               └-> "before each" hook: global before each
[00:01:49]               │ debg TestSubjects.click(createRoleButton)
[00:01:49]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:49]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:49]               │ debg roleObj.indices[0].names = dlstest
[00:01:49]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:01:49]               │ debg TestSubjects.find(roleFormNameInput)
[00:01:49]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:01:50]               │ debg comboBox.setCustom, comboBoxSelector: indicesInput0, value: dlstest
[00:01:50]               │ debg TestSubjects.find(indicesInput0)
[00:01:50]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"]') with timeout=10000
[00:01:52]               │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:52]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:01:52]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:52]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:52]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:01:52]               │ debg TestSubjects.click(queryInput0)
[00:01:52]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:52]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:53]               │ debg TestSubjects.click(addSpacePrivilegeButton)
[00:01:53]               │ debg Find.clickByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:53]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:53]               │ debg TestSubjects.click(spaceSelectorComboBox)
[00:01:53]               │ debg Find.clickByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:53]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:53]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:01:54]               │ debg TestSubjects.click(basePrivilegeComboBox)
[00:01:54]               │ debg Find.clickByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:54]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:01:54]               │ debg TestSubjects.click(createSpacePrivilegeButton)
[00:01:54]               │ debg Find.clickByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:01:54]               │ debg Adding privilege read to role
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:01:54]               │ debg Find.byButtonText('read') with timeout=10000
[00:01:55]               │ debg ... sleep(250) start
[00:01:55]               │ debg ... sleep(250) end
[00:01:55]               │ debg Adding privilege view_index_metadata to role
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:01:55]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:01:56]               │ debg ... sleep(250) start
[00:01:56]               │ debg ... sleep(250) end
[00:01:56]               │ debg click save button
[00:01:56]               │ debg TestSubjects.click(roleFormSaveButton)
[00:01:56]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:01:56]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:01:56]               │ debg TestSubjects.exists(roleRow)
[00:01:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="roleRow"]') with timeout=120000
[00:01:56]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] added role [myroleEast]
[00:01:57]               │ debg TestSubjects.findAll(roleRow)
[00:01:57]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:01:58]               │ debg actualRoles = {"apm_system":{"rolename":"apm_system","reserved":true,"deprecated":false},"apm_user":{"rolename":"apm_user","reserved":true,"deprecated":false},"beats_admin":{"rolename":"beats_admin","reserved":true,"deprecated":false},"beats_system":{"rolename":"beats_system","reserved":true,"deprecated":false},"data_frame_transforms_admin":{"rolename":"data_frame_transforms_admin","reserved":true,"deprecated":true},"data_frame_transforms_user":{"rolename":"data_frame_transforms_user","reserved":true,"deprecated":true},"enrich_user":{"rolename":"enrich_user","reserved":true,"deprecated":false},"global_discover_read":{"rolename":"global_discover_read","reserved":false,"deprecated":false},"ingest_admin":{"rolename":"ingest_admin","reserved":true,"deprecated":false},"kibana_admin":{"rolename":"kibana_admin","reserved":true,"deprecated":false},"kibana_dashboard_only_user":{"rolename":"kibana_dashboard_only_user","reserved":true,"deprecated":true},"kibana_system":{"rolename":"kibana_system","reserved":true,"deprecated":false},"kibana_user":{"rolename":"kibana_user","reserved":true,"deprecated":true},"logstash_admin":{"rolename":"logstash_admin","reserved":true,"deprecated":false},"logstash_system":{"rolename":"logstash_system","reserved":true,"deprecated":false},"machine_learning_admin":{"rolename":"machine_learning_admin","reserved":true,"deprecated":false},"machine_learning_user":{"rolename":"machine_learning_user","reserved":true,"deprecated":false},"monitoring_user":{"rolename":"monitoring_user","reserved":true,"deprecated":false},"myroleEast":{"rolename":"myroleEast","reserved":false,"deprecated":false},"remote_monitoring_agent":{"rolename":"remote_monitoring_agent","reserved":true,"deprecated":false}}
[00:01:58]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:01:58]               └- ✓ pass  (8.8s) "security app dls should add new role myroleEast"
[00:01:58]             └-> should add new user userEAST 
[00:01:58]               └-> "before each" hook: global before each
[00:01:58]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:58]               │ debg navigate to: http://localhost:6151/app/management
[00:01:59]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142690067 341 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:01:59]               │
[00:01:59]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:59]               │ debg ... sleep(700) start
[00:01:59]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:50Z
[00:01:59]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:59]               │
[00:01:59]               │      "
[00:01:59]               │ debg ... sleep(700) end
[00:01:59]               │ debg returned from get, calling refresh
[00:01:59]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594142690067 341 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:01:59]               │
[00:01:59]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:59]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:59]               │          appUrl = http://localhost:6151/app/management
[00:01:59]               │ debg TestSubjects.find(kibanaChrome)
[00:01:59]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:01]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:24:52Z
[00:02:01]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:01]               │
[00:02:01]               │      "
[00:02:01]               │ debg ... sleep(501) start
[00:02:02]               │ debg ... sleep(501) end
[00:02:02]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:02]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:02]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:04]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:05]               │ debg TestSubjects.click(users)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.click(createUserButton)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:05]               │ debg username = userEast
[00:02:05]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:05]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:05]               │ debg TestSubjects.click(passwordInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:05]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:06]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.setValue(userFormEmailInput, dlstest@elastic.com)
[00:02:06]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:06]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:06]               │ debg TestSubjects.find(rolesDropdown)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.find(rolesDropdown)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:07]               │ debg After Add role: , userObj.roleName
[00:02:07]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.findAll(userRow)
[00:02:07]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:07]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-ubuntu-16-tests-xl-1594140167150812843] added user [userEast]
[00:02:09]               │ debg actualUsers = {"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"dlstest@elastic.com","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:09]               └- ✓ pass  (10.7s) "security app dls should add new user userEAST "
[00:02:09]             └-> user East should only see EAST doc
[00:02:09]               └-> "before each" hook: global before each
[00:02:09]               │ debg SecurityPage.forceLogout
[00:02:09]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:09]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:10]               │ debg Redirecting to /logout to force the logout
[00:02:10]               │ debg Waiting on the login form to appear
[00:02:10]               │ debg Waiting for Login Page to appear.
[00:02:10]               │ debg Waiting up to 100000ms for login page...
[00:02:10]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594142701381 341 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:02:10]               │
[00:02:10]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:10]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:11]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:01Z
[00:02:11]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:11]               │
[00:02:11]               │      "
[00:02:11]               │ debg browser[INFO] http://localhost:6151/login?_t=1594142701381 341 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:02:11]               │
[00:02:11]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:11]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:02Z
[00:02:11]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:11]               │
[00:02:11]               │      "
[00:02:11]               │ debg navigating to login url: http://localhost:6151/login
[00:02:11]               │ debg navigate to: http://localhost:6151/login
[00:02:12]               │ debg browser[INFO] http://localhost:6151/login?_t=1594142703346 341 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:02:12]               │
[00:02:12]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:12]               │ debg ... sleep(700) start
[00:02:12]               │ debg ... sleep(700) end
[00:02:12]               │ debg returned from get, calling refresh
[00:02:13]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:04Z
[00:02:13]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:13]               │
[00:02:13]               │      "
[00:02:13]               │ERROR browser[SEVERE] http://localhost:6151/34028/bundles/core/core.entry.js 75:261347 TypeError: Failed to fetch
[00:02:13]               │          at Fetch._callee3$ (http://localhost:6151/34028/bundles/core/core.entry.js:26:104500)
[00:02:13]               │          at l (http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:998712)
[00:02:13]               │          at Generator._invoke (http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:998465)
[00:02:13]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:999069)
[00:02:13]               │          at fetch_asyncGeneratorStep (http://localhost:6151/34028/bundles/core/core.entry.js:26:98881)
[00:02:13]               │          at _throw (http://localhost:6151/34028/bundles/core/core.entry.js:26:99289)
[00:02:13]               │ debg browser[INFO] http://localhost:6151/login?_t=1594142703346 341 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:02:13]               │
[00:02:13]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:14]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:05Z
[00:02:14]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:14]               │
[00:02:14]               │      "
[00:02:14]               │ debg currentUrl = http://localhost:6151/login
[00:02:14]               │          appUrl = http://localhost:6151/login
[00:02:14]               │ debg TestSubjects.find(kibanaChrome)
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:14]               │ debg ... sleep(501) start
[00:02:14]               │ debg ... sleep(501) end
[00:02:14]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:14]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:17]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:17]               │ debg Waiting for Login Form to appear.
[00:02:17]               │ debg Waiting up to 100000ms for login form...
[00:02:17]               │ debg TestSubjects.exists(loginForm)
[00:02:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:17]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:17]               │ debg TestSubjects.click(loginUsername)
[00:02:17]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:17]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:18]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:18]               │ debg TestSubjects.click(loginPassword)
[00:02:18]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:18]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:18]               │ debg TestSubjects.click(loginSubmit)
[00:02:18]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:18]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:18]               │ debg Waiting for login result, expected: undefined.
[00:02:18]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:18]               │ debg TestSubjects.exists(userMenuButton)
[00:02:18]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:20]               │ debg browser[INFO] http://localhost:6151/app/home 341 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:02:20]               │
[00:02:20]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:20]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:11Z
[00:02:20]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:20]               │
[00:02:20]               │      "
[00:02:20]               │ debg TestSubjects.exists(userMenu)
[00:02:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:23]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:02:23]               │ debg TestSubjects.click(userMenuButton)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:23]               │ debg Waiting up to 20000ms for user menu opened...
[00:02:23]               │ debg TestSubjects.exists(userMenu)
[00:02:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:23]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:02:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:02:23]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:02:23]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:02:24]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594142715314#/ 341 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:02:24]               │
[00:02:24]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:24]               │ debg ... sleep(700) start
[00:02:24]               │ debg ... sleep(700) end
[00:02:24]               │ debg returned from get, calling refresh
[00:02:25]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:16Z
[00:02:25]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:25]               │
[00:02:25]               │      "
[00:02:25]               │ERROR browser[SEVERE] http://localhost:6151/34028/bundles/core/core.entry.js 75:261347 TypeError: Failed to fetch
[00:02:25]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594142715314#/ 341 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:02:25]               │
[00:02:25]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:26]               │ debg browser[INFO] http://localhost:6151/34028/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-07T17:25:17Z
[00:02:26]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:26]               │
[00:02:26]               │      "
[00:02:26]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:02:26]               │          appUrl = http://localhost:6151/app/discover#/
[00:02:26]               │ debg TestSubjects.find(kibanaChrome)
[00:02:26]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:26]               │ debg ... sleep(501) start
[00:02:26]               │ debg ... sleep(501) end
[00:02:27]               │ debg in navigateTo url = http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:b418f5b0-c076-11ea-a8e8-f50fceabba28,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:27]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:02:27]               │ debg ... sleep(501) start
[00:02:28]               │ debg ... sleep(501) end
[00:02:28]               │ debg in navigateTo url = http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:b418f5b0-c076-11ea-a8e8-f50fceabba28,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:28]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:30]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:31]               │ debg isGlobalLoadingIndicatorVisible
[00:02:31]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:31]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:32]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:33]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:33]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:33]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:33]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:33]               │ debg --- retry.try error: expected '2' to equal '1'
[00:02:33]               │ debg isGlobalLoadingIndicatorVisible
[00:02:33]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:35]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:35]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:35]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:35]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:35]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:35]               │ debg --- retry.try failed again with the same message...
[00:02:36]               │ debg isGlobalLoadingIndicatorVisible
[00:02:36]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:36]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:38]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:38]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:38]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:38]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:38]               │ debg --- retry.try failed again with the same message...
[00:02:38]               │ debg isGlobalLoadingIndicatorVisible
[00:02:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:40]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:40]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:40]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:40]               │ debg --- retry.try failed again with the same message...
[00:02:41]               │ debg isGlobalLoadingIndicatorVisible
[00:02:41]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:41]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:43]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:43]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:43]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:43]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:43]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:43]               │ debg --- retry.try failed again with the same message...
[00:02:43]               │ debg isGlobalLoadingIndicatorVisible
[00:02:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:45]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:45]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:45]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:45]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:46]               │ debg --- retry.try failed again with the same message...
[00:02:46]               │ debg isGlobalLoadingIndicatorVisible
[00:02:46]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:48]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:48]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:48]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:48]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:48]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:48]               │ debg --- retry.try failed again with the same message...
[00:02:49]               │ debg isGlobalLoadingIndicatorVisible
[00:02:49]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:49]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:50]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:51]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:51]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:51]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:51]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:51]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:51]               │ debg --- retry.try failed again with the same message...
[00:02:51]               │ debg isGlobalLoadingIndicatorVisible
[00:02:51]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:51]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:53]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:53]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:53]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:53]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:53]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:53]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:53]               │ debg --- retry.try failed again with the same message...
[00:02:54]               │ debg isGlobalLoadingIndicatorVisible
[00:02:54]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:54]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:55]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:56]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:56]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:56]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:56]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:56]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:56]               │ debg --- retry.try failed again with the same message...
[00:02:56]               │ debg isGlobalLoadingIndicatorVisible
[00:02:56]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:58]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:58]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:58]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:58]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:58]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:58]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:58]               │ debg --- retry.try failed again with the same message...
[00:02:59]               │ debg isGlobalLoadingIndicatorVisible
[00:02:59]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:59]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:00]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:01]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:01]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:01]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:01]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:01]               │ debg --- retry.try failed again with the same message...
[00:03:01]               │ debg isGlobalLoadingIndicatorVisible
[00:03:01]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:01]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:03]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:03]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:03]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:03]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:03]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:03]               │ debg --- retry.try failed again with the same message...
[00:03:04]               │ debg isGlobalLoadingIndicatorVisible
[00:03:04]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:04]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:06]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:06]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:06]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:06]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:06]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:06]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:06]               │ debg --- retry.try failed again with the same message...
[00:03:07]               │ debg isGlobalLoadingIndicatorVisible
[00:03:07]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:07]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:08]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:09]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:09]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:09]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:09]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:09]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:09]               │ debg --- retry.try failed again with the same message...
[00:03:09]               │ debg isGlobalLoadingIndicatorVisible
[00:03:09]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:09]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:11]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:11]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:11]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:11]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:11]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:11]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:11]               │ debg --- retry.try failed again with the same message...
[00:03:12]               │ debg isGlobalLoadingIndicatorVisible
[00:03:12]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:12]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:13]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:14]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:14]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:14]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:14]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:14]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:14]               │ debg --- retry.try failed again with the same message...
[00:03:14]               │ debg isGlobalLoadingIndicatorVisible
[00:03:14]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:16]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:16]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:16]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:16]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:16]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:16]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:16]               │ debg --- retry.try failed again with the same message...
[00:03:17]               │ debg isGlobalLoadingIndicatorVisible
[00:03:17]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:18]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:19]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:19]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:19]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:19]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:19]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:19]               │ debg --- retry.try failed again with the same message...
[00:03:19]               │ debg isGlobalLoadingIndicatorVisible
[00:03:19]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:21]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:22]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:22]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:22]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:22]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:22]               │ debg --- retry.try failed again with the same message...
[00:03:22]               │ debg isGlobalLoadingIndicatorVisible
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:24]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:24]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:24]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:24]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:24]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:24]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:24]               │ debg --- retry.try failed again with the same message...
[00:03:25]               │ debg isGlobalLoadingIndicatorVisible
[00:03:25]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:26]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:27]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:27]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:27]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:27]               │ debg --- retry.try failed again with the same message...
[00:03:27]               │ debg isGlobalLoadingIndicatorVisible
[00:03:27]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:29]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:29]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:29]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:29]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:29]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:29]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:29]               │ debg --- retry.try failed again with the same message...
[00:03:30]               │ debg isGlobalLoadingIndicatorVisible
[00:03:30]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:31]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:32]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:32]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:32]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:32]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:32]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:32]               │ debg --- retry.try failed again with the same message...
[00:03:32]               │ debg isGlobalLoadingIndicatorVisible
[00:03:32]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:34]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:34]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:34]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:34]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:34]               │ debg --- retry.try failed again with the same message...
[00:03:35]               │ debg isGlobalLoadingIndicatorVisible
[00:03:35]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:37]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:37]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:37]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:37]               │ debg --- retry.try failed again with the same message...
[00:03:38]               │ debg isGlobalLoadingIndicatorVisible
[00:03:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:39]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:40]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:40]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:40]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:40]               │ debg --- retry.try failed again with the same message...
[00:03:40]               │ debg isGlobalLoadingIndicatorVisible
[00:03:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:42]               │ debg --- retry.try failed again with the same message...
[00:03:43]               │ debg isGlobalLoadingIndicatorVisible
[00:03:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:45]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:45]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:45]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:45]               │ debg --- retry.try failed again with the same message...
[00:03:45]               │ debg isGlobalLoadingIndicatorVisible
[00:03:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:47]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:47]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:47]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:47]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:47]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:47]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:47]               │ debg --- retry.try failed again with the same message...
[00:03:48]               │ debg isGlobalLoadingIndicatorVisible
[00:03:48]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:48]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:49]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:50]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:50]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:50]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:50]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:50]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:50]               │ debg --- retry.try failed again with the same message...
[00:03:51]               │ debg isGlobalLoadingIndicatorVisible
[00:03:51]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:51]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:52]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:53]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:53]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:53]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:53]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:53]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:53]               │ debg --- retry.try failed again with the same message...
[00:03:53]               │ debg isGlobalLoadingIndicatorVisible
[00:03:53]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:55]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:55]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:55]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:55]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:55]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:55]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:55]               │ debg --- retry.try failed again with the same message...
[00:03:56]               │ debg isGlobalLoadingIndicatorVisible
[00:03:56]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:56]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:56]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:57]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:57]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:57]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:57]               │ debg --- retry.try failed again with the same message...
[00:03:57]               │ debg isGlobalLoadingIndicatorVisible
[00:03:57]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:57]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:59]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:00]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:00]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:00]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:00]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:00]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:00]               │ debg --- retry.try failed again with the same message...
[00:04:00]               │ debg isGlobalLoadingIndicatorVisible
[00:04:00]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:00]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:02]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:02]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:02]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:02]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:02]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:02]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:02]               │ debg --- retry.try failed again with the same message...
[00:04:03]               │ debg isGlobalLoadingIndicatorVisible
[00:04:03]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:04]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:05]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:05]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:05]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:05]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:05]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:05]               │ debg --- retry.try failed again with the same message...
[00:04:05]               │ debg isGlobalLoadingIndicatorVisible
[00:04:05]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:05]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:07]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:07]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:07]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:07]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:07]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:07]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:07]               │ debg --- retry.try failed again with the same message...
[00:04:08]               │ debg isGlobalLoadingIndicatorVisible
[00:04:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:08]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:09]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:10]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:10]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:10]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:10]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:10]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:10]               │ debg --- retry.try failed again with the same message...
[00:04:10]               │ debg isGlobalLoadingIndicatorVisible
[00:04:10]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:12]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:12]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:12]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:12]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:12]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:12]               │ debg --- retry.try failed again with the same message...
[00:04:13]               │ debg isGlobalLoadingIndicatorVisible
[00:04:13]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:13]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:15]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:15]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:15]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:15]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:15]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:15]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:15]               │ debg --- retry.try failed again with the same message...
[00:04:16]               │ debg isGlobalLoadingIndicatorVisible
[00:04:16]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:16]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:17]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:18]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:18]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:18]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:18]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:18]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:18]               │ debg --- retry.try failed again with the same message...
[00:04:18]               │ debg isGlobalLoadingIndicatorVisible
[00:04:18]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:18]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:20]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:20]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:20]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:20]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:20]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:20]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:20]               │ debg --- retry.try failed again with the same message...
[00:04:21]               │ debg isGlobalLoadingIndicatorVisible
[00:04:21]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:22]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:23]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:23]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:23]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:23]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:23]               │ debg --- retry.try failed again with the same message...
[00:04:23]               │ debg isGlobalLoadingIndicatorVisible
[00:04:23]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:25]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:25]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:25]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:25]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:25]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:25]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:25]               │ debg --- retry.try failed again with the same message...
[00:04:26]               │ debg isGlobalLoadingIndicatorVisible
[00:04:26]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:27]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:28]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:28]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:28]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:28]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:28]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:28]               │ debg --- retry.try failed again with the same message...
[00:04:28]               │ debg isGlobalLoadingIndicatorVisible
[00:04:28]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:30]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:31]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:31]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:31]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:31]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:31]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:31]               │ debg --- retry.try failed again with the same message...
[00:04:31]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/security app dls user East should only see EAST doc.png"
[00:04:31]               │ info Current URL is: http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:b418f5b0-c076-11ea-a8e8-f50fceabba28,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:04:31]               │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/security app dls user East should only see EAST doc.html
[00:04:31]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:04:31]               │

Stack Trace

Error: retry.try timeout: Error: expected '2' to equal '1'
    at Assertion.assert (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:69:22)
    at retry.try (test/functional/apps/security/doc_level_security_roles.js:76:29)
    at process._tickCallback (internal/process/next_tick.js:68:7)
    at onFailure (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:28:9)
    at retryForSuccess (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:68:13)

and 5 more failures, only showing the first 3.

Build metrics

✅ unchanged

History

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:Index Management Index and index templates UI release_note:skip Skip the PR/issue when compiling release notes Team:Fleet Team label for Observability Data Collection Fleet team Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.9.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants