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

[Reporting] ILM policy for managing reporting indices #100130

Closed
wants to merge 13 commits into from

Conversation

jloleysens
Copy link
Contributor

@jloleysens jloleysens commented May 14, 2021

Summary

Address points 1 & 2 of #81544

This contribution adds functionality at reporting plugin start time that registers an ILM policy for managing indices.

To do

  • Review the current ILM policy

Release note

Reporting now registers an ILM policy for managing the lifecycle of reports. The policy is kibana-reporting and the default policy is for reports to live in the hot phase forever. This policy can be updated to manage report indices however the user chooses.

Checklist

Delete any items that are not applicable to this PR.

@jloleysens jloleysens added (Deprecated) Feature:Reporting Use Reporting:Screenshot, Reporting:CSV, or Reporting:Framework instead v8.0.0 Team:AppServices release_note:skip Skip the PR/issue when compiling release notes v7.14.0 labels May 14, 2021
@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

@jloleysens jloleysens added release_note:enhancement and removed release_note:skip Skip the PR/issue when compiling release notes labels May 17, 2021
@jloleysens jloleysens marked this pull request as ready for review May 17, 2021 11:43
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-app-services (Team:AppServices)

@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-reporting-services (Team:Reporting Services)

@jloleysens jloleysens requested a review from tsullivan May 17, 2021 11:43
phases: {
hot: {
actions: {},
min_age: '0ms',
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we need the min_age parameter? https://www.elastic.co/guide/en/elasticsearch/reference/master/getting-started-index-lifecycle-management.html#CO461-1 does state that min_age: '0ms' is the default. However, if we can omit this parameter and allow Elastisearch to configure the default, it'll be more future proof if ES changes the default in the future.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good point! Thanks for the update!

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

Comment on lines +78 to +88
body: {
settings: {
number_of_shards: 1,
auto_expand_replicas: '0-1',
lifecycle: {
name: this.ilmPolicyName,
},
},
mappings: {
properties: mapping,
},
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Moved this in here to take advantage of the TS typed body. If we want to move the body back outside we can also import the payload type to still have TS checking the payload here.

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

Copy link
Member

@tsullivan tsullivan left a comment

Choose a reason for hiding this comment

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

LGTM! I left just a minor suggestion to elevate the log level of the message logged when the policy is created.

Comment on lines 163 to 165
this.logger.debug(
`Creating ILM policy for managing reporting indices: ${this.ilmPolicyName}`
);
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
this.logger.debug(
`Creating ILM policy for managing reporting indices: ${this.ilmPolicyName}`
);
this.logger.info(`Creating ILM policy for managing reporting indices: ${this.ilmPolicyName}`);

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

kibanamachine added a commit to jloleysens/kibana that referenced this pull request May 25, 2021
* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
kibanamachine added a commit to jloleysens/kibana that referenced this pull request May 25, 2021
* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
jloleysens added a commit to jloleysens/kibana that referenced this pull request May 25, 2021
* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	x-pack/plugins/reporting/server/lib/store/store.test.ts
#	x-pack/plugins/reporting/server/lib/store/store.ts
@jloleysens
Copy link
Contributor Author

Something went wrong with this merge and GitHub created a commit on elastic/kibana master anyway. Closing manually for now. Not sure whether someone has seen this before?

@jloleysens jloleysens closed this May 25, 2021
jloleysens added a commit that referenced this pull request May 25, 2021
)

* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	x-pack/plugins/reporting/server/lib/store/store.test.ts
#	x-pack/plugins/reporting/server/lib/store/store.ts
jloleysens added a commit to jloleysens/kibana that referenced this pull request May 26, 2021
…deprecation-ilm-policy

* 'master' of github.com:elastic/kibana: (101 commits)
  [ftr] migrate "docTable" service to FtrService class (elastic#100595)
  [ftr] migrate "listingTable" service to FtrService class (elastic#100606)
  Fixed comparing real value with formatted according to mode. (elastic#100456)
  [ftr] migrate "dataGrid" service to FtrService class (elastic#100593)
  [ftr] migrate "fieldEditor" to FtrService class (elastic#100597)
  [ftr] migrate "filterBar" service to FtrService class (elastic#100601)
  [triggersActionsUi] Reduce page load bundle to under 100kB (elastic#97770)
  [build] Clean jest configs (elastic#100594)
  refact(NA): remove extra pkg_npm target and add specific target folders for @kbn/analytics on Bazel (elastic#100569)
  Update dependency @elastic/charts to v29.2.0 (elastic#100587)
  [Maps] convert LayerPanel to typescript (elastic#100481)
  [Upgrade Assistant] Address copy feedback (elastic#99632)
  Open/Closed filter for observability alerts page (elastic#99217)
  One liner to expose the EQL query for debugging for users (elastic#100565)
  [KibanaPageLayout] Solution Nav specific styles & props (elastic#100089)
  [ftr] implement FtrService classes and migrate common services (elastic#99546)
  [XY] [Lens] Adds opacity slider (elastic#100453)
  [Reporting] ILM policy for managing reporting indices (elastic#100130)
  [Reporting] ILM policy for managing reporting indices (elastic#100130)
  [DOCS] Remove redundant maps attribute (elastic#100426)
  ...

# Conflicts:
#	x-pack/plugins/reporting/server/lib/store/report_ilm_policy.ts
#	x-pack/plugins/reporting/server/lib/store/store.test.ts
#	x-pack/plugins/reporting/server/lib/store/store.ts
ecezalp pushed a commit to ecezalp/kibana that referenced this pull request May 26, 2021
* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
ecezalp pushed a commit to ecezalp/kibana that referenced this pull request May 26, 2021
* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

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

kibanamachine commented Jun 2, 2021

💔 Build Failed

Failed CI Steps


Test Failures

Kibana Pipeline / general / task-queue-process-21 / X-Pack Endpoint API Integration Tests.x-pack/test/security_solution_endpoint_api_int/apis/resolver/entity·ts.Endpoint plugin Resolver tests Resolver tests for the entity route winlogbeat tests "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: Endpoint plugin
[00:00:00]           └-> "before all" hook in "Endpoint plugin"
[00:00:00]           └-> "before all" hook in "Endpoint plugin"
[00:00:00]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:00]             │ proc [kibana]   log   [10:14:22.465] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.468] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.470] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.471] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40048, url.original: /search?package=endpoint&internal=true&experimental=true
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40050, url.original: /search?package=system&internal=true&experimental=true
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40054, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40052, url.original: /search?package=elastic_agent&internal=true&experimental=true
[00:00:00]             │ proc [kibana]   log   [10:14:22.515] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.516] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.517] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.518] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40068, url.original: /search?package=system&internal=true&experimental=true
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40074, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40066, url.original: /search?package=endpoint&internal=true&experimental=true
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40072, url.original: /search?package=elastic_agent&internal=true&experimental=true
[00:00:00]             │ proc [kibana]   log   [10:14:22.525] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.525] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.526] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.527] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40084, url.original: /package/system/0.12.0
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40088, url.original: /package/endpoint/0.18.0
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40082, url.original: /package/fleet_server/0.2.1
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40090, url.original: /package/elastic_agent/0.0.6
[00:00:00]             │ proc [kibana]   log   [10:14:22.536] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ proc [kibana]   log   [10:14:22.537] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40096, url.original: /package/endpoint/0.18.0/
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40100, url.original: /package/system/0.12.0/
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40106, url.original: /package/fleet_server/0.2.1/
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40104, url.original: /package/elastic_agent/0.0.6/
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40112, url.original: /epr/fleet_server/fleet_server-0.2.1.zip
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40114, url.original: /epr/elastic_agent/elastic_agent-0.0.6.zip
[00:00:00]             │ proc [kibana]   log   [10:14:22.546] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40118, url.original: /epr/endpoint/endpoint-0.18.0.zip
[00:00:00]             │ proc [kibana]   log   [10:14:22.560] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:00]             │ info [docker:registry] 2021/06/02 10:14:22 source.ip: 172.17.0.1:40122, url.original: /epr/system/system-0.12.0.zip
[00:00:02]             │ info [o.e.x.i.a.TransportPutLifecycleAction] [kibana-ci-immutable-centos-1622627639716682003] adding index lifecycle policy [.fleet-actions-results]
[00:00:02]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:02]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:02]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:02]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [.fleet-actions-results] for index patterns [.fleet-actions-results]
[00:00:03]             │ info [o.e.x.i.a.TransportPutLifecycleAction] [kibana-ci-immutable-centos-1622627639716682003] adding index lifecycle policy [logs-endpoint.collection-diagnostic]
[00:00:05]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-elastic_agent.elastic_agent-mappings]
[00:00:05]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-elastic_agent.elastic_agent] for index patterns [metrics-elastic_agent.elastic_agent-*]
[00:00:05]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-metadata-current] for index patterns [metrics-endpoint.metadata_current_*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.fsstat] for index patterns [metrics-system.fsstat-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.filesystem] for index patterns [metrics-system.filesystem-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.cpu] for index patterns [metrics-system.cpu-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.core] for index patterns [metrics-system.core-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.application] for index patterns [logs-system.application-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.network] for index patterns [metrics-system.network-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.memory] for index patterns [metrics-system.memory-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.process] for index patterns [metrics-system.process-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.diskio] for index patterns [metrics-system.diskio-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.process_summary] for index patterns [metrics-system.process_summary-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.auth] for index patterns [logs-system.auth-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.load] for index patterns [metrics-system.load-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.security] for index patterns [logs-system.security-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.system] for index patterns [logs-system.system-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.socket_summary] for index patterns [metrics-system.socket_summary-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.syslog] for index patterns [logs-system.syslog-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.uptime] for index patterns [metrics-system.uptime-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [.logs-endpoint.diagnostic.collection-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-endpoint.policy-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.alerts-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.process-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.registry-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.network-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.security-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-endpoint.metrics-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.library-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-endpoint.metadata-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.file-mappings]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [.logs-endpoint.diagnostic.collection] for index patterns [.logs-endpoint.diagnostic.collection-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-endpoint.policy] for index patterns [metrics-endpoint.policy-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.alerts] for index patterns [logs-endpoint.alerts-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.process] for index patterns [logs-endpoint.events.process-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.registry] for index patterns [logs-endpoint.events.registry-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.network] for index patterns [logs-endpoint.events.network-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.security] for index patterns [logs-endpoint.events.security-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-endpoint.metrics] for index patterns [metrics-endpoint.metrics-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.library] for index patterns [logs-endpoint.events.library-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-endpoint.metadata] for index patterns [metrics-endpoint.metadata-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.file] for index patterns [logs-endpoint.events.file-*]
[00:00:08]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.transform-internal-007] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:08]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.transform-internal-007]
[00:00:08]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.transform-internal-007][0]]])." previous.health="YELLOW" reason="shards started [[.transform-internal-007][0]]"
[00:00:08]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.transform-notifications-000002] creating index, cause [auto(bulk api)], templates [.transform-notifications-000002], shards [1]/[1]
[00:00:08]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.transform-notifications-000002]
[00:00:08]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [metrics-endpoint.metadata_current_default] creating index, cause [api], templates [metrics-metadata-current], shards [1]/[1]
[00:00:08]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [metrics-endpoint.metadata_current_default]
[00:00:08]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.transform-notifications-000002][0], [metrics-endpoint.metadata_current_default][0]]])." previous.health="YELLOW" reason="shards started [[.transform-notifications-000002][0], [metrics-endpoint.metadata_current_default][0]]"
[00:00:08]             │ info [o.e.x.t.t.TransformTask] [kibana-ci-immutable-centos-1622627639716682003] [endpoint.metadata_current-default-0.18.0] updating state for transform to [{"task_state":"started","indexer_state":"stopped","checkpoint":0,"should_stop_at_checkpoint":false}].
[00:00:08]             │ info [o.e.x.t.t.TransformPersistentTasksExecutor] [kibana-ci-immutable-centos-1622627639716682003] [endpoint.metadata_current-default-0.18.0] successfully completed and scheduled task in node operation
[00:00:10]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:11]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:12]             │ proc [kibana]   log   [10:14:34.698] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:12]             │ info [docker:registry] 2021/06/02 10:14:34 source.ip: 172.17.0.1:40178, url.original: /search?package=system&internal=true&experimental=true
[00:00:12]             │ proc [kibana]   log   [10:14:34.720] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:12]             │ info [docker:registry] 2021/06/02 10:14:34 source.ip: 172.17.0.1:40182, url.original: /search?package=system&internal=true&experimental=true
[00:00:12]             │ proc [kibana]   log   [10:14:34.728] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:12]             │ info [docker:registry] 2021/06/02 10:14:34 source.ip: 172.17.0.1:40186, url.original: /package/system/0.12.0
[00:00:12]             │ info [docker:registry] 2021/06/02 10:14:34 source.ip: 172.17.0.1:40190, url.original: /package/system/0.12.0/
[00:00:12]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/U_VtOjlBTS6ZHv-9BaYbvQ] update_mapping [_doc]
[00:00:14]             │ proc [kibana]   log   [10:14:36.740] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:14]             │ info [docker:registry] 2021/06/02 10:14:36 source.ip: 172.17.0.1:40198, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:14]             │ proc [kibana]   log   [10:14:36.763] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:14]             │ info [docker:registry] 2021/06/02 10:14:36 source.ip: 172.17.0.1:40202, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:14]             │ proc [kibana]   log   [10:14:36.772] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:14]             │ info [docker:registry] 2021/06/02 10:14:36 source.ip: 172.17.0.1:40206, url.original: /package/fleet_server/0.2.1
[00:00:14]             │ info [docker:registry] 2021/06/02 10:14:36 source.ip: 172.17.0.1:40210, url.original: /package/fleet_server/0.2.1/
[00:00:16]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.fleet-enrollment-api-keys-7] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:16]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.fleet-enrollment-api-keys-7]
[00:00:16]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.fleet-enrollment-api-keys-7][0]]])." previous.health="YELLOW" reason="shards started [[.fleet-enrollment-api-keys-7][0]]"
[00:00:17]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.fleet-policies-7] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:17]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.fleet-policies-7]
[00:00:18]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.fleet-policies-7][0]]])." previous.health="YELLOW" reason="shards started [[.fleet-policies-7][0]]"
[00:00:19]           └-: Resolver tests
[00:00:19]             └-> "before all" hook in "Resolver tests"
[00:00:19]             └-: Resolver tests for the entity route
[00:00:19]               └-> "before all" hook in "Resolver tests for the entity route"
[00:00:19]               └-: winlogbeat tests
[00:00:19]                 └-> "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"
[00:00:19]                 └-> "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"
[00:00:19]                   │ info [endpoint/resolver/winlogbeat] Loading "mappings.json"
[00:00:19]                   │ info [endpoint/resolver/winlogbeat] Loading "data.json.gz"
[00:00:19]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:19]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="RED" message="Cluster health status changed from [YELLOW] to [RED] (reason: [index [winlogbeat-7.11.0-2020.12.03-000001] created])." previous.health="YELLOW" reason="index [winlogbeat-7.11.0-2020.12.03-000001] created"
[00:00:49]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001/LybeG5PmSE6nVoKnTsmKog] deleting index
[00:00:49]                   │ info [endpoint/resolver/winlogbeat] Deleted existing index "winlogbeat-7.11.0-2020.12.03-000001"
[00:00:49]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:49]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="RED" message="Cluster health status changed from [YELLOW] to [RED] (reason: [index [winlogbeat-7.11.0-2020.12.03-000001] created])." previous.health="YELLOW" reason="index [winlogbeat-7.11.0-2020.12.03-000001] created"
[00:01:19]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001/eto_os82Qx2U_mlUB576AA] deleting index
[00:01:19]                   │ info [endpoint/resolver/winlogbeat] Deleted existing index "winlogbeat-7.11.0-2020.12.03-000001"
[00:01:19]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001] creating index, cause [api], templates [], shards [1]/[1]
[00:01:19]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="RED" message="Cluster health status changed from [YELLOW] to [RED] (reason: [index [winlogbeat-7.11.0-2020.12.03-000001] created])." previous.health="YELLOW" reason="index [winlogbeat-7.11.0-2020.12.03-000001] created"
[00:01:49]                   └- ✖ fail: Endpoint plugin Resolver tests Resolver tests for the entity route winlogbeat tests "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"
[00:01:49]                   │      ResponseError: resource_already_exists_exception
[00:01:49]                   │       at onBody (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:337:23)
[00:01:49]                   │       at IncomingMessage.onEnd (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:264:11)
[00:01:49]                   │       at endReadableNT (internal/streams/readable.js:1336:12)
[00:01:49]                   │       at processTicksAndRejections (internal/process/task_queues.js:82:21)
[00:01:49]                   │ 
[00:01:49]                   │ 

