Catherine Liu
626f2e2710
[Canvas] Fix flaky custom element functional tests ( #65908 ) ( #67195 )
...
* Enable clearWithKeyboard option when filling out custom elements form
* Added canvas functional tests path to CODEOWNERS
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-05-21 18:23:59 -07:00
spalger
dbbd39c512
skip flaky suite ( #62927 )
...
(cherry picked from commit bc3f382883
)
2020-04-22 13:33:39 -07:00
Brian Seeders
e195697e47
Skip failing canvas custom elements test
2020-04-21 11:21:38 -04:00
Robert Oskamp
b5d4ca6ae4
[ML] Functional API tests - bucket span estimation with custom search.max_buckets ( #59665 ) ( #59772 )
...
This PR adds functional API tests for the bucket span estimation endpoint with a transient or persistent `search.max_buckets` setting.
2020-03-10 18:11:06 +01:00
Brian Seeders
78508b856d
Ensure logged out starting state for tests that need it ( #59322 ) ( #59573 )
2020-03-10 10:45:20 -04:00
Brian Seeders
c8a5b63556
Check for alert dialog when doing a force logout ( #59329 ) ( #59594 )
...
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-03-10 10:44:54 -04:00
Spencer
692e2a5693
[7.6] Fix visual baseline job ( #59348 ) ( #59471 )
...
* Establish Percy baselines
* move Jenkinsfile changed back to `.ci` directory
* rename xpack workers
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-03-05 18:13:04 -07:00
Chris Cowan
c7f840b1c8
[7.6] [Metrics UI] Ensure inventory view buckets never drop below 60 seconds ( #58503 ) ( #58912 )
...
* [Metrics UI] Ensure inventory view buckets never drop below 60 seconds (#58503 )
* [Metrics UI] Ensure inventory view buckets never drop below 60 seconds
* Fixing tests
* Fixing tests... again
* Fixing tests... rounding issue?
* Trying to fix the tests... again
* updating test for custom metric
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
* Fixing tests due to rounding issue
* Removing test that shouldn't have been backported.
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-03-02 14:17:44 -07:00
Devin W. Hurley
4e61c134a6
small bug fixes that are already in master but that PR had too many conflicts to resolve so just adding bug fixes here ( #58544 )
2020-02-25 21:41:53 -05:00
Joe Reuter
f68147aada
hide welcome screen for cloud ( #58371 ) ( #58449 )
2020-02-25 14:44:43 +01:00
Andrew Cholakian
c11e866811
[Uptime] Use scripted metric for snapshot calculation ( #58247 )
...
Fixes #58079
This is an improved version of #58078
Note, this is a bugfix targeting 7.6.1 . I've decided to open this PR directly against 7.6 in the interest of time. We can forward-port this to 7.x / master later.
This patch improves the handling of timespans with snapshot counts. This feature originally worked, but suffered a regression when we increased the default timespan in the query context to 5m. This means that without this patch the counts you get are the maximum total number of monitors that were down over the past 5m, which is not really that useful.
We now use a scripted metric to always count precisely the number of up/down monitors. On my box this could process 400k summary docs in ~600ms. This should scale as shards are added.
I attempted to keep memory usage relatively slow by using simple maps of strings.
2020-02-24 11:45:23 -06:00
Frank Hassanabad
5646412c53
[SIEM][Detection Engine] Fixes return codes where some were rule_id instead of id ( #58192 )
...
## Summary
Fixes some return error codes where they were `rule_id` when they should have been `id`
- [x] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility ) were updated or added to match the most common scenarios
2020-02-20 18:03:05 -07:00
Yara Tercero
d18b21be48
[7.6] [SIEM] [Detections Engine] Import rules unit tests ( #57466 ) ( #58019 )
...
* [SIEM] [Detections Engine] Import rules unit tests (#57466 )
* Added unit tests for detection engine import_rules_route and moved out small portion of import_rules_route into a util to be unit tested as well.
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
* Updating tests to reflect state of 7.6. 7.7 and 8 include code from # 56814 that was not backported to 7.6
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-20 15:57:22 -07:00
Joe Reuter
60092c2bd3
Use static time for tsvb rollup test ( #57701 ) ( #58100 )
2020-02-20 12:03:12 +01:00
Frank Hassanabad
f3363cf3a0
[SIEM][Detection Engine] Removes internal tags when copying signals from rules ( #57881 )
...
## Summary
Removes internal tags when copying tags from rules to the signals
Before where you can see internal tags going in:
<img width="1565" alt="Screen Shot 2020-02-14 at 5 17 36 PM" src="https://user-images.githubusercontent.com/1151048/74578011-6d1f4d00-4f4f-11ea-9057-e89896944af8.png ">
After where you can see internal tags not being pushed in:
<img width="1555" alt="Screen Shot 2020-02-14 at 5 22 52 PM" src="https://user-images.githubusercontent.com/1151048/74578023-81fbe080-4f4f-11ea-8f37-86f7e5fe29f5.png ">
Notice that these two internal tags should no longer be there:
```
__internal_immutable:false
__internal_rule_id:3b1bcf8a-7826-43b8-833b-6485aa700c41
```
### Checklist
Delete any items that are not applicable to this PR.
~~- [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing ), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md )~~
~~- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation ) was added for features that require explanation or tutorials~~
- [x] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility ) were updated or added to match the most common scenarios
~~- [ ] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist )~~
~~- [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server )~~
~~- [ ] This was checked for cross-browser compatibility, [including a check against IE11](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility )~~
### For maintainers
~~- [ ] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process )~~
2020-02-18 12:14:51 -07:00
Nathan Reese
f85839f355
[Maps] only request field in docvalue_fields when the field supports doc values ( #57372 ) ( #57873 )
...
* [Maps] only request field in docvalue_fields when the field supports doc values
* do not include scripted fields in sourceOnlyFields
* review feedback
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-18 11:01:51 -07:00
Frank Hassanabad
2cf56b10f2
[SIEM][Detection Engine] Fixes queries to ignore errors when signals index is not present ( #57751 )
...
## Summary
Fixes a bug where if you try to query the signals index and it is not present you would get an error that would bubble up to the UI.
Before:
<img width="824" alt="Screen Shot 2020-02-13 at 12 57 55 PM" src="https://user-images.githubusercontent.com/1151048/74499587-74881d00-4ea1-11ea-93b0-8d7258f79404.png ">
After:
<img width="790" alt="Screen Shot 2020-02-13 at 8 43 28 PM" src="https://user-images.githubusercontent.com/1151048/74499619-9386af00-4ea1-11ea-889b-cb1853e399e3.png ">
<img width="804" alt="Screen Shot 2020-02-13 at 8 43 34 PM" src="https://user-images.githubusercontent.com/1151048/74499624-971a3600-4ea1-11ea-862b-9695ecbadcbe.png ">
Also fixes a regression bug with error toasters showing up when they shouldn't because of a signals index not existing. This only effects 7.6.x and master and is _not_ part of 7.6.0 at the moment.
* https://github.com/elastic/kibana/issues/57641
### Checklist
Delete any items that are not applicable to this PR.
~~- [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing ), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md )~~
~~- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation ) was added for features that require explanation or tutorials~~
~~- [ ] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility ) were updated or added to match the most common scenarios~~
~~- [ ] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist )~~
~~- [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server )~~
~~- [ ] This was checked for cross-browser compatibility, [including a check against IE11](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility )~~
### For maintainers
~~- [ ] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process )~~
2020-02-14 22:24:29 -07:00
Robert Oskamp
2d3d082a27
Transform functional tests - disable saved search test
2020-02-14 16:12:18 +01:00
Jonathan Budzenski
8e1207bb0a
skip settings tests ( #57608 )
2020-02-13 16:21:25 -06:00
Nathan Reese
f2000fcb82
[7.6] [Maps] Fix document source top hits split by scripted field ( #57481 ) ( #57586 )
...
* [Maps] Fix document source top hits split by scripted field (#57481 )
* [Maps] Fix document source top hits split by scripted field
* fix i18n message
* review feedback
* remove unneeded scss file
* fix saved object version number
2020-02-13 13:09:09 -07:00
Devin W. Hurley
d51c1481e7
[SIEM] [Detection Engine] Reject if duplicate rule_id in request payload ( #57057 ) ( #57527 )
...
* prevents creation of rules when duplicate rule_id is present
* adds unit test to reflect change
* genericizes duplicate discovery functions, allows creation of non-duplicated rules even when duplicates are discovered, keeps same return type signature, updates relevant test for duplicates in request payload
* utilizes countBy and removes reduce in favor of a filter on getDuplicates function
* fix type
* removes skip from e2e test for duplicates on bulk create, updates expected response in e2e test, fixes bug where duplicated error messages appeared for each instance of a duplicated rule_id (found this one through the e2e tests)! Adds unit test to catch this case.
* getDuplicate returns empty array instead of null, removes unnecessary return logic
* removes null coalescing from includes in filter
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-13 08:48:31 -05:00
Tim Roes
8b8e258a89
[Lens] Make field stats work for index patterns without time fields ( #56759 ) ( #57503 )
...
* Fix field stats not loaded without time field
* Add integration test for API
* Add unit test for API call
* Correct typo in comment
2020-02-12 23:55:03 +01:00
Robert Oskamp
20a3a144ce
[ML] Functional tests - stabilize job row assertion ( #56595 ) ( #57420 )
...
This PR makes assertion of the job row more robust against loading time issues during test execution.
2020-02-12 11:18:39 +01:00
Frank Hassanabad
9b3581f937
[7.6] [SIEM][Detection Engine] Backend end-to-end tests ( #57166 ) ( #57392 )
...
* [SIEM][Detection Engine] Backend end-to-end tests
* Adds end to end integration tests
* Fixes a bug with import where on imports it was forcing all rules that were being imported to be set to be "enabled: false" instead of honoring what the original export has set for its enabled.
* Adds a few "to be safe" await block so that the front end does not get a race condition within the bulk deletes and other parts of the code.
* Fixes `statusCode` to be `status_code` and removes most of the Hapi Boomer errors
* Changes PUT to be PATCH for partial updates
* Adds true updates with PUT
* Put some TODO blocks around existing bugs found in the API in the e2e tests that we might have time to get to or might not. This will let others maintaining the tests know that once they fix the bug they should update the end to end test to change the behavior.
Testing this:
Go to the latest CI logs and look for any particular lines from the test executing such as:
```ts
should set the response content types to be expected
```
Also run this manually on your machine through this command:
```ts
node scripts/functional_tests --config x-pack/test/detection_engine_api_integration/security_and_spaces/config.ts
```
Change a test manually and re-run the above command to watch something fail.
Screen shot of what you should see on the CI machine when these are running:
<img width="1825" alt="Screen Shot 2020-02-08 at 10 15 21 AM" src="https://user-images.githubusercontent.com/1151048/74089355-ae9a8e80-4a5d-11ea-9050-86e68d7e3bba.png ">
Delete any items that are not applicable to this PR.
~~- [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing ), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md )~~
~~- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation ) was added for features that require explanation or tutorials~~
- [x] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility ) were updated or added to match the most common scenarios
~~- [ ] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist )~~
~~- [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server )~~
~~- [ ] This was checked for cross-browser compatibility, [including a check against IE11](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility )~~
- [x] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process )
* Removed key not used for end to end tests for 7.6
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-11 22:23:34 -07:00
Larry Gregory
809d55e430
[7.6] Logout should redirect to the login screen at the server… ( #57191 )
...
* logout should redirect to the login screen at the server base path
* Revert "logout should redirect to the login screen at the server base path"
This reverts commit c80716be6e
.
* fix logout url in nav control service
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-10 08:22:51 -05:00
Joe Reuter
a9dc431071
Rollup TSVB integration: Add test and fix warning text ( #56639 ) ( #56828 )
2020-02-05 13:20:23 +01:00
Mike Côté
6d76951d31
Ability to delete alerts even when AAD is out of sync ( #56543 ) ( #56687 )
...
* Ability to delete alerts even when AAD is bad
* Small code fixes
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-04 14:57:57 -05:00
Justin Kambic
9f0f92e164
[Uptime] Fix flaky functional test for #54541 ( #56449 ) ( #56656 )
...
* Add timeout block to race-prone functional test code.
* Add timeout for pagination click functions.
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-03 14:01:52 -07:00
Felix Stürmer
e1e367e42f
[Logs UI] Add smoke tests for log rate and categories tabs ( #55088 ) ( #56632 )
...
Backports the following commits to 7.6:
- [Logs UI] Add smoke tests for log rate and categories tabs (#55088 )
2020-02-03 18:39:09 +01:00
Larry Gregory
680b8c4c5a
[7.6] [Docs] - Deprecate kibana_user role ( #54606 ) ( #56545 )
...
* rename kibana_user => kibana_admin
* add migration note
* [DOCS] Fixes link for use in multiple books
* i18n fixes after merge from master
* fix i18n
* Apply suggestions from code review
Co-Authored-By: gchaps <33642766+gchaps@users.noreply.github.com>
* Apply suggestions from code review
Co-Authored-By: Brandon Kobel <brandon.kobel@gmail.com>
Co-authored-by: Lisa Cawley <lcawley@elastic.co>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
Co-authored-by: Brandon Kobel <brandon.kobel@gmail.com>
Co-authored-by: Lisa Cawley <lcawley@elastic.co>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
Co-authored-by: Brandon Kobel <brandon.kobel@gmail.com>
2020-01-31 16:17:23 -05:00
Shahzad
63e6c81b85
[Uptime] In Ping histogram use auto date histogram ( #55605 ) ( #56370 )
...
* update ping histogram API
* update test
* fix tests
* update test
* unused code
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-30 14:29:02 +01:00
Justin Kambic
7ae3221f01
[Uptime] [Test] Add functional test for monitor with location name but no geo ( #55915 ) ( #56331 )
...
* Add unit test for missing geo on named location.
* WIP writing a functional test.
* New named-location with no geo data test is functioning.
* Update snaps for functional test attribute.
* Rename test.
* Remove unnecessary async syntax.
* Delete unneeded symbols.
* Remove unnecessary boolean conversion.
* Fix typo in a comment.
2020-01-29 14:07:29 -07:00
Sébastien Loix
a0529f7074
[7.6] [Index template] Fix editor should support mappings types ( #55804 ) ( #56275 )
2020-01-29 16:58:55 +05:30
Justin Kambic
67343f77b1
[Uptime] Add timeout for slow process to skipped functional tests ( #56065 ) ( #56136 )
...
* Reorder assertions in functional tests.
* Introduce retry to functional tests.
2020-01-28 09:13:51 -07:00
Mike Côté
9c0bb0fa55
Add xpack_main as a dependency in a few tests ( #55602 ) ( #55847 )
2020-01-24 11:26:25 -05:00
patrykkopycinski
2d0e9fe7fc
[SIEM] Overview Page - Expand Winlogbeat Stats ( #55696 ) ( #55762 )
...
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-24 10:06:41 +01:00
Wylie Conlon
04e65128d6
[Lens] Fix regression in field list for beats (thousands of fields) ( #55625 ) ( #55745 )
...
* [Lens] Fix regression in field list for beats
* Add api test
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-23 18:42:41 -05:00
Dmitry Lemeshko
44e1db61ad
[code search] removing test config and page object ( #55273 ) ( #55578 )
...
* [code search] delete PO and test config
* remove import
* remove from export
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-22 19:49:46 +01:00
Aleh Zasypkin
64dc134d35
[7.6] Re-enable Kerberos + anonymous access test. ( #55409 )
2020-01-21 21:28:16 +01:00
Justin Kambic
e8ef153a4a
[Uptime] Fix flaky uptime overview page test ( #54767 ) ( #55418 )
...
* Fix flaky uptime overview page test.
* Increase timeout for url checks.
* Prefer standard `retry.try` to custom retry implementation.
* Remove unneeded symbol.
* Remove unnecessary type annotation.
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-21 13:34:58 -05:00
Dima Arnautov
1fa378b31f
[ML] Formatting for additional timing and model size stats ( #55062 ) ( #55415 )
...
* [ML] formatting for additional timing and model size stats
* [ML] roundToDecimalPlace only average search time
* [ML] adjust functional tests
* [ML] remove debug tag, fix assert value
* [ML] check for no decimal place
* [ML] fix functional tests
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-21 19:06:30 +01:00
Angela Chuang
496b970dfe
[SIEM] Dns histogram enhancement ( #54902 ) ( #55022 )
...
* update DNS histogram
* fix indent
* hide dropdown if only one option provided
* update DNS histogram
* fix types
2020-01-16 20:47:59 +08:00
Greg Thompson
e0d6407bde
[7.x] Upgrade EUI to v18.2.0 ( #54786 ) ( #54869 )
...
* Upgrade EUI to v18.2.0 (#54786 )
* 18.2.0
* ts update
* Updated `euiColorVis0`
* Update `euiColorVis1`
* Updating `euiColorVis2`
* Updated `euiColorVis3`
* Updated the rest
* Updated hard-coded viz palette hexes to latest
* src snapshot updates
* x-pack test updates
* mock jest fn
* Updated two vegalite visualization screenshots
Co-authored-by: Caroline Horn <549577+cchaos@users.noreply.github.com>
Co-authored-by: Chandler Prall <chandler.prall@gmail.com>
* snapshot
Co-authored-by: Caroline Horn <549577+cchaos@users.noreply.github.com>
Co-authored-by: Chandler Prall <chandler.prall@gmail.com>
2020-01-14 22:53:57 -06:00
Nathan Reese
7fd3e10a0a
[Maps] expand extent filter to tile boundaries ( #54276 ) ( #54848 )
...
* [Maps] expand extent filter to tile boundaries
* fix functional test
* simplify expandToTileBoundaries
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-14 20:52:39 -05:00
Poff Poffenberger
96a6a4f7e6
[Canvas] Adds functional test for Canvas custom elements ( #52920 ) ( #54822 )
...
* Adds functional test for Canvas custom elements
feedback cleanup
* Opening up Canvas app first
* Add skip firefox tag to custom element test
2020-01-14 23:07:08 +00:00
Dmitry Lemeshko
4e6b99cdfc
Functional tests: refactor dashboard_page ( #54588 ) ( #54750 )
...
* [test/functional] cleanup & tsfy dashboard_page
* fix & improvement
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-14 22:04:35 +01:00
Angela Chuang
f95f3f39b9
[SIEM] Histogram enhancement ( #54544 ) ( #54791 )
...
* generic histogram container
* generic histogram container
* rename params
* fix inspect
* fix update with timerange
* clean up props
* send stackByField to server side
* fix inspect button
* helper node xavier
* fix DNS histogram
* fix DNS query params
* move utils for fetch data into containers
* cleanup graphql template on client side
* rename grqphql data
* i18n
* fix type
* fix i18n
* fix i18n
* fix subtitle
* fix subtitle
* fix i18n
* fix for reviews
* fix types
* remove unused test
* fix integration
Co-authored-by: Xavier Mouligneau <189600+XavierM@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Xavier Mouligneau <189600+XavierM@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-15 04:46:40 +08:00
Robert Oskamp
2a3a9f7260
[ML] Functional tests - basic tests for single metric viewer and anomaly explorer ( #54699 ) ( #54746 )
...
This PR adds basic functional UI tests for the single metric viewer and the anomaly explorer.
2020-01-14 20:11:48 +01:00
Wylie Conlon
449cf8fa5c
[Lens] Add support for scripted fields and aliases to the existence API ( #54064 ) ( #54771 )
...
* Add support for scripted fields and
default index pattern
* Add scripted fields and aliases to existence API
* Fix TypeScript errors.
* Fix mappings parsing
* Default to the index pattern timeFieldName
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Chris Davies <github@christophilus.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-14 13:59:16 -05:00
Andrew Cholakian
388303bc34
[Uptime][7.x] Temporarily skip flakey tests ( #54678 )
...
* [Uptime] Temporarily skip flakey tests
* Fix further flakey tests due to hardcoding times + using snapshots
2020-01-13 22:11:27 -05:00