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

[ILM] Data tier notices should reflect tier preferences #78398

Merged

Conversation

jloleysens
Copy link
Contributor

Summary

With the introduction of tier preferences (elastic/elasticsearch#62589) for phases in ILM. The UI should be updated to show more appropriate notices to users.

Tier preferences are a way for ILM, when migrating data, to fallback to a different tier. This is a convenience mechanism to prevent an ILM policy from getting stuck in a phase and never completing. The current UI notifies the user of when they are creating a policy that will get stuck, but does not take into consideration this new fallback - which this contribution adds.

The current UI will still warn a user when there is nowhere to assign data, but this should be very rare.

How to test

  1. Start Kibana on basic license with yarn es snapshot -E node.roles=data_hot,master (cluster with only data hot node)
  2. Navigate to ILM
  3. Create a new policy.
  4. You should see the notifications per the screenshots for both warm and cold phases

Screenshots

In this case there is only a single data_hot node so this phase falls back all the way to the hot tier (as should warm). If there were a warm tier, data allocation would fallback to the warm tier.

Screenshot 2020-09-24 at 12 20 03

Checklist

Delete any items that are not applicable to this PR.

@jloleysens jloleysens added Feature:ILM v8.0.0 Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more release_note:skip Skip the PR/issue when compiling release notes v7.10.0 labels Sep 24, 2020
@jloleysens jloleysens requested a review from a team as a code owner September 24, 2020 10:26
@elasticmachine
Copy link
Contributor

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

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream
@elasticmachine merge upstream

Copy link
Contributor

@debadair debadair left a comment

Choose a reason for hiding this comment

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

Made a few minor suggestions. Also noticed a few other things...

The Cold phase description feels like it needs to be pared down & the "because" clause doesn't quite make sense. Maybe:

In the cold phase, data is queried less frequently and query speed is less important. You can store cold data on less expensive hardware and reduce the number of replicas.

Data is repeated in the Data allocation description & doesn't need to be. Less-frequent should be hyphenated:

Move data to nodes optimized for less-frequent, read-only access.

Freeze description is missing end punctuation & I'd reword it to focus on the action:

Make the index read-only and minimize its memory footprint.

body: (nodeRole: NodeDataRole) =>
i18n.translate('xpack.indexLifecycleMgmt.warmPhase.dataTier.defaultAllocationNotice.warm', {
defaultMessage:
'There are no nodes in the warm tier. Data in this phase will be allocated to the {tier}.',
Copy link
Contributor

Choose a reason for hiding this comment

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

I wouldn't repeat what the heading says.

Suggested change
'There are no nodes in the warm tier. Data in this phase will be allocated to the {tier}.',
'Data in the warm phase will be allocated to the {tier} instead.',

body: (nodeRole: NodeDataRole) =>
i18n.translate('xpack.indexLifecycleMgmt.warmPhase.dataTier.defaultAllocationNotice.cold', {
defaultMessage:
'There are no nodes in the cold tier. Data in this phase will be allocated to the {tier}.',
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
'There are no nodes in the cold tier. Data in this phase will be allocated to the {tier}.',
'Data in the cold phase will be allocated to the {tier} instead.',

'xpack.indexLifecycleMgmt.warmPhase.dataTier.defaultAllocationNotAvailableBody',
{
defaultMessage:
'Assign at least one node to the warm or hot tier to use role-based allocation. The policy will fail to complete allocation if there are no warm nodes.',
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
'Assign at least one node to the warm or hot tier to use role-based allocation. The policy will fail to complete allocation if there are no warm nodes.',
'Assign at least one node to the warm or hot tier to use role-based allocation. The policy will fail to complete allocation if there are no available nodes.',

'xpack.indexLifecycleMgmt.coldPhase.dataTier.defaultAllocationNotAvailableBody',
{
defaultMessage:
'Assign at least one node to the cold, warm or hot tier to use role-based allocation. The policy will fail to complete allocation if there are no cold nodes.',
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
'Assign at least one node to the cold, warm or hot tier to use role-based allocation. The policy will fail to complete allocation if there are no cold nodes.',
'Assign at least one node to the cold, warm, or hot tier to use role-based allocation. The policy will fail to complete allocation if there are no available nodes.',

@cjcenizal
Copy link
Contributor

@jloleysens I'm having trouble testing this locally. When I start ES via yarn es snapshot -E node.roles=data_hot,master, I get this error that looks related to security:

   │ info [r.suppressed] [CJs-MacBook-Pro.attlocal.net] path: /_security/user/beats_system/_password, params: {refresh=wait_for, username=beats_system}
   │      org.elasticsearch.action.UnavailableShardsException: [.security-7][0] [1] shardIt, [0] active : Timeout waiting for [1m], request: indices:data/write/update

Did you run into this?

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

@jloleysens
Copy link
Contributor Author

Did you run into this?

@cjcenizal I did not run into this... I can't recall seeing that particular error before. Does this happen with a fresh ES snapshot running without pre-existing data?

@jloleysens
Copy link
Contributor Author

@debadair Thanks for the copy review, I implemented your feedback except for the change to the freeze description. I just wanted to confirm, regarding freeze description, that you were suggesting changing:

x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/phases/cold_phase.tsx

A frozen index has little overhead on the cluster and is blocked for write operations. You can search a frozen index, but expect queries to be slower.

To

Make the index read-only and minimize its memory footprint.

I also spoke with @andreidan and he suggested that the UI should not speak in too certain terms about where data will be allocated because there are also index level settings that can affect allocation. What do you think about something like:

This policy will move data in the warm phase to {tier} tier nodes instead.

That way we reference the policy in our notification?

@cjcenizal
Copy link
Contributor

@jloleysens I chatted with Lee and he pointed out that we need to specify data_content now, too:

yarn es snapshot --license=trial -E node.roles=data_hot,master,data_content

Otherwise the security indices' shards won't get allocated anywhere and the builtin users can't be created.

Copy link
Contributor

@cjcenizal cjcenizal left a comment

Choose a reason for hiding this comment

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

Tested locally, code LGTM! Had a few minor readability suggestions. Can we add a section with instructions for manually testing this to the README? Just something simple, mentioning that you can try the different notice states by specifying different node roles, e.g.

yarn es snapshot --license=trial -E node.roles=data_hot,master,data_content

/**
* These roles reflect how nodes are stratified into different data tiers. The "data" role
* is a catch-all that can be used to store data in any phase.
*/
Copy link
Contributor

Choose a reason for hiding this comment

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

Love these comments!

* If no nodes can be identified for allocation (very special case) then
* we return "none".
*/
export const determineAllocationNodeRole = (
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: a name that mentions "phase" would communicate the interaction between phase and node role to me, e.g. getAvailableNodeRoleForPhase.

return phaseToNodePreferenceMap[phase][0];
}

const preferredNodeRoles = phaseToNodePreferenceMap[phase];
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: Since we refer to phaseToNodePreferenceMap[phase] on line 32, maybe we can define this variable on line 29 and refer to it on line 32?

import { AllocationNodeRole } from '../../../../lib';

const i18nTextsNodeRoleToDataTier: Record<NodeDataRole, string> = {
data_hot: i18n.translate('xpack.indexLifecycleMgmt.common.dataTier.hot', {
Copy link
Contributor

@cjcenizal cjcenizal Sep 28, 2020

Choose a reason for hiding this comment

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

We should follow the i18n naming guidelines throughout this file: https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/GUIDELINE.md

const hasNodeAttrs = Boolean(Object.keys(nodesData.nodesByAttributes ?? {}).length);

const renderDefaultAllocationNotice = () => {
Copy link
Contributor

Choose a reason for hiding this comment

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

WDYT of organizing the early exits first, to help the reader scan and understand the states that don't require a notice? Something like this maybe:

const renderDefaultAllocationNotice = () => {
  if (phaseData.dataTierAllocationType !== 'default') {
    return null;
  }

  const allocationNodeRole = determineAllocationNodeRole(phase, nodesData.nodesByRoles);
  const isFirstPreferredNodeRole = allocationNodeRole !== 'none' && isNodeRoleFirstPreference(phase, allocationNodeRole);
  
  if (isFirstPreferredNodeRole) {
    return null;
  }

  return <DefaultAllocationNotice phase={phase} targetNodeRole={allocationNodeRole} />;
};

return null;
};

const renderNodeAttributesWarning = () => {
Copy link
Contributor

Choose a reason for hiding this comment

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

We could do something similar here:

const renderNodeAttributesWarning = () => {
  if (phaseData.dataTierAllocationType !== 'custom') {
    return null;
  }
  if (hasNodeAttrs) {
    return null;
  }
  return <NoNodeAttributesWarning phase={phase} />;
};

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

@jloleysens
Copy link
Contributor Author

I chatted with Lee and he pointed out that we need to specify data_content now, too...

Thanks for tracking down a solution and sharing it!

@debadair
Copy link
Contributor

@jloleysens

Yes, that is what I was suggesting WRT to freeze. I like referencing the policy in the notification, I think that works well.

Copy link
Contributor

@debadair debadair left a comment

Choose a reason for hiding this comment

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

LGTM

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

@kibanamachine
Copy link
Contributor

💛 Build succeeded, but was flaky


Test Failures

Chrome X-Pack UI Functional Tests.x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/alerts·ts.Actions and Triggers app alerts should delete all selection

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: Actions and Triggers app
[00:00:00]           └-> "before all" hook
[00:01:16]           └-: alerts
[00:01:16]             └-> "before all" hook
[00:01:16]             └-> "before all" hook
[00:01:16]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:16]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:17]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459006542 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:17]               │
[00:01:17]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:17]               │ debg ... sleep(700) start
[00:01:17]               │ debg ... sleep(700) end
[00:01:17]               │ debg returned from get, calling refresh
[00:01:19]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:01:19]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:01:19]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:01:19]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:01:19]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:01:19]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:01:19]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:01:19]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459006542 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:19]               │
[00:01:19]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:19]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:19]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:19]               │ debg TestSubjects.find(kibanaChrome)
[00:01:19]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:19]               │ debg ... sleep(501) start
[00:01:20]               │ debg ... sleep(501) end
[00:01:20]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:01:20]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:22]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:23]               │ debg TestSubjects.click(alertsTab)
[00:01:23]               │ debg Find.clickByCssSelector('[data-test-subj="alertsTab"]') with timeout=10000
[00:01:23]               │ debg Find.findByCssSelector('[data-test-subj="alertsTab"]') with timeout=10000
[00:01:23]             └-> should create an alert
[00:01:23]               └-> "before each" hook: global before each
[00:01:23]               │ debg Find.findByCssSelector('[data-test-subj="createAlertButton"],[data-test-subj="createFirstAlertButton"]') with timeout=10000
[00:01:24]               │ debg TestSubjects.setValue(alertNameInput, ce87ae27e1f14cc48ff64e2cf5eab5cd)
[00:01:24]               │ debg TestSubjects.click(alertNameInput)
[00:01:24]               │ debg Find.clickByCssSelector('[data-test-subj="alertNameInput"]') with timeout=10000
[00:01:24]               │ debg Find.findByCssSelector('[data-test-subj="alertNameInput"]') with timeout=10000
[00:01:24]               │ debg TestSubjects.click(.index-threshold-SelectOption)
[00:01:24]               │ debg Find.clickByCssSelector('[data-test-subj=".index-threshold-SelectOption"]') with timeout=10000
[00:01:24]               │ debg Find.findByCssSelector('[data-test-subj=".index-threshold-SelectOption"]') with timeout=10000
[00:01:25]               │ debg TestSubjects.click(selectIndexExpression)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="selectIndexExpression"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="selectIndexExpression"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('#indexSelectSearchBox') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('.euiFilterSelectItem') with timeout=10000
[00:01:25]               │ debg TestSubjects.click(thresholdAlertTimeFieldSelect)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="thresholdAlertTimeFieldSelect"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="thresholdAlertTimeFieldSelect"]') with timeout=10000
[00:01:25]               │ debg Find.allByCssSelector('#thresholdTimeField option') with timeout=10000
[00:01:25]               │ debg TestSubjects.click(closePopover)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="closePopover"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="closePopover"]') with timeout=10000
[00:01:26]               │ debg TestSubjects.find(alertNameInput)
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="alertNameInput"]') with timeout=10000
[00:01:26]               │ debg TestSubjects.click(.slack-ActionTypeSelectOption)
[00:01:26]               │ debg Find.clickByCssSelector('[data-test-subj=".slack-ActionTypeSelectOption"]') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj=".slack-ActionTypeSelectOption"]') with timeout=10000
[00:01:26]               │ debg TestSubjects.click(addNewActionConnectorButton-.slack)
[00:01:26]               │ debg Find.clickByCssSelector('[data-test-subj="addNewActionConnectorButton-.slack"]') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="addNewActionConnectorButton-.slack"]') with timeout=10000
[00:01:26]               │ debg TestSubjects.setValue(nameInput, fedf30fe734143e1a1b522082cd21258)
[00:01:26]               │ debg TestSubjects.click(nameInput)
[00:01:26]               │ debg Find.clickByCssSelector('[data-test-subj="nameInput"]') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="nameInput"]') with timeout=10000
[00:01:26]               │ debg TestSubjects.setValue(slackWebhookUrlInput, https://test)
[00:01:26]               │ debg TestSubjects.click(slackWebhookUrlInput)
[00:01:26]               │ debg Find.clickByCssSelector('[data-test-subj="slackWebhookUrlInput"]') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="slackWebhookUrlInput"]') with timeout=10000
[00:01:26]               │ debg Find.clickByCssSelector('[data-test-subj="saveActionButtonModal"]:not(disabled)') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="saveActionButtonModal"]:not(disabled)') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:01:27]               │ debg Find.findByCssSelector('.euiToastHeader__title') with timeout=10000
[00:01:27]               │ debg Find.clickByCssSelector('.euiToast__closeButton') with timeout=10000
[00:01:27]               │ debg Find.findByCssSelector('.euiToast__closeButton') with timeout=10000
[00:01:27]               │ debg TestSubjects.setValue(messageTextArea, test message )
[00:01:27]               │ debg TestSubjects.click(messageTextArea)
[00:01:27]               │ debg Find.clickByCssSelector('[data-test-subj="messageTextArea"]') with timeout=10000
[00:01:27]               │ debg Find.findByCssSelector('[data-test-subj="messageTextArea"]') with timeout=10000
[00:01:28]               │ debg TestSubjects.click(messageAddVariableButton)
[00:01:28]               │ debg Find.clickByCssSelector('[data-test-subj="messageAddVariableButton"]') with timeout=10000
[00:01:28]               │ debg Find.findByCssSelector('[data-test-subj="messageAddVariableButton"]') with timeout=10000
[00:01:28]               │ debg TestSubjects.click(variableMenuButton-0)
[00:01:28]               │ debg Find.clickByCssSelector('[data-test-subj="variableMenuButton-0"]') with timeout=10000
[00:01:28]               │ debg Find.findByCssSelector('[data-test-subj="variableMenuButton-0"]') with timeout=10000
[00:01:28]               │ debg Find.findByCssSelector('[data-test-subj="messageTextArea"]') with timeout=10000
[00:01:29]               │ debg TestSubjects.click(messageAddVariableButton)
[00:01:29]               │ debg Find.clickByCssSelector('[data-test-subj="messageAddVariableButton"]') with timeout=10000
[00:01:29]               │ debg Find.findByCssSelector('[data-test-subj="messageAddVariableButton"]') with timeout=10000
[00:01:29]               │ debg TestSubjects.click(variableMenuButton-1)
[00:01:29]               │ debg Find.clickByCssSelector('[data-test-subj="variableMenuButton-1"]') with timeout=10000
[00:01:29]               │ debg Find.findByCssSelector('[data-test-subj="variableMenuButton-1"]') with timeout=10000
[00:01:30]               │ debg TestSubjects.click(saveAlertButton)
[00:01:30]               │ debg Find.clickByCssSelector('[data-test-subj="saveAlertButton"]') with timeout=10000
[00:01:30]               │ debg Find.findByCssSelector('[data-test-subj="saveAlertButton"]') with timeout=10000
[00:01:30]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:01:32]               │ debg Find.findByCssSelector('.euiToastHeader__title') with timeout=10000
[00:01:32]               │ debg Find.clickByCssSelector('.euiToast__closeButton') with timeout=10000
[00:01:32]               │ debg Find.findByCssSelector('.euiToast__closeButton') with timeout=10000
[00:01:32]               │ debg TestSubjects.find(alertSearchField)
[00:01:32]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:01:33]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:01:33]               │ debg Find.findByCssSelector('[data-test-subj="alertsList"] table') with timeout=10000
[00:01:33]               └- ✓ pass  (9.6s) "Actions and Triggers app alerts should create an alert"
[00:01:33]             └-> should display alerts in alphabetical order
[00:01:33]               └-> "before each" hook: global before each
[00:01:39]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:39]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:39]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459028949 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:39]               │
[00:01:39]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:39]               │ debg ... sleep(700) start
[00:01:40]               │ debg ... sleep(700) end
[00:01:40]               │ debg returned from get, calling refresh
[00:01:40]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:01:40]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:01:40]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:01:40]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:01:40]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:01:40]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:01:40]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:01:40]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459028949 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:40]               │
[00:01:40]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:41]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:41]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:41]               │ debg TestSubjects.find(kibanaChrome)
[00:01:41]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:41]               │ debg ... sleep(501) start
[00:01:42]               │ debg ... sleep(501) end
[00:01:42]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:01:42]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:42]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:44]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:45]               │ debg TestSubjects.find(alertSearchField)
[00:01:45]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:01:45]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:01:46]               │ debg Find.findByCssSelector('[data-test-subj="alertsList"] table') with timeout=10000
[00:01:46]               └- ✓ pass  (12.9s) "Actions and Triggers app alerts should display alerts in alphabetical order"
[00:01:46]             └-> should search for alert
[00:01:46]               └-> "before each" hook: global before each
[00:01:48]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:48]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:48]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459037975 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:48]               │
[00:01:48]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:48]               │ debg ... sleep(700) start
[00:01:49]               │ debg ... sleep(700) end
[00:01:49]               │ debg returned from get, calling refresh
[00:01:49]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:01:49]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:01:49]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:01:49]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:01:49]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:01:49]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:01:49]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:01:49]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459037975 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:49]               │
[00:01:49]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:49]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:49]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:49]               │ debg TestSubjects.find(kibanaChrome)
[00:01:49]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:51]               │ debg ... sleep(501) start
[00:01:51]               │ debg ... sleep(501) end
[00:01:51]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:01:51]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:51]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:54]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:54]               │ debg TestSubjects.find(alertSearchField)
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:01:55]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="alertsList"] table') with timeout=10000
[00:01:55]               └- ✓ pass  (9.3s) "Actions and Triggers app alerts should search for alert"
[00:01:55]             └-> should search for tags
[00:01:55]               └-> "before each" hook: global before each
[00:01:57]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:57]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:57]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459047006 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:57]               │
[00:01:57]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:57]               │ debg ... sleep(700) start
[00:01:58]               │ debg ... sleep(700) end
[00:01:58]               │ debg returned from get, calling refresh
[00:01:58]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:01:58]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:01:58]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:01:58]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:01:58]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:01:58]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:01:58]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:01:58]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459047006 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:58]               │
[00:01:58]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:58]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:58]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:01:58]               │ debg TestSubjects.find(kibanaChrome)
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:00]               │ debg ... sleep(501) start
[00:02:00]               │ debg ... sleep(501) end
[00:02:00]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:02:00]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:00]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:03]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:03]               │ debg TestSubjects.find(alertSearchField)
[00:02:03]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:04]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:04]               │ debg Find.findByCssSelector('[data-test-subj="alertsList"] table') with timeout=10000
[00:02:04]               └- ✓ pass  (9.0s) "Actions and Triggers app alerts should search for tags"
[00:02:04]             └-> should display an empty list when search removes all alerts
[00:02:04]               └-> "before each" hook: global before each
[00:02:04]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:04]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:04]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459054051 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:04]               │
[00:02:04]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:04]               │ debg ... sleep(700) start
[00:02:05]               │ debg ... sleep(700) end
[00:02:05]               │ debg returned from get, calling refresh
[00:02:06]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:02:06]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:02:06]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:02:06]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:02:06]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:02:06]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:02:06]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:02:06]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459054051 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:06]               │
[00:02:06]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:06]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:06]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:06]               │ debg TestSubjects.find(kibanaChrome)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:07]               │ debg ... sleep(501) start
[00:02:07]               │ debg ... sleep(501) end
[00:02:07]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:02:07]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:07]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:10]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:10]               │ debg TestSubjects.find(alertSearchField)
[00:02:10]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="alertsList"] table') with timeout=10000
[00:02:11]               └- ✓ pass  (7.3s) "Actions and Triggers app alerts should display an empty list when search removes all alerts"
[00:02:11]             └-> should disable single alert
[00:02:11]               └-> "before each" hook: global before each
[00:02:14]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:14]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:14]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459064036 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:14]               │
[00:02:14]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:14]               │ debg ... sleep(700) start
[00:02:15]               │ debg ... sleep(700) end
[00:02:15]               │ debg returned from get, calling refresh
[00:02:16]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459064036 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:16]               │
[00:02:16]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:16]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:16]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:16]               │ debg TestSubjects.find(kibanaChrome)
[00:02:16]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:17]               │ debg ... sleep(501) start
[00:02:17]               │ debg ... sleep(501) end
[00:02:17]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:02:17]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:20]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:20]               │ debg TestSubjects.find(alertSearchField)
[00:02:20]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:21]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:21]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.find(disableSwitch)
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.find(disableSwitch)
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:21]               │ debg --- retry.try error: expected 'false' to sort of not equal 'false'
[00:02:22]               │ debg TestSubjects.find(disableSwitch)
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:22]               │ debg --- retry.try failed again with the same message...
[00:02:22]               │ debg TestSubjects.find(disableSwitch)
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:23]               │ debg --- retry.try failed again with the same message...
[00:02:23]               │ debg TestSubjects.find(disableSwitch)
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.find(alertSearchField)
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:23]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:24]               │ debg TestSubjects.find(disableSwitch)
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:24]               └- ✓ pass  (12.3s) "Actions and Triggers app alerts should disable single alert"
[00:02:24]             └-> should re-enable single alert
[00:02:24]               └-> "before each" hook: global before each
[00:02:26]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:26]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:26]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459076081 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:26]               │
[00:02:26]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:26]               │ debg ... sleep(700) start
[00:02:27]               │ debg ... sleep(700) end
[00:02:27]               │ debg returned from get, calling refresh
[00:02:28]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459076081 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:28]               │
[00:02:28]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:28]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:28]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:28]               │ debg TestSubjects.find(kibanaChrome)
[00:02:28]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:29]               │ debg ... sleep(501) start
[00:02:30]               │ debg ... sleep(501) end
[00:02:30]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:02:30]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:32]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:33]               │ debg TestSubjects.find(alertSearchField)
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:33]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:33]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:33]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:33]               │ debg TestSubjects.find(disableSwitch)
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:34]               │ debg TestSubjects.find(disableSwitch)
[00:02:34]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:34]               │ debg --- retry.try error: expected 'false' to sort of not equal 'false'
[00:02:34]               │ debg TestSubjects.find(disableSwitch)
[00:02:34]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:34]               │ debg --- retry.try failed again with the same message...
[00:02:35]               │ debg TestSubjects.find(disableSwitch)
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:35]               │ debg --- retry.try failed again with the same message...
[00:02:35]               │ debg TestSubjects.find(disableSwitch)
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:35]               │ debg TestSubjects.find(alertSearchField)
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:36]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:36]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:36]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:36]               │ debg TestSubjects.find(disableSwitch)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:36]               │ debg TestSubjects.find(disableSwitch)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:36]               │ debg --- retry.try error: expected 'true' to sort of not equal 'true'
[00:02:36]               │ debg TestSubjects.find(disableSwitch)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:36]               │ debg --- retry.try failed again with the same message...
[00:02:37]               │ debg TestSubjects.find(disableSwitch)
[00:02:37]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:37]               │ debg --- retry.try failed again with the same message...
[00:02:37]               │ debg TestSubjects.find(disableSwitch)
[00:02:37]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:37]               │ debg --- retry.try failed again with the same message...
[00:02:38]               │ debg TestSubjects.find(disableSwitch)
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:38]               │ debg --- retry.try failed again with the same message...
[00:02:38]               │ debg TestSubjects.find(disableSwitch)
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:38]               │ debg TestSubjects.find(alertSearchField)
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:39]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.find(disableSwitch)
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:02:39]               └- ✓ pass  (15.2s) "Actions and Triggers app alerts should re-enable single alert"
[00:02:39]             └-> should mute single alert
[00:02:39]               └-> "before each" hook: global before each
[00:02:41]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:41]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:41]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459091147 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:41]               │
[00:02:41]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:41]               │ debg ... sleep(700) start
[00:02:42]               │ debg ... sleep(700) end
[00:02:42]               │ debg returned from get, calling refresh
[00:02:43]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:02:43]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:02:43]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:02:43]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:02:43]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:02:43]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:02:43]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:02:43]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459091147 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:43]               │
[00:02:43]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:43]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:43]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:43]               │ debg TestSubjects.find(kibanaChrome)
[00:02:43]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:44]               │ debg ... sleep(501) start
[00:02:44]               │ debg ... sleep(501) end
[00:02:44]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:02:44]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:44]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:47]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:47]               │ debg TestSubjects.find(alertSearchField)
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:48]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:48]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:48]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:48]               │ debg TestSubjects.find(muteSwitch)
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:48]               │ debg TestSubjects.find(muteSwitch)
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:48]               │ debg --- retry.try error: expected 'false' to sort of not equal 'false'
[00:02:49]               │ debg TestSubjects.find(muteSwitch)
[00:02:49]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:49]               │ debg --- retry.try failed again with the same message...
[00:02:49]               │ debg TestSubjects.find(muteSwitch)
[00:02:49]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:49]               │ debg TestSubjects.find(alertSearchField)
[00:02:49]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:50]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:50]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:50]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:50]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:50]               │ debg TestSubjects.find(muteSwitch)
[00:02:50]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:50]               └- ✓ pass  (11.1s) "Actions and Triggers app alerts should mute single alert"
[00:02:50]             └-> should unmute single alert
[00:02:50]               └-> "before each" hook: global before each
[00:02:52]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:52]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:52]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459102188 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:52]               │
[00:02:52]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:52]               │ debg ... sleep(700) start
[00:02:53]               │ debg ... sleep(700) end
[00:02:53]               │ debg returned from get, calling refresh
[00:02:54]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459102188 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:54]               │
[00:02:54]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:54]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:54]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:02:54]               │ debg TestSubjects.find(kibanaChrome)
[00:02:54]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:55]               │ debg ... sleep(501) start
[00:02:56]               │ debg ... sleep(501) end
[00:02:56]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:02:56]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:58]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:59]               │ debg TestSubjects.find(alertSearchField)
[00:02:59]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:02:59]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:02:59]               │ debg TestSubjects.click(collapsedItemActions)
[00:02:59]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:59]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:02:59]               │ debg TestSubjects.find(muteSwitch)
[00:02:59]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:59]               │ debg TestSubjects.find(muteSwitch)
[00:02:59]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:02:59]               │ debg --- retry.try error: expected 'false' to sort of not equal 'false'
[00:03:00]               │ debg TestSubjects.find(muteSwitch)
[00:03:00]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:00]               │ debg --- retry.try failed again with the same message...
[00:03:01]               │ debg TestSubjects.find(muteSwitch)
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:01]               │ debg TestSubjects.find(alertSearchField)
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:01]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:01]               │ debg TestSubjects.click(collapsedItemActions)
[00:03:01]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:01]               │ debg TestSubjects.find(muteSwitch)
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:01]               │ debg TestSubjects.find(muteSwitch)
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:01]               │ debg --- retry.try error: expected 'true' to sort of not equal 'true'
[00:03:02]               │ debg TestSubjects.find(muteSwitch)
[00:03:02]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:02]               │ debg --- retry.try failed again with the same message...
[00:03:02]               │ debg TestSubjects.find(muteSwitch)
[00:03:02]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:02]               │ debg --- retry.try failed again with the same message...
[00:03:03]               │ debg TestSubjects.find(muteSwitch)
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:03]               │ debg TestSubjects.find(alertSearchField)
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:03]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:03]               │ debg TestSubjects.click(collapsedItemActions)
[00:03:03]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:03]               │ debg TestSubjects.find(muteSwitch)
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:03]               └- ✓ pass  (13.3s) "Actions and Triggers app alerts should unmute single alert"
[00:03:03]             └-> should delete single alert
[00:03:03]               └-> "before each" hook: global before each
[00:03:07]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:07]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:07]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459117276 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:03:07]               │
[00:03:07]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:07]               │ debg ... sleep(700) start
[00:03:08]               │ debg ... sleep(700) end
[00:03:08]               │ debg returned from get, calling refresh
[00:03:09]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459117276 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:03:09]               │
[00:03:09]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:09]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:09]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:09]               │ debg TestSubjects.find(kibanaChrome)
[00:03:09]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:03:10]               │ debg ... sleep(501) start
[00:03:11]               │ debg ... sleep(501) end
[00:03:11]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:03:11]               │ debg TestSubjects.exists(statusPageContainer)
[00:03:11]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:03:13]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:03:14]               │ debg TestSubjects.find(alertSearchField)
[00:03:14]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:14]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:14]               │ debg TestSubjects.click(collapsedItemActions)
[00:03:14]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:14]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:15]               │ debg TestSubjects.click(deleteAlert)
[00:03:15]               │ debg Find.clickByCssSelector('[data-test-subj="deleteAlert"]') with timeout=10000
[00:03:15]               │ debg Find.findByCssSelector('[data-test-subj="deleteAlert"]') with timeout=10000
[00:03:15]               │ debg TestSubjects.exists(deleteIdsConfirmation)
[00:03:15]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="deleteIdsConfirmation"]') with timeout=120000
[00:03:15]               │ debg TestSubjects.click(deleteIdsConfirmation > confirmModalConfirmButton)
[00:03:15]               │ debg Find.clickByCssSelector('[data-test-subj="deleteIdsConfirmation"] [data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:03:15]               │ debg Find.findByCssSelector('[data-test-subj="deleteIdsConfirmation"] [data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:03:15]               │ debg TestSubjects.missingOrFail(deleteIdsConfirmation)
[00:03:15]               │ debg Find.waitForDeletedByCssSelector('[data-test-subj="deleteIdsConfirmation"]') with timeout=2500
[00:03:15]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:03:16]               │ debg Find.findByCssSelector('.euiToastHeader__title') with timeout=10000
[00:03:16]               │ debg Find.clickByCssSelector('.euiToast__closeButton') with timeout=10000
[00:03:16]               │ debg Find.findByCssSelector('.euiToast__closeButton') with timeout=10000
[00:03:16]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:16]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:16]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459126379 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:03:16]               │
[00:03:16]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:16]               │ debg ... sleep(700) start
[00:03:17]               │ debg ... sleep(700) end
[00:03:17]               │ debg returned from get, calling refresh
[00:03:18]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:03:18]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:03:18]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:03:18]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:03:18]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:03:18]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:03:18]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:03:18]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459126379 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:03:18]               │
[00:03:18]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:18]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:18]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:18]               │ debg TestSubjects.find(kibanaChrome)
[00:03:18]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:03:19]               │ debg ... sleep(501) start
[00:03:20]               │ debg ... sleep(501) end
[00:03:20]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:03:20]               │ debg TestSubjects.exists(statusPageContainer)
[00:03:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:03:22]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:03:23]               │ debg TestSubjects.find(alertSearchField)
[00:03:23]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:23]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:24]               │ debg Find.findByCssSelector('[data-test-subj="alertsList"] table') with timeout=10000
[00:03:24]               └- ✓ pass  (20.4s) "Actions and Triggers app alerts should delete single alert"
[00:03:24]             └-> should mute all selection
[00:03:24]               └-> "before each" hook: global before each
[00:03:26]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:26]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:26]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459136319 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:03:26]               │
[00:03:26]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:26]               │ debg ... sleep(700) start
[00:03:27]               │ debg ... sleep(700) end
[00:03:27]               │ debg returned from get, calling refresh
[00:03:28]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:03:28]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:03:28]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:03:28]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:03:28]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:03:28]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:03:28]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:03:28]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459136319 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:03:28]               │
[00:03:28]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:28]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:28]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:28]               │ debg TestSubjects.find(kibanaChrome)
[00:03:28]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:03:29]               │ debg ... sleep(501) start
[00:03:30]               │ debg ... sleep(501) end
[00:03:30]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:03:30]               │ debg TestSubjects.exists(statusPageContainer)
[00:03:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:03:32]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:03:33]               │ debg TestSubjects.find(alertSearchField)
[00:03:33]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:33]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:33]               │ debg TestSubjects.click(checkboxSelectRow-ed85b22e-c2ec-4e6e-8093-1ed1840b0602)
[00:03:33]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-ed85b22e-c2ec-4e6e-8093-1ed1840b0602"]') with timeout=10000
[00:03:33]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-ed85b22e-c2ec-4e6e-8093-1ed1840b0602"]') with timeout=10000
[00:03:34]               │ debg TestSubjects.click(bulkAction)
[00:03:34]               │ debg Find.clickByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:03:34]               │ debg Find.findByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:03:34]               │ debg TestSubjects.click(muteAll)
[00:03:34]               │ debg Find.clickByCssSelector('[data-test-subj="muteAll"]') with timeout=10000
[00:03:34]               │ debg Find.findByCssSelector('[data-test-subj="muteAll"]') with timeout=10000
[00:03:34]               │ debg TestSubjects.exists(unmuteAll)
[00:03:34]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="unmuteAll"]') with timeout=120000
[00:03:34]               │ debg TestSubjects.find(alertSearchField)
[00:03:34]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:35]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:35]               │ debg TestSubjects.click(collapsedItemActions)
[00:03:35]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:35]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:35]               │ debg TestSubjects.find(muteSwitch)
[00:03:35]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:35]               └- ✓ pass  (11.5s) "Actions and Triggers app alerts should mute all selection"
[00:03:35]             └-> should unmute all selection
[00:03:35]               └-> "before each" hook: global before each
[00:03:37]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:37]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:37]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459147361 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:03:37]               │
[00:03:37]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:37]               │ debg ... sleep(700) start
[00:03:38]               │ debg ... sleep(700) end
[00:03:38]               │ debg returned from get, calling refresh
[00:03:39]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459147361 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:03:39]               │
[00:03:39]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:39]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:39]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:39]               │ debg TestSubjects.find(kibanaChrome)
[00:03:39]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:03:40]               │ debg ... sleep(501) start
[00:03:40]               │ debg ... sleep(501) end
[00:03:40]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:03:40]               │ debg TestSubjects.exists(statusPageContainer)
[00:03:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:03:43]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:03:43]               │ debg TestSubjects.find(alertSearchField)
[00:03:43]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:44]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:44]               │ debg TestSubjects.click(checkboxSelectRow-59a51d97-45ba-472c-9391-2f99df0a0235)
[00:03:44]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-59a51d97-45ba-472c-9391-2f99df0a0235"]') with timeout=10000
[00:03:44]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-59a51d97-45ba-472c-9391-2f99df0a0235"]') with timeout=10000
[00:03:44]               │ debg TestSubjects.click(bulkAction)
[00:03:44]               │ debg Find.clickByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:03:44]               │ debg Find.findByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:03:44]               │ debg TestSubjects.click(muteAll)
[00:03:44]               │ debg Find.clickByCssSelector('[data-test-subj="muteAll"]') with timeout=10000
[00:03:44]               │ debg Find.findByCssSelector('[data-test-subj="muteAll"]') with timeout=10000
[00:03:45]               │ debg TestSubjects.click(unmuteAll)
[00:03:45]               │ debg Find.clickByCssSelector('[data-test-subj="unmuteAll"]') with timeout=10000
[00:03:45]               │ debg Find.findByCssSelector('[data-test-subj="unmuteAll"]') with timeout=10000
[00:03:46]               │ debg TestSubjects.exists(muteAll)
[00:03:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="muteAll"]') with timeout=120000
[00:03:46]               │ debg TestSubjects.find(alertSearchField)
[00:03:46]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:47]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:47]               │ debg TestSubjects.click(collapsedItemActions)
[00:03:47]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:47]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:47]               │ debg TestSubjects.find(muteSwitch)
[00:03:47]               │ debg Find.findByCssSelector('[data-test-subj="muteSwitch"]') with timeout=10000
[00:03:47]               └- ✓ pass  (11.9s) "Actions and Triggers app alerts should unmute all selection"
[00:03:47]             └-> should disable all selection
[00:03:47]               └-> "before each" hook: global before each
[00:03:49]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:49]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:50]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459159416 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:03:50]               │
[00:03:50]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:50]               │ debg ... sleep(700) start
[00:03:50]               │ debg ... sleep(700) end
[00:03:50]               │ debg returned from get, calling refresh
[00:03:51]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:03:51]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:03:51]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:03:51]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:03:51]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:03:51]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:03:51]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:03:51]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459159416 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:03:51]               │
[00:03:51]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:51]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:51]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:03:51]               │ debg TestSubjects.find(kibanaChrome)
[00:03:51]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:03:52]               │ debg ... sleep(501) start
[00:03:52]               │ debg ... sleep(501) end
[00:03:52]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:03:52]               │ debg TestSubjects.exists(statusPageContainer)
[00:03:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:03:55]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:03:55]               │ debg TestSubjects.find(alertSearchField)
[00:03:55]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:56]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:56]               │ debg TestSubjects.click(checkboxSelectRow-cf7c05b5-d729-43a8-8f1a-92aabfef4b6e)
[00:03:56]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-cf7c05b5-d729-43a8-8f1a-92aabfef4b6e"]') with timeout=10000
[00:03:56]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-cf7c05b5-d729-43a8-8f1a-92aabfef4b6e"]') with timeout=10000
[00:03:56]               │ debg TestSubjects.click(bulkAction)
[00:03:56]               │ debg Find.clickByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:03:56]               │ debg Find.findByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:03:56]               │ debg TestSubjects.click(disableAll)
[00:03:56]               │ debg Find.clickByCssSelector('[data-test-subj="disableAll"]') with timeout=10000
[00:03:56]               │ debg Find.findByCssSelector('[data-test-subj="disableAll"]') with timeout=10000
[00:03:57]               │ debg TestSubjects.exists(enableAll)
[00:03:57]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="enableAll"]') with timeout=120000
[00:03:58]               │ debg TestSubjects.find(alertSearchField)
[00:03:58]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:03:59]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:03:59]               │ debg TestSubjects.click(collapsedItemActions)
[00:03:59]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:59]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:03:59]               │ debg TestSubjects.find(disableSwitch)
[00:03:59]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:03:59]               └- ✓ pass  (12.0s) "Actions and Triggers app alerts should disable all selection"
[00:03:59]             └-> should enable all selection
[00:03:59]               └-> "before each" hook: global before each
[00:04:00]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:00]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:01]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459170457 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:04:01]               │
[00:04:01]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:04:01]               │ debg ... sleep(700) start
[00:04:01]               │ debg ... sleep(700) end
[00:04:01]               │ debg returned from get, calling refresh
[00:04:02]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:04:02]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:04:02]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:04:02]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:04:02]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:04:02]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:04:02]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:04:02]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459170457 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:04:02]               │
[00:04:02]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:04:03]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:03]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:03]               │ debg TestSubjects.find(kibanaChrome)
[00:04:03]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:04:03]               │ debg ... sleep(501) start
[00:04:03]               │ debg ... sleep(501) end
[00:04:03]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:04:03]               │ debg TestSubjects.exists(statusPageContainer)
[00:04:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:04:06]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:04:06]               │ debg TestSubjects.find(alertSearchField)
[00:04:06]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:04:07]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:04:07]               │ debg TestSubjects.click(checkboxSelectRow-8f36b897-e6e9-4c0e-851c-c28ee4c55b71)
[00:04:07]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-8f36b897-e6e9-4c0e-851c-c28ee4c55b71"]') with timeout=10000
[00:04:07]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-8f36b897-e6e9-4c0e-851c-c28ee4c55b71"]') with timeout=10000
[00:04:07]               │ debg TestSubjects.click(bulkAction)
[00:04:07]               │ debg Find.clickByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:04:07]               │ debg Find.findByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:04:07]               │ debg TestSubjects.click(disableAll)
[00:04:07]               │ debg Find.clickByCssSelector('[data-test-subj="disableAll"]') with timeout=10000
[00:04:07]               │ debg Find.findByCssSelector('[data-test-subj="disableAll"]') with timeout=10000
[00:04:07]               │ debg TestSubjects.click(enableAll)
[00:04:07]               │ debg Find.clickByCssSelector('[data-test-subj="enableAll"]') with timeout=10000
[00:04:07]               │ debg Find.findByCssSelector('[data-test-subj="enableAll"]') with timeout=10000
[00:04:10]               │ debg TestSubjects.exists(disableAll)
[00:04:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="disableAll"]') with timeout=120000
[00:04:12]               │ debg TestSubjects.find(alertSearchField)
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:04:12]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:04:12]               │ debg TestSubjects.click(collapsedItemActions)
[00:04:12]               │ debg Find.clickByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="collapsedItemActions"]') with timeout=10000
[00:04:12]               │ debg TestSubjects.find(disableSwitch)
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="disableSwitch"]') with timeout=10000
[00:04:12]               └- ✓ pass  (13.1s) "Actions and Triggers app alerts should enable all selection"
[00:04:12]             └-> should delete all selection
[00:04:12]               └-> "before each" hook: global before each
[00:04:15]               │ debg navigating to triggersActions url: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:15]               │ debg navigate to: http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:16]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459185572 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:04:16]               │
[00:04:16]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:04:16]               │ debg ... sleep(700) start
[00:04:16]               │ debg ... sleep(700) end
[00:04:16]               │ debg returned from get, calling refresh
[00:04:17]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/core/core.entry.js 26:307318 TypeError: Failed to fetch
[00:04:17]               │          at Fetch._callee3$ (http://localhost:6151/36753/bundles/core/core.entry.js:6:98125)
[00:04:17]               │          at l (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020799)
[00:04:17]               │          at Generator._invoke (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1020552)
[00:04:17]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/36753/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:380:1021156)
[00:04:17]               │          at fetch_asyncGeneratorStep (http://localhost:6151/36753/bundles/core/core.entry.js:6:91444)
[00:04:17]               │          at _throw (http://localhost:6151/36753/bundles/core/core.entry.js:6:91852)
[00:04:17]               │ debg browser[INFO] http://localhost:6151/app/management/insightsAndAlerting/triggersActions?_t=1601459185572 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:04:17]               │
[00:04:17]               │ debg browser[INFO] http://localhost:6151/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:04:18]               │ debg currentUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:18]               │          appUrl = http://localhost:6151/app/management/insightsAndAlerting/triggersActions
[00:04:18]               │ debg TestSubjects.find(kibanaChrome)
[00:04:18]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:04:18]               │ debg ... sleep(501) start
[00:04:19]               │ debg ... sleep(501) end
[00:04:19]               │ debg in navigateTo url = http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:04:19]               │ debg TestSubjects.exists(statusPageContainer)
[00:04:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:04:21]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:04:22]               │ debg TestSubjects.find(alertSearchField)
[00:04:22]               │ debg Find.findByCssSelector('[data-test-subj="alertSearchField"]') with timeout=10000
[00:04:22]               │ debg Find.findByCssSelector('.euiBasicTable[data-test-subj="alertsList"]:not(.euiBasicTable-loading)') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-40e8c097-5c41-490a-a641-4acfab0d20cd)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-40e8c097-5c41-490a-a641-4acfab0d20cd"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-40e8c097-5c41-490a-a641-4acfab0d20cd"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-59c71c54-2ad3-4a03-b11b-79a97f35ed0f)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-59c71c54-2ad3-4a03-b11b-79a97f35ed0f"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-59c71c54-2ad3-4a03-b11b-79a97f35ed0f"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-787c9d0b-511c-4c3c-a5c3-e180c0db36cb)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-787c9d0b-511c-4c3c-a5c3-e180c0db36cb"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-787c9d0b-511c-4c3c-a5c3-e180c0db36cb"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-e6c5ac4f-dff7-42ed-9630-dcec77adf6fe)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-e6c5ac4f-dff7-42ed-9630-dcec77adf6fe"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-e6c5ac4f-dff7-42ed-9630-dcec77adf6fe"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-5b5e3cca-d5a0-482e-9d5d-98265f06882b)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-5b5e3cca-d5a0-482e-9d5d-98265f06882b"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-5b5e3cca-d5a0-482e-9d5d-98265f06882b"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-b1d27281-14d2-4c65-826c-900981c70f30)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-b1d27281-14d2-4c65-826c-900981c70f30"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-b1d27281-14d2-4c65-826c-900981c70f30"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-5deeda1a-efea-4327-9d01-04ee86827c30)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-5deeda1a-efea-4327-9d01-04ee86827c30"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-5deeda1a-efea-4327-9d01-04ee86827c30"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-72006578-4280-4866-909c-869a6fe49d6f)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-72006578-4280-4866-909c-869a6fe49d6f"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-72006578-4280-4866-909c-869a6fe49d6f"]') with timeout=10000
[00:04:23]               │ debg TestSubjects.click(checkboxSelectRow-593d2e98-71b3-49a4-b90f-fd0e36a3f5c9)
[00:04:23]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-593d2e98-71b3-49a4-b90f-fd0e36a3f5c9"]') with timeout=10000
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-593d2e98-71b3-49a4-b90f-fd0e36a3f5c9"]') with timeout=10000
[00:04:24]               │ debg TestSubjects.click(checkboxSelectRow-43016fb8-75a6-4e0b-aa45-4d6a64d26663)
[00:04:24]               │ debg Find.clickByCssSelector('[data-test-subj="checkboxSelectRow-43016fb8-75a6-4e0b-aa45-4d6a64d26663"]') with timeout=10000
[00:04:24]               │ debg Find.findByCssSelector('[data-test-subj="checkboxSelectRow-43016fb8-75a6-4e0b-aa45-4d6a64d26663"]') with timeout=10000
[00:04:24]               │ debg TestSubjects.click(bulkAction)
[00:04:24]               │ debg Find.clickByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:04:24]               │ debg Find.findByCssSelector('[data-test-subj="bulkAction"]') with timeout=10000
[00:04:24]               │ debg TestSubjects.click(deleteAll)
[00:04:24]               │ debg Find.clickByCssSelector('[data-test-subj="deleteAll"]') with timeout=10000
[00:04:24]               │ debg Find.findByCssSelector('[data-test-subj="deleteAll"]') with timeout=10000
[00:04:24]               │ debg TestSubjects.exists(deleteIdsConfirmation)
[00:04:24]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="deleteIdsConfirmation"]') with timeout=120000
[00:04:24]               │ debg TestSubjects.click(deleteIdsConfirmation > confirmModalConfirmButton)
[00:04:24]               │ debg Find.clickByCssSelector('[data-test-subj="deleteIdsConfirmation"] [data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:04:24]               │ debg Find.findByCssSelector('[data-test-subj="deleteIdsConfirmation"] [data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:04:24]               │ debg TestSubjects.missingOrFail(deleteIdsConfirmation)
[00:04:24]               │ debg Find.waitForDeletedByCssSelector('[data-test-subj="deleteIdsConfirmation"]') with timeout=2500
[00:04:25]               │ERROR browser[SEVERE] http://localhost:6151/api/alerts/alert/5deeda1a-efea-4327-9d01-04ee86827c30 - Failed to load resource: net::ERR_NETWORK_CHANGED
[00:04:25]               │ERROR browser[SEVERE] http://localhost:6151/api/alerts/alert/72006578-4280-4866-909c-869a6fe49d6f - Failed to load resource: net::ERR_NETWORK_CHANGED
[00:04:25]               │ERROR browser[SEVERE] http://localhost:6151/api/alerts/alert/593d2e98-71b3-49a4-b90f-fd0e36a3f5c9 - Failed to load resource: net::ERR_NETWORK_CHANGED
[00:04:25]               │ERROR browser[SEVERE] http://localhost:6151/api/alerts/alert/43016fb8-75a6-4e0b-aa45-4d6a64d26663 - Failed to load resource: net::ERR_NETWORK_CHANGED
[00:04:25]               │ debg browser[INFO] http://localhost:6151/36753/bundles/core/core.entry.js 26:308397 "Detected an unhandled Promise rejection.
[00:04:25]               │      TypeError: Invalid attempt to spread non-iterable instance.
[00:04:25]               │      In order to be iterable, non-array objects must have a [Symbol.iterator]() method."
[00:04:25]               │ERROR browser[SEVERE] http://localhost:6151/36753/bundles/plugin/triggers_actions_ui/triggers_actions_ui.chunk.1.js 2:20004 Uncaught TypeError: Invalid attempt to spread non-iterable instance.
[00:04:25]               │      I…y objects must have a [Symbol.iterator]() method.
[00:04:25]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:04:45]               │ debg --- retry.try error: Waiting for element to be located By(css selector, .euiToast)
[00:04:45]               │      Wait timed out after 20254ms
[00:04:45]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:05:06]               │ debg --- retry.try error: Waiting for element to be located By(css selector, .euiToast)
[00:05:06]               │      Wait timed out after 20284ms
[00:05:06]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:05:27]               │ debg --- retry.try error: Waiting for element to be located By(css selector, .euiToast)
[00:05:27]               │      Wait timed out after 20305ms
[00:05:27]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:05:47]               │ debg --- retry.try error: Waiting for element to be located By(css selector, .euiToast)
[00:05:47]               │      Wait timed out after 20268ms
[00:05:48]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:06:08]               │ debg --- retry.try error: Waiting for element to be located By(css selector, .euiToast)
[00:06:08]               │      Wait timed out after 20342ms
[00:06:09]               │ debg Find.findByCssSelector('.euiToast') with timeout=20000
[00:06:29]               │ debg --- retry.try error: Waiting for element to be located By(css selector, .euiToast)
[00:06:29]               │      Wait timed out after 20258ms
[00:06:29]               │ info Taking screenshot "/dev/shm/workspace/parallel/5/kibana/x-pack/test/functional/screenshots/failure/Actions and Triggers app alerts should delete all selection.png"
[00:06:30]               │ info Current URL is: http://localhost:6151/app/management/insightsAndAlerting/triggersActions/alerts
[00:06:30]               │ info Saving page source to: /dev/shm/workspace/parallel/5/kibana/x-pack/test/functional/failure_debug/html/Actions and Triggers app alerts should delete all selection.html
[00:06:30]               └- ✖ fail: Actions and Triggers app alerts should delete all selection
[00:06:30]               │      Error: retry.try timeout: TimeoutError: Waiting for element to be located By(css selector, .euiToast)
[00:06:30]               │ Wait timed out after 20258ms
[00:06:30]               │     at /dev/shm/workspace/kibana/node_modules/selenium-webdriver/lib/webdriver.js:842:17
[00:06:30]               │     at process._tickCallback (internal/process/next_tick.js:68:7)
[00:06:30]               │       at onFailure (/dev/shm/workspace/parallel/5/kibana/test/common/services/retry/retry_for_success.ts:28:9)
[00:06:30]               │       at retryForSuccess (/dev/shm/workspace/parallel/5/kibana/test/common/services/retry/retry_for_success.ts:68:13)
[00:06:30]               │ 
[00:06:30]               │ 