Stack Trace

ResponseError: resource_already_exists_exception
    at onBody (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:337:23)
    at IncomingMessage.onEnd (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:264:11)
    at endReadableNT (internal/streams/readable.js:1336:12)
    at processTicksAndRejections (internal/process/task_queues.js:82:21) {
  meta: {
    body: { error: [Object], status: 400 },
    statusCode: 400,
    headers: {
      'content-type': 'application/json;charset=utf-8',
      'content-length': '481'
    },
    meta: {
      context: null,
      request: [Object],
      name: 'elasticsearch-js',
      connection: [Object],
      attempts: 1,
      aborted: false
    }
  }
}

Kibana Pipeline / general / task-queue-process-21 / X-Pack Endpoint API Integration Tests.x-pack/test/security_solution_endpoint_api_int/apis/resolver/entity·ts.Endpoint plugin Resolver tests Resolver tests for the entity route winlogbeat tests "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: Endpoint plugin
[00:00:00]           └-> "before all" hook in "Endpoint plugin"
[00:00:00]           └-> "before all" hook in "Endpoint plugin"
[00:00:00]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:01]             │ proc [kibana]   log   [10:07:18.645] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.648] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.649] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.650] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37109, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37110, url.original: /search?package=endpoint&internal=true&experimental=true
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37108, url.original: /search?package=system&internal=true&experimental=true
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37114, url.original: /search?package=elastic_agent&internal=true&experimental=true
[00:00:01]             │ proc [kibana]   log   [10:07:18.701] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.702] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.704] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.705] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37124, url.original: /search?package=endpoint&internal=true&experimental=true
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37128, url.original: /search?package=system&internal=true&experimental=true
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37130, url.original: /search?package=elastic_agent&internal=true&experimental=true
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37134, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:01]             │ proc [kibana]   log   [10:07:18.709] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.711] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.712] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.713] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37140, url.original: /package/endpoint/0.18.0
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37144, url.original: /package/system/0.12.0
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37148, url.original: /package/elastic_agent/0.0.6
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37150, url.original: /package/fleet_server/0.2.1
[00:00:01]             │ proc [kibana]   log   [10:07:18.725] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.726] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ proc [kibana]   log   [10:07:18.731] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37158, url.original: /package/endpoint/0.18.0/
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37162, url.original: /package/system/0.12.0/
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37166, url.original: /package/fleet_server/0.2.1/
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37160, url.original: /package/elastic_agent/0.0.6/
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37174, url.original: /epr/elastic_agent/elastic_agent-0.0.6.zip
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37172, url.original: /epr/fleet_server/fleet_server-0.2.1.zip
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37178, url.original: /epr/endpoint/endpoint-0.18.0.zip
[00:00:01]             │ proc [kibana]   log   [10:07:18.746] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:01]             │ info [docker:registry] 2021/06/02 10:07:18 source.ip: 172.17.0.1:37182, url.original: /epr/system/system-0.12.0.zip
[00:00:03]             │ info [o.e.x.i.a.TransportPutLifecycleAction] [kibana-ci-immutable-centos-1622627639716682003] adding index lifecycle policy [.fleet-actions-results]
[00:00:03]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:03]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:03]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:03]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [.fleet-actions-results] for index patterns [.fleet-actions-results]
[00:00:04]             │ info [o.e.x.i.a.TransportPutLifecycleAction] [kibana-ci-immutable-centos-1622627639716682003] adding index lifecycle policy [logs-endpoint.collection-diagnostic]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-elastic_agent.elastic_agent-mappings]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-elastic_agent.elastic_agent] for index patterns [metrics-elastic_agent.elastic_agent-*]
[00:00:06]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-metadata-current] for index patterns [metrics-endpoint.metadata_current_*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.memory] for index patterns [metrics-system.memory-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.fsstat] for index patterns [metrics-system.fsstat-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.cpu] for index patterns [metrics-system.cpu-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.auth] for index patterns [logs-system.auth-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.process_summary] for index patterns [metrics-system.process_summary-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.load] for index patterns [metrics-system.load-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.filesystem] for index patterns [metrics-system.filesystem-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.security] for index patterns [logs-system.security-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.application] for index patterns [logs-system.application-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.core] for index patterns [metrics-system.core-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.diskio] for index patterns [metrics-system.diskio-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.uptime] for index patterns [metrics-system.uptime-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.process] for index patterns [metrics-system.process-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.syslog] for index patterns [logs-system.syslog-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.network] for index patterns [metrics-system.network-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-system.system] for index patterns [logs-system.system-*]
[00:00:07]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-system.socket_summary] for index patterns [metrics-system.socket_summary-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.registry-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-endpoint.metadata-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.library-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.security-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [.logs-endpoint.diagnostic.collection-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-endpoint.policy-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.alerts-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.file-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [metrics-endpoint.metrics-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.network-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding component template [logs-endpoint.events.process-mappings]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.registry] for index patterns [logs-endpoint.events.registry-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-endpoint.metadata] for index patterns [metrics-endpoint.metadata-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.library] for index patterns [logs-endpoint.events.library-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.security] for index patterns [logs-endpoint.events.security-*]
[00:00:08]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [.logs-endpoint.diagnostic.collection] for index patterns [.logs-endpoint.diagnostic.collection-*]
[00:00:09]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-endpoint.policy] for index patterns [metrics-endpoint.policy-*]
[00:00:09]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.alerts] for index patterns [logs-endpoint.alerts-*]
[00:00:09]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.file] for index patterns [logs-endpoint.events.file-*]
[00:00:09]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [metrics-endpoint.metrics] for index patterns [metrics-endpoint.metrics-*]
[00:00:09]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.network] for index patterns [logs-endpoint.events.network-*]
[00:00:09]             │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-centos-1622627639716682003] adding index template [logs-endpoint.events.process] for index patterns [logs-endpoint.events.process-*]
[00:00:10]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.transform-internal-007] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:10]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.transform-internal-007]
[00:00:10]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.transform-internal-007][0]]])." previous.health="YELLOW" reason="shards started [[.transform-internal-007][0]]"
[00:00:10]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.transform-notifications-000002] creating index, cause [auto(bulk api)], templates [.transform-notifications-000002], shards [1]/[1]
[00:00:10]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.transform-notifications-000002]
[00:00:10]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [metrics-endpoint.metadata_current_default] creating index, cause [api], templates [metrics-metadata-current], shards [1]/[1]
[00:00:10]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [metrics-endpoint.metadata_current_default]
[00:00:10]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.transform-notifications-000002][0], [metrics-endpoint.metadata_current_default][0]]])." previous.health="YELLOW" reason="shards started [[.transform-notifications-000002][0], [metrics-endpoint.metadata_current_default][0]]"
[00:00:10]             │ info [o.e.x.t.t.TransformTask] [kibana-ci-immutable-centos-1622627639716682003] [endpoint.metadata_current-default-0.18.0] updating state for transform to [{"task_state":"started","indexer_state":"stopped","checkpoint":0,"should_stop_at_checkpoint":false}].
[00:00:10]             │ info [o.e.x.t.t.TransformPersistentTasksExecutor] [kibana-ci-immutable-centos-1622627639716682003] [endpoint.metadata_current-default-0.18.0] successfully completed and scheduled task in node operation
[00:00:12]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:13]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:14]             │ proc [kibana]   log   [10:07:31.912] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:14]             │ info [docker:registry] 2021/06/02 10:07:31 source.ip: 172.17.0.1:37242, url.original: /search?package=system&internal=true&experimental=true
[00:00:14]             │ proc [kibana]   log   [10:07:31.942] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:14]             │ info [docker:registry] 2021/06/02 10:07:31 source.ip: 172.17.0.1:37246, url.original: /search?package=system&internal=true&experimental=true
[00:00:14]             │ proc [kibana]   log   [10:07:31.953] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:14]             │ info [docker:registry] 2021/06/02 10:07:31 source.ip: 172.17.0.1:37250, url.original: /package/system/0.12.0
[00:00:14]             │ info [docker:registry] 2021/06/02 10:07:31 source.ip: 172.17.0.1:37254, url.original: /package/system/0.12.0/
[00:00:14]             │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-1622627639716682003] [.kibana_8.0.0_001/SfQ7i2kMQFiSRt_uSF1Y9w] update_mapping [_doc]
[00:00:16]             │ proc [kibana]   log   [10:07:33.951] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:16]             │ info [docker:registry] 2021/06/02 10:07:33 source.ip: 172.17.0.1:37260, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:16]             │ proc [kibana]   log   [10:07:33.970] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:16]             │ info [docker:registry] 2021/06/02 10:07:33 source.ip: 172.17.0.1:37264, url.original: /search?package=fleet_server&internal=true&experimental=true
[00:00:16]             │ proc [kibana]   log   [10:07:33.979] [info][fleet][plugins] Custom registry url is an experimental feature and is unsupported.
[00:00:16]             │ info [docker:registry] 2021/06/02 10:07:33 source.ip: 172.17.0.1:37268, url.original: /package/fleet_server/0.2.1
[00:00:16]             │ info [docker:registry] 2021/06/02 10:07:33 source.ip: 172.17.0.1:37272, url.original: /package/fleet_server/0.2.1/
[00:00:18]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.fleet-enrollment-api-keys-7] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:18]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.fleet-enrollment-api-keys-7]
[00:00:18]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.fleet-enrollment-api-keys-7][0]]])." previous.health="YELLOW" reason="shards started [[.fleet-enrollment-api-keys-7][0]]"
[00:00:20]             │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [.fleet-policies-7] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:20]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] updating number_of_replicas to [0] for indices [.fleet-policies-7]
[00:00:20]             │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.fleet-policies-7][0]]])." previous.health="YELLOW" reason="shards started [[.fleet-policies-7][0]]"
[00:00:21]           └-: Resolver tests
[00:00:21]             └-> "before all" hook in "Resolver tests"
[00:00:21]             └-: Resolver tests for the entity route
[00:00:21]               └-> "before all" hook in "Resolver tests for the entity route"
[00:00:21]               └-: winlogbeat tests
[00:00:21]                 └-> "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"
[00:00:21]                 └-> "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"
[00:00:21]                   │ info [endpoint/resolver/winlogbeat] Loading "mappings.json"
[00:00:21]                   │ info [endpoint/resolver/winlogbeat] Loading "data.json.gz"
[00:00:21]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:21]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="RED" message="Cluster health status changed from [YELLOW] to [RED] (reason: [index [winlogbeat-7.11.0-2020.12.03-000001] created])." previous.health="YELLOW" reason="index [winlogbeat-7.11.0-2020.12.03-000001] created"
[00:00:51]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001/ToubicB0RcqrCQizopwoXw] deleting index
[00:00:51]                   │ info [endpoint/resolver/winlogbeat] Deleted existing index "winlogbeat-7.11.0-2020.12.03-000001"
[00:00:51]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:51]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="RED" message="Cluster health status changed from [YELLOW] to [RED] (reason: [index [winlogbeat-7.11.0-2020.12.03-000001] created])." previous.health="YELLOW" reason="index [winlogbeat-7.11.0-2020.12.03-000001] created"
[00:01:21]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001/8MkdJVmRRwmUg70dTRoFNw] deleting index
[00:01:21]                   │ info [endpoint/resolver/winlogbeat] Deleted existing index "winlogbeat-7.11.0-2020.12.03-000001"
[00:01:21]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-1622627639716682003] [winlogbeat-7.11.0-2020.12.03-000001] creating index, cause [api], templates [], shards [1]/[1]
[00:01:21]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-1622627639716682003] current.health="RED" message="Cluster health status changed from [YELLOW] to [RED] (reason: [index [winlogbeat-7.11.0-2020.12.03-000001] created])." previous.health="YELLOW" reason="index [winlogbeat-7.11.0-2020.12.03-000001] created"
[00:01:51]                   └- ✖ fail: Endpoint plugin Resolver tests Resolver tests for the entity route winlogbeat tests "before all" hook for "returns a winlogbeat sysmon event when the event matches the schema correctly"
[00:01:51]                   │      ResponseError: resource_already_exists_exception
[00:01:51]                   │       at onBody (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:337:23)
[00:01:51]                   │       at IncomingMessage.onEnd (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:264:11)
[00:01:51]                   │       at endReadableNT (internal/streams/readable.js:1336:12)
[00:01:51]                   │       at processTicksAndRejections (internal/process/task_queues.js:82:21)
[00:01:51]                   │ 
[00:01:51]                   │ 

