Commit graph

49503 commits

Author SHA1 Message Date
Kibana Machine
e85b4f22ab
SavedObjects management: change index patterns labels to data views (#125356) (#125606)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit ff5a4dce9d)

Co-authored-by: Pierre Gayvallet <pierre.gayvallet@elastic.co>
2022-02-15 01:29:46 -07:00
Kibana Machine
b4abacdbd7
[ci-stats] add Client class for accessing test group stats (#125164) (#125586)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit 48e8a84c8c)

Co-authored-by: Spencer <spencer@elastic.co>
2022-02-14 15:54:31 -07:00
Kibana Machine
664b0e98f0
[Fleet] Add retries when starting docker registry in integration tests (#125530) (#125575)
(cherry picked from commit 57aefd0a6b)

Co-authored-by: Nicolas Chaulet <nicolas.chaulet@elastic.co>
2022-02-14 15:10:37 -07:00
Kibana Machine
785f7396db
[Fleet] Tell users when assets are installed in a different space (#125278) (#125573)
* Show new message when assets installed in separate space

* move variable into useEffect

(cherry picked from commit a81b11e0fb)

Co-authored-by: Mark Hopkin <mark.hopkin@elastic.co>
2022-02-14 14:46:01 -07:00
Kibana Machine
73cc89661d
[ci] Retry failed steps in on-merge pipeline (#125550) (#125570)
(cherry picked from commit 31c44389a1)

Co-authored-by: Brian Seeders <brian.seeders@elastic.co>
2022-02-14 13:48:04 -07:00
Ersin Erdal
4313930141
Alert doesn't fire action if it's muted or throttled (#124775) (#125562)
* Alert doesn't fire action if it's muted or throttled

(cherry picked from commit e4dd6e769c)

# Conflicts:
#	x-pack/plugins/alerting/server/task_runner/task_runner.test.ts
#	x-pack/plugins/alerting/server/task_runner/task_runner.ts
2022-02-14 12:52:26 -07:00
Dominique Clarke
bbefaf052e
[Uptime] handle null duration on ping list (#125438) (#125552)
* uptime - handle null duration

* adjust types

* Update x-pack/plugins/uptime/server/lib/synthetics_service/service_api_client.ts

* raise per page of synthetics monitors

* Remove tooltip

(cherry picked from commit 52e9c51d15)

# Conflicts:
#	x-pack/plugins/uptime/public/components/monitor/ping_list/ping_list_table.tsx
#	x-pack/plugins/uptime/public/components/overview/monitor_list/monitor_list.tsx
#	x-pack/plugins/uptime/server/lib/synthetics_service/synthetics_service.ts
2022-02-14 12:16:45 -07:00
Kibana Machine
6b8ea28550
Adds developer docs for uiSettings (#124648) (#125564)
(cherry picked from commit 483483e788)

Co-authored-by: Christiane (Tina) Heiligers <christiane.heiligers@elastic.co>
2022-02-14 13:48:18 -05:00
gchaps
a5acee4342
[DOCS] Minor tweaks to upgrade docs (#125538) (#125558)
(cherry picked from commit 93cb99db5d)
2022-02-14 13:04:42 -05:00
Kaarina Tungseth
dd3dd46593
[DOCS] Updates Upgrade Assistant API status (#125410) (#125554)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit 3b833f3d5b)
2022-02-14 13:02:48 -05:00
Kibana Machine
87895d8ff8
[ci] Splits Jest integration tests (#125454) (#125532)
(cherry picked from commit 435b772786)

Co-authored-by: Tyler Smalley <tyler.smalley@elastic.co>
2022-02-14 10:44:18 -07:00
Kibana Machine
34348522ca
[Fleet] Fix invalid permission entry if the elastic agent package is not installed (#125447) (#125529)
(cherry picked from commit d383bda82e)

Co-authored-by: Nicolas Chaulet <nicolas.chaulet@elastic.co>
2022-02-14 10:43:35 -07:00
gchaps
c975b6d7fd
[DOCS] Adds links to what's new (#125543)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-02-14 09:31:53 -08:00
Tiago Costa
dbe08f096b
skip flaky suite (#123372) 2022-02-14 15:46:26 +00:00
Christos Nasikas
1fbfbd091d
[Response Ops][Cases] Add more granular checks before decoding user actions (#124896) (#125468)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Christos Nasikas <christos.nasikas@elastic.co>
(cherry picked from commit 97bd50da88)

# Conflicts:
#	x-pack/plugins/cases/server/saved_object_types/migrations/user_actions/alerts.test.ts
#	x-pack/plugins/cases/server/saved_object_types/migrations/user_actions/alerts.ts

Co-authored-by: Jonathan Buttner <56361221+jonathan-buttner@users.noreply.github.com>
2022-02-14 04:00:31 -07:00
István Zoltán Szabó
ba0e374e38
[DOCS] Formats and fine-tunes ES query rule type docs (#125104) (#125471) 2022-02-14 04:44:23 -05:00
Kibana Machine
2d01f48b78
Reduces timeouts from 10 minutes per test down to 2 minutes and changes one log.error to log.debug to avoid spamming cloud servers (#125432) (#125441)
## Summary

Fixes https://github.com/elastic/kibana/issues/125319

Reduces timeouts from 10 minutes per test down to 2 minutes and changes log.error to log.debug to avoid spamming

I test this by making a failing test here:
```
x-pack/test/detection_engine_api_integration/security_and_spaces/tests/aliases.ts
```

By increasing `await waitForSignalsToBePresent(supertest, log, 4, [id]);` from `4` to `5`....Then I watched the logs and timed it to ensure it doesn't take 2 minutes.

I did this by running the server:
```sh
 node scripts/functional_tests_server.js --config test/detection_engine_api_integration/security_and_spaces/config.ts
```

And then running the client:
```sh
 node scripts/functional_test_runner.js --config test/detection_engine_api_integration/security_and_spaces/config.ts --include test/detection_engine_api_integration/security_and_spaces/tests/aliases.ts
```

If we start to see flake again on the regular build servers we might have to slightly increase this number again. If this doesn't allow failing servers to fully complete we might need to also decrease this number further or we might need to make this more configurable.

### Checklist

Delete any items that are not applicable to this PR.

- [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios

(cherry picked from commit 6d88579a50)

Co-authored-by: Frank Hassanabad <frank.hassanabad@elastic.co>
2022-02-11 15:11:20 -07:00
Kibana Machine
466ad82d4d
Add origin conflict checks when resolving import errors (#125241) (#125435)
(cherry picked from commit 5629decd9e)

Co-authored-by: Joe Portner <5295965+jportner@users.noreply.github.com>
2022-02-11 13:41:48 -07:00
Kibana Machine
9d2091b3fd
[Security Solution] Use search strategy error in timeline (#125178) (#125423)
(cherry picked from commit 4fe96b799e)

Co-authored-by: Steph Milovic <stephanie.milovic@elastic.co>
2022-02-11 12:56:01 -07:00
Kibana Machine
8381a82d64
[ML] Fix Trained Model stats and pipelines tab (#125382) (#125421)
(cherry picked from commit 67fb388acd)

Co-authored-by: Dima Arnautov <dmitrii.arnautov@elastic.co>
2022-02-11 12:34:19 -07:00
Tim Sullivan
b41b7ce896
[Reporting/Docs] Add clarity to reporting concepts (#125175) (#125412)
* discourage setting enabled:false

* mark xpack.reporting.kibanaServer as experimental

* move kibanaServer section down

* add kibana privileges with reporting options screenshot

* rephrase why reporting.roles is depreccated

* screenshot for how to define a custom role the grants reporting privileges

* Apply suggestions from code review

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>

* Apply suggestions from code review

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>

* Update docs/settings/reporting-settings.asciidoc

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>

* Apply suggestions from code review

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>

* Update docs/settings/reporting-settings.asciidoc

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>
(cherry picked from commit 1095208ace)
2022-02-11 12:33:08 -05:00
Kibana Machine
d3d6c779c0
[Security Solution] Data view override for sourcerer (#125116) (#125392)
(cherry picked from commit b0e534b1cd)

Co-authored-by: Steph Milovic <stephanie.milovic@elastic.co>
2022-02-11 10:28:39 -07:00
Christos Nasikas
30d0ca85ad
[8.0] [Response Ops][Cases] Fetch alerts within observability (#123883) (#125370)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Jonathan Buttner <56361221+jonathan-buttner@users.noreply.github.com>
2022-02-11 10:18:03 -07:00
Colson Wilhoit
2149b1703b
[Detection Rules] Add 8.0 rules (#125316) 2022-02-11 09:18:13 -06:00
Alison Goryachev
10e01709ec
[Upgrade Assistant] Add warning when remote clusters are configured (#125138) (#125296) (#125369) 2022-02-11 07:35:00 -07:00
Alison Goryachev
35d2e9a65f
[Upgrade Assistant] Update logic for handling reindex failures (#125246) (#125367) 2022-02-11 07:31:17 -07:00
Joe Reuter
95ffb91fd6
[8.0] [TSVB] Fix shard failures are not reported (#123474) (#125046)
* [TSVB] Fix shard failures are not reported (#123474)

* [TSVB] Fix shard failures are not reported #122944

Closes: #122944

* fix PR comments

* Update ui_settings.ts

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit 7e1b780672)

# Conflicts:
#	src/plugins/vis_types/timeseries/kibana.json
#	src/plugins/vis_types/timeseries/public/metrics_type.ts

* fix

* fix telemetry

Co-authored-by: Alexey Antonov <alexwizp@gmail.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-02-11 06:33:46 -07:00
Kibana Machine
b2c4f039c1
remove tabify performance issue (#124931) (#125045)
(cherry picked from commit ecff412e22)

Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
2022-02-11 06:32:42 -07:00
Tiago Costa
0d39b29c26
skip flaky suite (#118288) 2022-02-11 12:28:52 +00:00
Sergi Massaneda
2466d4130a
[8.0] [SecuritySolution] Close field editor when page context is lost (#124378) (#124935)
* [SecuritySolution] Close field editor when page context is lost (#124378)

* close field editor when context is lost

* tests added

* typecheck clean

* close editor when timeline is unmounted

(cherry picked from commit 21710dfb77)

# Conflicts:
#	x-pack/plugins/security_solution/public/timelines/components/create_field_button/index.tsx

* fix test

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-02-11 05:19:29 -07:00
James Gowdy
38eeef6995
[File data visualizer] Removing file upload retries (#123696) (#123790)
(cherry picked from commit 3797b78ce7)

# Conflicts:
#	x-pack/plugins/file_upload/server/import_data.ts

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-02-11 11:29:14 +00:00
Kibana Machine
2fb14e2328
Fix index pattern reference in tooltip (#125220) (#125343)
(cherry picked from commit 1dc175fb2e)

Co-authored-by: Jorge Sanz <jorge.sanz@elastic.co>
2022-02-11 04:02:10 -07:00
Milton Hultgren
b0e52e552a
[Stack Monitoring] Page layout fixes (#124182) (#125341)
* adding EUI page layout components

* adding context menu button to toolbar and cleaning up tabs

* [Monitoring] Integrate setup mode toggle button with React tree

* Update unit tests

* Only show setup mode button on supported pages

* Move setup mode supported responsibility to renderer

* Fix failing unit test

Co-authored-by: Milton Hultgren <milton.hultgren@elastic.co>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit aad83ed0b6)

# Conflicts:
#	x-pack/plugins/monitoring/public/application/pages/page_template.tsx

Co-authored-by: Kate Farrar <kate.farrar@gmail.com>
2022-02-11 03:44:35 -07:00
Kibana Machine
b23900728c
[ML] Fixing results service space checks (#124707) (#124833)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit afb458ede7)

Co-authored-by: James Gowdy <jgowdy@elastic.co>
2022-02-11 02:59:17 -07:00
James Gowdy
8de9d603a1
[ML] Fix anomaly detector jobs list search delay (#124328) (#124845)
(cherry picked from commit fd0e1aed0e)

# Conflicts:
#	x-pack/plugins/ml/public/application/jobs/jobs_list/components/jobs_list_view/jobs_list_view.js

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-02-11 08:30:08 +00:00
Tiago Costa
471788c121
chore(NA): bump version to 8.0.1 (#125291)
* chore(NA): bump version to 8.0.1

* chore(NA): bump ingest pipelines plugin
2022-02-10 18:48:53 -07:00
Kibana Machine
36cc0945cf
[kbn-pm] Add trailing newline in package.json (#125320) (#125329)
(cherry picked from commit 643e4392b0)

Co-authored-by: Tyler Smalley <tyler.smalley@elastic.co>
2022-02-10 18:44:12 -07:00
gchaps
fc3359ea86
[DOCS] Updates the Upgrade docs (#125288) (#125328)
* [DOCS] Adds redirect for Standard Upgrade doc

* [DOCS] Updates Upgrade docs

* [DOCS] Incorporates review comments

* [DOCS] Adds info on saved objects

* [DOCS] Fixes broken link

* [DOCS] Fixes placement of section on unknown saved objects

* [DOCS] Removes duplicate topic

(cherry picked from commit a13dafc7dd)
2022-02-10 19:10:10 -05:00
Kibana Machine
21e54e0195
fix flaky test (#125256) (#125308)
(cherry picked from commit 31328ff51d)

Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
2022-02-10 15:08:31 -07:00
Quynh Nguyen
d5a9f0b375
[ML] Fix runtime field validations not supporting special script types (#122469) (#125300)
* Fix validations not handling extra things like params or lang

* Add translations

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit f8d932f70a)
2022-02-10 14:07:37 -07:00
Kibana Machine
27362eb699
Improve docs for unknown saved object types (#125253) (#125309)
* Revert "Revert "Docs for preventing migrations failing for unknown saved object types""

This reverts commit 580d61d990.

* Fix links and versions for note to use UA

* Migration docs: remove content related to 6.x versions

* Upgrade docs, remove content for upgrading from v4/v5

* Link to 7.17 upgrade assistant

* Apply suggestions from code review

Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
Co-authored-by: Christiane (Tina) Heiligers <christiane.heiligers@elastic.co>

* Update docs/setup/upgrade/upgrade-migrations.asciidoc

Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>

Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
Co-authored-by: Christiane (Tina) Heiligers <christiane.heiligers@elastic.co>
(cherry picked from commit f3b01b6751)

Co-authored-by: Rudolf Meijering <skaapgif@gmail.com>
2022-02-10 15:56:53 -05:00
Kibana Machine
04e0a3e8b0
click slower in timepicker (#125264) (#125286)
(cherry picked from commit ec7f2f3d8c)

Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
2022-02-10 12:34:27 -07:00
Kibana Machine
889f52e096
Disabled import button while no file is attached (#125180) (#125283)
(cherry picked from commit ea9255342e)

Co-authored-by: Christiane (Tina) Heiligers <christiane.heiligers@elastic.co>
2022-02-10 12:17:16 -07:00
Kibana Machine
ac347068e3
[DOCS] Adds 123550 known issue to rc1 release notes (#124987) (#125293)
* [DOCS] Adds 123550 known issue to rc1 release notes

* Extra docs

* Whoops

* Add docs link to changelog

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Update docs/management/saved-objects/saved-object-ids.asciidoc

Co-authored-by: Larry Gregory <lgregorydev@gmail.com>

* Updates location and copy

* Small tweaks

* Review feedback

Co-authored-by: Joe Portner <joseph.portner@elastic.co>
Co-authored-by: Larry Gregory <lgregorydev@gmail.com>
(cherry picked from commit bc01e77423)

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>
2022-02-10 14:00:34 -05:00
gchaps
3b9c3de410
[DOCS] Fixes Discover image in what's new (#125269) 2022-02-10 08:42:11 -08:00
Kibana Machine
27e5636c1f
count err status codes in security telemetry (#125120) (#125245)
(cherry picked from commit 1a0e4a50d5)

Co-authored-by: Pete Hampton <pjhampton@users.noreply.github.com>
2022-02-10 09:05:47 -07:00
Kibana Machine
13624279c1
sync docs with new defaults for apm searchAggregatedTransactions setting (#125165) (#125242)
(cherry picked from commit 35f51bb96b)

Co-authored-by: Gil Raphaelli <gil@elastic.co>
2022-02-10 09:10:54 -05:00
James Rodewig
09797c0ab0
[DOCS] Remove 8.0.0 coming tag (#125229) (#125233)
Removes a coming tag from the 8.0.0 Breaking Changes.

(cherry picked from commit e2480a131d)
2022-02-10 08:17:20 -05:00
James Rodewig
efa46acd27
[DOCS] Removes tags from 8.0.0 release docs (#125115) (#125226)
Removes the coming tags from the 8.0.0 What's new and Release notes.

(cherry picked from commit 820bfde69a)

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>
2022-02-10 07:39:49 -05:00
Yulia Čech
390f76bb15
[8.0] [IM] Removed undefined data stream link (#124847) (#125110)
* [IM] Removed undefined data stream link (#124847)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit 67cd496daa)

# Conflicts:
#	x-pack/plugins/index_management/__jest__/client_integration/home/indices_tab.helpers.ts

* [IM] Fixed backport merge conflict error
2022-02-10 04:34:04 -07:00