Stack Trace

Error: retry.try timeout: TimeoutError: Waiting for element to be located By(css selector, .euiToast)
Wait timed out after 20258ms
    at /dev/shm/workspace/kibana/node_modules/selenium-webdriver/lib/webdriver.js:842:17
    at process._tickCallback (internal/process/next_tick.js:68:7)
    at onFailure (/dev/shm/workspace/parallel/5/kibana/test/common/services/retry/retry_for_success.ts:28:9)
    at retryForSuccess (/dev/shm/workspace/parallel/5/kibana/test/common/services/retry/retry_for_success.ts:68:13)

Metrics [docs]

@kbn/optimizer bundle module count

id value diff baseline
indexLifecycleManagement 206 +2 204

async chunks size

id value diff baseline
indexLifecycleManagement 231.8KB +2.6KB 229.2KB

distributable file count

id value diff baseline
default 45782 +1 45781

page load bundle size

id value diff baseline
indexLifecycleManagement 89.9KB +602.0B 89.3KB

History

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

@jloleysens jloleysens merged commit 2904fe0 into elastic:master Sep 30, 2020
@jloleysens jloleysens deleted the ilm/notices-should-reflect-tier-preferences branch September 30, 2020 10:42
jloleysens added a commit to jloleysens/kibana that referenced this pull request Sep 30, 2020
* Refactor allocation notices for tier preferences