Stack Trace

ResponseError: resource_already_exists_exception
    at onBody (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:337:23)
    at IncomingMessage.onEnd (/dev/shm/workspace/kibana/node_modules/@elastic/elasticsearch/lib/Transport.js:264:11)
    at endReadableNT (internal/streams/readable.js:1336:12)
    at processTicksAndRejections (internal/process/task_queues.js:82:21) {
  meta: {
    body: { error: [Object], status: 400 },
    statusCode: 400,
    headers: {
      'content-type': 'application/json;charset=utf-8',
      'content-length': '481'
    },
    meta: {
      context: null,
      request: [Object],
      name: 'elasticsearch-js',
      connection: [Object],
      attempts: 1,
      aborted: false
    }
  }
}

Kibana Pipeline / general / X-Pack API Integration Tests.x-pack/test/api_integration/apis/management/index_management/indices·js.apis management index management indices list should list all the indices with the expected properties and data enrichers

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: apis
[00:00:00]           └-> "before all" hook in "apis"
[00:06:08]           └-: management
[00:06:08]             └-> "before all" hook in "management"
[00:06:26]             └-: index management
[00:06:26]               └-> "before all" hook in "index management"
[00:06:26]               └-: indices
[00:06:26]                 └-> "before all" hook in "indices"
[00:06:27]                 └-: list
[00:06:27]                   └-> "before all" hook for "should list all the indices with the expected properties and data enrichers"
[00:06:27]                   └-> should list all the indices with the expected properties and data enrichers
[00:06:27]                     └-> "before each" hook: global before each for "should list all the indices with the expected properties and data enrichers"
[00:06:27]                     └- ✖ fail: apis management index management indices list should list all the indices with the expected properties and data enrichers
[00:06:27]                     │       Error: expected [ 'aliases',
[00:06:27]                     │   'data_stream',
[00:06:27]                     │   'documents',
[00:06:27]                     │   'health',
[00:06:27]                     │   'hidden',
[00:06:27]                     │   'ilm',
[00:06:27]                     │   'isFollowerIndex',
[00:06:27]                     │   'isFrozen',
[00:06:27]                     │   'isRollupIndex',
[00:06:27]                     │   'name',
[00:06:27]                     │   'primary',
[00:06:27]                     │   'replica',
[00:06:27]                     │   'size',
[00:06:27]                     │   'status',
[00:06:27]                     │   'uuid' ] to sort of equal [ 'aliases',
[00:06:27]                     │   'documents',
[00:06:27]                     │   'health',
[00:06:27]                     │   'hidden',
[00:06:27]                     │   'ilm',
[00:06:27]                     │   'isFollowerIndex',
[00:06:27]                     │   'isFrozen',
[00:06:27]                     │   'isRollupIndex',
[00:06:27]                     │   'name',
[00:06:27]                     │   'primary',
[00:06:27]                     │   'replica',
[00:06:27]                     │   'size',
[00:06:27]                     │   'status',
[00:06:27]                     │   'uuid' ]
[00:06:27]                     │       + expected - actual
[00:06:27]                     │ 
[00:06:27]                     │        [
[00:06:27]                     │          "aliases"
[00:06:27]                     │       -  "data_stream"
[00:06:27]                     │          "documents"
[00:06:27]                     │          "health"
[00:06:27]                     │          "hidden"
[00:06:27]                     │          "ilm"
[00:06:27]                     │       
[00:06:27]                     │       at Assertion.assert (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/expect/expect.js:100:11)
[00:06:27]                     │       at Assertion.eql (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/expect/expect.js:244:8)
[00:06:27]                     │       at Context.<anonymous> (test/api_integration/apis/management/index_management/indices.js:206:39)
[00:06:27]                     │       at Object.apply (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)
[00:06:27]                     │ 
[00:06:27]                     │ 

Stack Trace

Error: expected [ 'aliases',
  'data_stream',
  'documents',
  'health',
  'hidden',
  'ilm',
  'isFollowerIndex',
  'isFrozen',
  'isRollupIndex',
  'name',
  'primary',
  'replica',
  'size',
  'status',
  'uuid' ] to sort of equal [ 'aliases',
  'documents',
  'health',
  'hidden',
  'ilm',
  'isFollowerIndex',
  'isFrozen',
  'isRollupIndex',
  'name',
  'primary',
  'replica',
  'size',
  'status',
  'uuid' ]
    at Assertion.assert (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/expect/expect.js:100:11)
    at Assertion.eql (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/expect/expect.js:244:8)
    at Context.<anonymous> (test/api_integration/apis/management/index_management/indices.js:206:39)
    at Object.apply (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16) {
  actual: '[\n' +
    '  "aliases"\n' +
    '  "data_stream"\n' +
    '  "documents"\n' +
    '  "health"\n' +
    '  "hidden"\n' +
    '  "ilm"\n' +
    '  "isFollowerIndex"\n' +
    '  "isFrozen"\n' +
    '  "isRollupIndex"\n' +
    '  "name"\n' +
    '  "primary"\n' +
    '  "replica"\n' +
    '  "size"\n' +
    '  "status"\n' +
    '  "uuid"\n' +
    ']',
  expected: '[\n' +
    '  "aliases"\n' +
    '  "documents"\n' +
    '  "health"\n' +
    '  "hidden"\n' +
    '  "ilm"\n' +
    '  "isFollowerIndex"\n' +
    '  "isFrozen"\n' +
    '  "isRollupIndex"\n' +
    '  "name"\n' +
    '  "primary"\n' +
    '  "replica"\n' +
    '  "size"\n' +
    '  "status"\n' +
    '  "uuid"\n' +
    ']',
  showDiff: true
}

Metrics [docs]

✅ unchanged

History

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

jloleysens added a commit to jloleysens/kibana that referenced this pull request Jun 4, 2021
jloleysens added a commit that referenced this pull request Jun 7, 2021
…" (#101358)

This reverts commit 662fe74.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
jloleysens added a commit to jloleysens/kibana that referenced this pull request Jun 7, 2021
…c#100130)" (elastic#101358)

This reverts commit 662fe74.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	x-pack/plugins/reporting/server/lib/store/store.ts
jloleysens added a commit that referenced this pull request Jun 7, 2021
…" (#101358) (#101475)

This reverts commit 662fe74.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	x-pack/plugins/reporting/server/lib/store/store.ts
gmmorris added a commit to gmmorris/kibana that referenced this pull request Jun 7, 2021
* master: (90 commits)
  Fix UI breaks on providing long search keyword in 'Search Box' (elastic#101385)
  Adds css class to EuiDescriptionListDescription in order to break word on exception details card (elastic#101481)
  [Lens] Increase timings for drag and drop tests (elastic#101380)
  [Lens] Fix editor react error on configuration panel (elastic#101367)
  [Fleet] Move integrations to a separate app (elastic#99848)
  Fix incorrect message displayed on importing Timeline Templates (elastic#101288)
  [Cases] RBAC (elastic#95058)
  [APM] Visual improvements for new APM layout with left navigation (elastic#101360)
  [master] More precise alerts matching (elastic#99820)
  [Lens] Value in legend (elastic#101353)
  Revert "[Reporting] ILM policy for managing reporting indices (elastic#100130)" (elastic#101358)
  [Discover] Fix header row of data grid in Firefox (elastic#101374)
  Add link to advanced setting in Discover (elastic#101154)
  Url service locators (elastic#101045)
  [Timelion] Update the removal message to mention the exact version (elastic#100994)
  [Security Solution][Detection Engine] Test cases for alias failure test cases where we don't copy aliases correctly (elastic#101437)
  [Event Log] Adding `type_id` to saved object array in event log (elastic#100939)
  [Reporting] Add `location.url` info to console message logs (elastic#101427)
  [Security Solutions][Detection Engine] Fixes timestamp bugs within source indexes when the formats are not ISO8601 format (elastic#101349)
  Improve Task Manager instrumentation (elastic#99160)
  ...
jloleysens added a commit to jloleysens/kibana that referenced this pull request Jun 14, 2021
* wip; added logic for creating ILM policy at start up

* added log when ilm policy is not created

* added test for start function

* updated ilm policy to not delete data

* actually update jest snapshots and remove unused import

* updated the ilm policy, removed the min_age for the hot phase

* update jest snapshot

* removed TODO comment

* debug log -> info log

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
(Deprecated) Feature:Reporting Use Reporting:Screenshot, Reporting:CSV, or Reporting:Framework instead release_note:enhancement v7.14.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants