Commit graph

43830 commits

Author SHA1 Message Date
Kibana Machine
a4f4a202a5
fix check for security and added jest test (#109429) (#110013)
Co-authored-by: Jean-Louis Leysens <jloleysens@gmail.com>
2021-08-25 11:03:16 +00:00
Kibana Machine
4ea7a0cf40
Don't use hash query for agent logs URL state (#109982) (#110004)
Co-authored-by: Jen Huang <its.jenetic@gmail.com>
2021-08-25 06:42:21 -04:00
Kibana Machine
c72f1d8acf
[Home] Use unified API to show/hide the Welcome interstitial (#109650) (#110000)
Co-authored-by: Alejandro Fernández Haro <alejandro.haro@elastic.co>
2021-08-25 06:04:44 -04:00
Kibana Machine
16c7fb7b55
[APM] Separate useUrlParams hooks for APM/Uptime (#109579) (#109997)
Co-authored-by: Dario Gieselaar <dario.gieselaar@elastic.co>
2021-08-25 05:03:33 -04:00
Kibana Machine
e126836429
[RAC] [o11y] add permission in alerts table from kibana privilege/consumer (#109759) (#109989)
* add alert permission in o11y

* review I

* review II

* fix selection all when checkbox disabled

* fix selected on bulk actions

Co-authored-by: Xavier Mouligneau <189600+XavierM@users.noreply.github.com>
2021-08-25 01:54:44 -04:00
Kibana Machine
9a2ce68c9e
[RAC] [TGrid] Use EuiDataGridColumn schemas (for sorting) (#109983) (#109986)
## Summary

Updates the `TGrid` to use `EuiDataGrid` [schemas](https://eui.elastic.co/#/tabular-content/data-grid-schemas-and-popovers/) as suggested by @snide in the following issue: <https://github.com/elastic/kibana/issues/108894>

## Desk testing

1) In the `Security Solution`, navigate to `Security > Rules` and enable multiple detection rules that have different `Risk Score`s

**Expected result**

- The Detection Engine generates alerts (when the rule's criteria is met) that have different risk scores

2) Navigate to the `Security > Alerts` page

**Expected results**

As shown in the screenshot below:

- The alerts table is sorted by `@timestamp` in descending (Z-A) order, "newest first"
- The `@timestamp` field in every row is newer than, or the same time as the row below it
- The alerts table shows a non-zero count of alerts, e.g. `20,600 alerts`

![alerts-table-at-page-load](https://user-images.githubusercontent.com/4459398/130700525-343d51af-7a3a-475c-b3b4-b429bc212adf.png)

_Above: At page load, the alerts table is sorted by `@timestamp` in descending (Z-A) order, "newest first"_

3) Observe the count of alerts shown in the header of the alerts table, e.g. `20,600 alerts`, and then change the global date picker in the KQL bar from `Today` to `Last 1 year`

**Expected results**

- The golbal date picker now reads `Last 1 year`
- The count of the alerts displayed in the alerts table has increased, e.g. from `20,600 alerts` to `118,709 alerts`
- The `@timestamp` field in every row is (still) newer than, or the same time as the row below it

4) Click on the `@timestamp` column, and choose `Sort A-Z` from the popover, to change the sorting to ascending, "oldest first", as shown in the screenshot below:

![click-sort-ascending](https://user-images.githubusercontent.com/4459398/130701250-3f229644-2a78-409e-80ff-f88588562190.png)

_Above: Click `Sort A-Z` to sort ascending, "oldest first"_

**Expected results**

As shown in the screenshot below:

- The alerts table is sorted by `@timestamp` in ascending (A-Z) order, "oldest first"
- The `@timestamp` field in every row is older than, or the same time as the row below it
- `@timestamp` is older than the previously shown value, e.g. `Aug 3` instead of `Aug 24`

![timestamp-ascending-oldest-first](https://user-images.githubusercontent.com/4459398/130702221-cc8cf84f-c044-4574-8a93-b9d35c14c890.png)

_Above: The alerts table is now sorted by `@timestamp` in ascending (A-Z) order, "oldest first"_

5) Click on the `Risk Score` column, and choose `Sort A-Z` from the popover, to add `Risk Score` as a secondary sort in descending (Z-A) "highest first" order, as shown in the screenshot below:

![sort-risk-score](https://user-images.githubusercontent.com/4459398/130702599-e4c0d74a-8775-435b-a263-5b6b278f6dfd.png)

_Above: Click `Sort A-Z` to add `Risk Score` as a secondary sort in descending (Z-A) "highest first" order_

**Expected results**

- The alerts table re-fetches data
- The alerts table shows `2 fields sorted`

6) Hover over the alerts table and click the `Inspect` magnifiing glass icon

**Expected result**

- The `Inspect` modal appaers, as shown in the screenshot below:

![inspect](https://user-images.githubusercontent.com/4459398/130702849-1189f32e-eb03-4d9d-b248-6c6f0b5665fa.png)

_Above: the `Inspect` modal_

7) Click the `Request` tab, and scroll to the `sort` section of the request

**Expected result**

Per the JSON shown below:

- The request is sorted first by `@timestamp` in ascending (A-Z) order, "oldest first"
- The request is sorted second by `signal.rule.risk_score` descending (Z-A) "highest first" order

```json
  "sort": [
    {
      "@timestamp": {
        "order": "asc",
        "unmapped_type": "date"
      }
    },
    {
      "signal.rule.risk_score": {
        "order": "desc",
        "unmapped_type": "number"
      }
    }
  ],
```

8) Click `Close` to close the `Inspect` modal

9) Click `2 fields sorted` to display the sort popover

10) Use the drag handles to, via drag-and-drop, update the sorting such that `Risk Score` is sorted **before** `@timestamp`, as shown in the screenshot below:

![sort-by-risk-score-first](https://user-images.githubusercontent.com/4459398/130704159-523effa2-21ef-4599-a939-964fc523f9ec.png)

_Above: Use the drag handles to, via drag-and-drop, update the sorting such that `Risk Score` is sorted **before** `@timestamp`_

**Expected results**

As shown in the screenshot below:

- The table is updated to be sorted first by the higest risk score, e.g. previously `47`, now `73`
- The alerts table is sorted second by `@timestamp` in ascending (A-Z) order, "oldest first", and *may* have changed, e.g. from `Aug 3` to `Aug 12`, depending on the sample data in your environment

![highest-risk-score](https://user-images.githubusercontent.com/4459398/130704878-163a2427-fc7a-4755-9adc-a06b0d7b8e43.png)

_Above: The alerts table is now sorted first by highest risk score_

11) Once again, hover over the alerts table and click the `Inspect` magnifiing glass icon

12) Once again, click the `Request` tab, and scroll to the `sort` section of the request

**Expected result**

Per the JSON shown below:

- The request is sorted first by `signal.rule.risk_score` in descending (Z-A) "highest first" order
- The request is sorted second by `@timestamp` in ascending (A-Z) order, "oldest first"

```json
  "sort": [
    {
      "signal.rule.risk_score": {
        "order": "desc",
        "unmapped_type": "number"
      }
    },
    {
      "@timestamp": {
        "order": "asc",
        "unmapped_type": "date"
      }
    }
  ],
```

Co-authored-by: Andrew Goldstein <andrew-goldstein@users.noreply.github.com>
2021-08-25 01:30:13 -04:00
Steph Milovic
e028409a98
[7.x] [Security Solution] [Bugfix] Fix analyzer missing from alert table (#109183) (#109727)
* resolve conflicts

* rm whoops

* actually fix whoops

* fix type

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-08-24 22:05:33 -04:00
Kibana Machine
764690d9b2
[canvas][nit] Kill dead, ugly error handler (#109771) (#109981)
Co-authored-by: Clint Andrew Hall <clint.hall@elastic.co>
2021-08-24 21:59:39 -04:00
Kibana Machine
24a2963122
Fix text size for DLP callout (#109964) (#109978)
Co-authored-by: Scotty Bollinger <scotty.bollinger@elastic.co>
2021-08-24 21:55:39 -04:00
Kibana Machine
bd5b648997
[Cases][Observability] Disabling sync alerts for observability (#109929) (#109973)
* Disabling sync alerts for observability

* Adding unit tests

Co-authored-by: Jonathan Buttner <56361221+jonathan-buttner@users.noreply.github.com>
2021-08-24 20:27:34 -04:00
CJ Cenizal
7c79a81b25
Change copy references of 'deprecation issues' to 'deprecation warnings'. (#109963) 2021-08-24 17:03:01 -07:00
Kibana Machine
276824ae5d
ensure all kibana.json files have owners and they are consistent (#109731) (#109969)
Co-authored-by: spalger <spalger@users.noreply.github.com>

Co-authored-by: Spencer <email@spalger.com>
Co-authored-by: spalger <spalger@users.noreply.github.com>
2021-08-24 19:48:18 -04:00
Corey Robertson
dd8866cf9f
[Presentation] Adds owner to presentation team plugin kibana.json. Updated CODEOWNERS (#108408) (#109962)
* Adds owner to presentation team plugin kibana.json. Updated CODEOWNERS

* Adds a few more owners for presentation
# Conflicts:
#	.github/CODEOWNERS
#	src/plugins/dashboard/kibana.json
2021-08-24 19:08:47 -04:00
Kibana Machine
2f9b026a80
fix unit prop and default it only in the tGrid body (#109252) (#109389)
Co-authored-by: Sergi Massaneda <sergi.massaneda@elastic.co>
2021-08-24 22:47:53 +00:00
Kibana Machine
10a7f73753
Prevent long errors from breaking UI (#109899) (#109936)
Co-authored-by: Scotty Bollinger <scotty.bollinger@elastic.co>
2021-08-24 18:05:10 -04:00
Kibana Machine
9af96a8009
[Enterprise Search] Set up cypress-axe tests (#108465) (#109920)
* Set up cypress-axe

@see https://github.com/component-driven/cypress-axe

* DRY out Kibana axe rules into constants that Cypress can use

* Create shared & configured checkA11y command

+ fix string union type error
+ remove unnecessary tsconfig exclude

* Add Overview plugin a11y tests

* Add AS & WS placeholder a11y checks

- Mostly just re-exporting the shared command and checking for failures, I only ran this after the shared axe config settings and found no failures

* Configure our axe settings further to catch best practices

- notably heading level issues (thanks Byron for catching this!)

- however I now also need to set an ignore on a duplicate landmark violation caused by the global header (not sure why it's showing up - shouldn't it be out of context? bah)

- remove option to pass args into checkA11y - I figure it's not super likely we'll need to override axe settings per-page (vs not running it), but we can pass it custom configs or args later if needed

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

Co-authored-by: Constance <constancecchen@users.noreply.github.com>
2021-08-24 21:28:49 +00:00
gchaps
3006381216
[7.x] [DOCS] Updates create index pattern (#106935) (#109748)
* [DOCS] Updates create index pattern (#106935)

* [DOCS] Updates create index pattern

* [DOCS] Adds info on refresh

* Update docs/concepts/index-patterns.asciidoc

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* Update docs/concepts/index-patterns.asciidoc

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* Update docs/concepts/index-patterns.asciidoc

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* Update docs/concepts/index-patterns.asciidoc

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* Update docs/concepts/index-patterns.asciidoc

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* [DOCS] Addresses more review comments

* [DOCS] Updates images

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

* Update docs/concepts/index-patterns.asciidoc

* Update docs/concepts/index-patterns.asciidoc

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>
2021-08-24 17:28:36 -04:00
Kibana Machine
7b0adb268c
[Maps] fix choropleth map with applyGlobalQuery set to false still creates filter for source. (#108999) (#109915)
* [Maps] fix choropleth map with applyGlobalQuery set to false still creates filter for source.

* cleanup functional test

* eslint

* fix functional test

* add inidication in tooltip when field is join key

* copy updates

* update jest test

* eslint

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

Co-authored-by: Nathan Reese <reese.nathan@gmail.com>
2021-08-24 17:10:40 -04:00
Kibana Machine
5e3572ef51
[Security Solution] Add reason field (#108449) (#108645)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Angela Chuang <6295984+angorayc@users.noreply.github.com>
2021-08-24 16:56:44 -04:00
Kibana Machine
d30ae561bc
[Fleet] Fix Add Integration page title + Add Integration button icon (#109728) (#109913)
* Fix page title for add integration page

* Revert Add Integration icon to plusInCircle

Co-authored-by: Kyle Pollich <kyle.pollich@elastic.co>
2021-08-24 16:46:01 -04:00
CJ Cenizal
7947341c82
Add "Back up data" step to UA (#109543)
* Add backup step with static content and link to Snapshot and Restore.
* Add snapshot_restore locator.
* Remove unnecessary describe block from Upgrade Step tests.
* Remove unused render_app.tsx.
2021-08-24 12:51:41 -07:00
Kibana Machine
a79cc45384
[RAC] Fix scrolling on Obs alerts table (#109139) (#109895)
* Fix scrolling on obs alerts table and default to 50 items per page

Co-authored-by: Kerry Gallagher <471693+Kerry350@users.noreply.github.com>
2021-08-24 15:42:40 -04:00
Kibana Machine
04103e9ac6
[APM] Suggestion to remove "Kuery" bar from Logs view in APM service overview experience (#109733) (#109884)
* removing kuery bar from logs tab

* fixing ts issue

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

Co-authored-by: Cauê Marcondes <55978943+cauemarcondes@users.noreply.github.com>
2021-08-24 15:01:22 -04:00
Kibana Machine
90c181e722
[Workplace search] Fix several router issues (#109839) (#109881)
* Make "Add more sources" button take users to Add Sources instead of Sources

* Remove several redundant variables in codebase

`canCreateInvitations` and `canCreateContentSources` are always true for admin.
If someone can access admin dashboard, we can safely assume that they are admin.

`isCurated` is outdated variable and backend always returns it as false.

* Add redirect from workplace_search/p/ to workplace_search/p/sources/

Before workplace_search/p/ was returning 404

* Fix redirect always being fired on `workplace_search/p/sources/add` page load

When opening `workplace_search/p/sources/add` as a bookmark or reloading this page,
Sources router first get rendered *before* it receives the canCreatePersonalSources value.
This results in canCreatePersonalSources always being undefined on the first render,
and user always getting redirected to `workplace_search/p/sources`.
Here we check for this value being present before we render any routes.

Co-authored-by: Vadim Yakhin <yakhin.v@gmail.com>
2021-08-24 14:47:16 -04:00
Michael Dokolin
c74f4e9a2d
[Reporting] Increase unit tests coverage (#109547) (#109878) 2021-08-24 14:33:42 -04:00
Kibana Machine
80adb999b1
Cleanup after ExecLog integration (#107695) (#109871)
Co-authored-by: Dmitry Shevchenko <dmshevch@gmail.com>
2021-08-24 14:07:49 -04:00
Kibana Machine
ea9803b444
[Uptime] [Synthetics Integration] Synthetics fix tests (#109706) (#109865)
* focus tests

* adjust id

* unfocus test

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

Co-authored-by: Dominique Clarke <doclarke71@gmail.com>
2021-08-24 17:35:05 +00:00
Kibana Machine
7ab80e5497
[Security Solution] - hide alerts from deepLinks if no read privilege (#109510) (#109863)
* hide alerts from deepLinks if no read privilege

* explanatory comment added

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

Co-authored-by: Sergi Massaneda <sergi.massaneda@elastic.co>
2021-08-24 13:34:19 -04:00
Kibana Machine
26509e91c4
[Maps] fix auto fit to bounds not working when map is embedded in dashboard (#109479) (#109858)
* [Maps] fix auto fit to bounds not working when map is embedded in dashboard

* tslint and eslint

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

Co-authored-by: Nathan Reese <reese.nathan@gmail.com>
2021-08-24 17:12:38 +00:00
Kibana Machine
792760bce4
[Security Solution] [Bugfix] Fixes broken alert actions (add to case, investigate in timeline) (#109339) (#109855)
Co-authored-by: Steph Milovic <stephanie.milovic@elastic.co>
2021-08-24 13:11:38 -04:00
Kibana Machine
b1c0879b11
Fix field formatters test on cloud (#109707) (#109851)
Co-authored-by: liza-mae <liza-mae@users.noreply.github.com>
2021-08-24 12:37:23 -04:00
Kibana Machine
ee3b2f5030
Update Missing Privileges callout (#109420) (#109810)
Co-authored-by: Dmitry Shevchenko <dmshevch@gmail.com>
2021-08-24 16:33:46 +00:00
Kibana Machine
ef248aefdf
[canvas] Prevent scroll 'jumping' with always-there scrollbars (#109765) (#109848)
Co-authored-by: Clint Andrew Hall <clint.hall@elastic.co>
2021-08-24 12:33:30 -04:00
Kibana Machine
7467f58ead
[DataViews] Fix redundant fields requests that cause errors (#109702) (#109845)
Co-authored-by: Anton Dosov <anton.dosov@elastic.co>
2021-08-24 12:30:32 -04:00
Kibana Machine
ee46f33668
[Security Solutions] Adds missing exceptionable field for behavior protections (#109782) (#109838)
Co-authored-by: Esteban Beltran <academo@users.noreply.github.com>
2021-08-24 12:02:54 -04:00
Kibana Machine
44f7b620cc
[Metrics UI] Unskip Inventory View Saved View Tests (#109697) (#109841)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Chris Cowan <chris@chriscowan.us>
2021-08-24 11:58:51 -04:00
Cauê Marcondes
d0195d7897
adding e2e test (#109723) (#109835) 2021-08-24 11:47:22 -04:00
Alejandro Fernández Gómez
e638552b6f
[7.x] [RAC] Enable workflow status filtering (#108215) (#109817)
* [RAC] Enable workflow status filtering (#108215)

Co-authored-by: Jason Rhodes <jason.matthew.rhodes@gmail.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	x-pack/plugins/observability/public/pages/alerts/alerts_table_t_grid.tsx
#	x-pack/plugins/observability/public/pages/alerts/index.tsx

* Backport changes in the tests

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-08-24 11:43:28 -04:00
Kibana Machine
89d8ad0a0b
[App Search] Fix typo in content verification fallback message (#109743) (#109833)
Co-authored-by: Orhan Toy <toyorhan@gmail.com>
2021-08-24 15:29:11 +00:00
Kibana Machine
2eece0e659
[Maps][Docs]Reverse geocoding tutorial (#108712) (#109869)
* [Maps] reverse geocoding tutorial

* reverse geocoding step

* add final step

* use dash delemiter instead of underscore in file name

* add float to step 3 so its on the same page

* add into to step 3

* update csa URL to point to elastic/examples repo

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* review feedback

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* Update docs/maps/reverse-geocoding-tutorial.asciidoc

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

* add sentence about not needing geoip

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

Co-authored-by: Nathan Reese <reese.nathan@gmail.com>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
2021-08-24 11:27:15 -04:00
Kibana Machine
b0f8ffdc1a
[Security Solution][RAC] - Hide hover actions overflow (#109693) (#109819)
* add overflow

* fix types error

Co-authored-by: Michael Olorunnisola <michael.olorunnisola@elastic.co>
2021-08-24 10:04:00 -04:00
Kibana Machine
c3a387d2f8
[APM] Use useTimeRange where possible (#109572) (#109803)
Co-authored-by: Dario Gieselaar <dario.gieselaar@elastic.co>
2021-08-24 13:33:49 +00:00
Michael Olorunnisola
c4f35a26d1
[Security Solution][RAC] Remove toggle column when not usable (#109534) (#109729) 2021-08-24 09:33:19 -04:00
Kibana Machine
9bf9b6c073
[ML] Removes hardcoded datafeed indices for security auth and network modules (#109692) (#109784)
Co-authored-by: Pete Harverson <peteharverson@users.noreply.github.com>
2021-08-24 13:08:18 +00:00
Kibana Machine
4bdee23be3
[Alerting][Docs] Updating alerting setup docs (#109285) (#109827)
* Updating alerting authorization docs

* Apply suggestions from code review

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

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

Co-authored-by: ymao1 <ying.mao@elastic.co>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
2021-08-24 08:37:57 -04:00
Kibana Machine
94b12f1af4
[Data][Es Query] Use ES types in Filters (#108378) (#109793)
* es-query types

* jest and lint

* cc

* options

* type

* types for kuery FUNCTIONS

* doc

* types for filters

* sec fixes

* filtersss

* typey type

* typey type

* comparator options

* test typescript

* test

* fixes

* test types

* test

* cr

* cleanup a bit more

* Jest fix + types

* Remove geo bounding box and geo polygon filters

* delete geo filters

* geo

* geo

* Fix tests \_0_/

* doc

* types and fixes

* jests

* ts

* Remove geo bounding box and geo polygon filters

* delete geo filters

* delete geo filters

* geo

* remove geo docs

* ts

* plg ts

* types

* cast

* Update types.ts

* Update create_threat_signal.ts

* Update packages/kbn-es-query/src/es_query/migrate_filter.ts

Co-authored-by: Lukas Olson <olson.lukas@gmail.com>

* Code review

* revert change

* docs

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Lukas Olson <olson.lukas@gmail.com>

Co-authored-by: Liza Katz <lizka.k@gmail.com>
Co-authored-by: Lukas Olson <olson.lukas@gmail.com>
2021-08-24 07:56:17 -04:00
Georgii Gorbachev
64a79a1a41
[Security Solution] Fixes the Alerts timeline failing test on master (#109644) (#109716)
* fixes 'Alerts timeline' tests

* adds data test subj for the loading spinner

Co-authored-by: Gloria Hornero <snootchie.boochies@gmail.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-08-24 07:01:01 -04:00
Ashokaditya
ecd0e434e2
remove min and max date restrictions (#109452) (#109597) 2021-08-24 06:50:59 -04:00
Kibana Machine
2e33b422cd
fix disabled dropdown in alerts table (#109724) (#109780)
Co-authored-by: Angela Chuang <6295984+angorayc@users.noreply.github.com>
2021-08-24 06:27:50 -04:00
Kibana Machine
f57fa6da17
[ML] Update API docs generation script to comply with new docs format (#109343) (#109781)
* [ML] update deps

* [ML] fix script

* [ML] add header

* [ML] generate header

Co-authored-by: Dima Arnautov <dmitrii.arnautov@elastic.co>
2021-08-24 06:21:39 -04:00