- also removed the lingering "data_frozen" node role

* added some test coverage

* Implement copy feedback

* Minor refactors based on PR feedback

* expanded README.md with section on testing cluster state notices

* Updated copy to reference policy and updated freeze description

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
jloleysens added a commit that referenced this pull request Sep 30, 2020
)

* Refactor allocation notices for tier preferences

- also removed the lingering "data_frozen" node role

* added some test coverage

* Implement copy feedback

* Minor refactors based on PR feedback

* expanded README.md with section on testing cluster state notices

* Updated copy to reference policy and updated freeze description

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
yctercero pushed a commit to yctercero/kibana that referenced this pull request Sep 30, 2020
* Refactor allocation notices for tier preferences

- also removed the lingering "data_frozen" node role

* added some test coverage

* Implement copy feedback

* Minor refactors based on PR feedback

* expanded README.md with section on testing cluster state notices

* Updated copy to reference policy and updated freeze description

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
phillipb added a commit to phillipb/kibana that referenced this pull request Sep 30, 2020
…aly-detection-partition-field

* 'master' of github.com:elastic/kibana: (37 commits)
  [UiActions] Don't throw an error if there are no compatible actions to execute (elastic#78917)
  [Observability] Kibana nav when docked overlaps the content of the pages. (elastic#78593)
  Invalid `searchSourceJSON` causes saved object migration to fail (elastic#78535)
  update vega version (elastic#78390)
  Fix warning text doesn't get displayed on filters with custom filter name (elastic#78617)
  [ILM] Data tier notices should reflect tier preferences (elastic#78398)
  [APM] Service Map: `Not Defined` option doesn't work properly (elastic#77757)
  Improve invalid field error message at search.aggs.param_types.field (elastic#78587)
  Remove isDeprecated flag on visType (elastic#78820)
  Remove unused elasticsearch.preserverHost setting (elastic#78608)
  Fix condition and adjust tests (elastic#78898)
  [UX] Add percentile selector (elastic#78562)
  [ML] Replace use of rest_total_hits_as_int with track_total_hits (elastic#78423)
  expression service docs (elastic#78774)
  [Functional] Wait for the page to load and then click the new vis button (elastic#78725)
  [TSVB] No data in visualizations with annotations (elastic#78794)
  [kbn/ui-shared-deps] track asset sizes (elastic#78718)
  delete target before building (elastic#78665)
  Move indexPattern.popularizeField into discover (elastic#77668)
  [Security Solution][Resolver]Add backdrop to pills (elastic#78625)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:ILM release_note:skip Skip the PR/issue when compiling release notes Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.10.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants