kibana/x-pack/plugins/data_enhanced
Greg Thompson 38fd8a268a
Upgrade EUI to v33.0.0 (#99382)
* eui to 33.0.0

* resize observer type inclusion - revisit

* src snapshot updates

* x-pack snapshot updates

* table sort test updates

* code block language sh -> bash

* datagrid datetime sort inversion

* types

* kbn-crypto

* refractor yarn resolution

* refractor yarn resolution

* update cypress tests

* url state test

* trial

* Revert "trial"

This reverts commit adc3538145.

* trial anomaly timeout

* Revert "trial anomaly timeout"

This reverts commit 9a11711ba8.

* kbn-telemetry-tools

* Change a useMemo to useCallback so the code executes when intended

* Removed no-longer-used import

* exitOrFail already retries for longer than tryForTime

* Wait for loading indicator to disappear

* Intentionally adding `.only`

* Revert .only

* Increase wait time for the ML chart to load

* Remove unused var

* overflow

* chartWidth

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Alejandro Fernández Haro <alejandro.haro@elastic.co>
Co-authored-by: Chandler Prall <chandler.prall@gmail.com>
2021-06-01 10:53:07 -05:00
..
.storybook Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
common [Search] Unify search plugin step 1 (#95811) 2021-04-21 14:23:49 +02:00
public Upgrade EUI to v33.0.0 (#99382) 2021-06-01 10:53:07 -05:00
server [Search] Unify search plugin step 2 — Search Interceptor (#97845) 2021-04-28 14:08:01 +02:00
config.ts [Search] Unify search plugin step 1 (#95811) 2021-04-21 14:23:49 +02:00
jest.config.js Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
kibana.json [data.search] Add user information to background session service (#84975) 2021-02-13 10:42:56 +02:00
README.md [Search] Unify search plugin step 1 (#95811) 2021-04-21 14:23:49 +02:00
tsconfig.json Revert "TS Incremental build exclude test files (#95610)" (#96223) 2021-04-05 11:59:26 -07:00

data_enhanced

The data_enhanced plugin is the x-pack counterpart to the src/plguins/data plugin.

It exists to provide services, or parts of services, which enhance existing functionality from src/plugins/data.

Currently, the data_enhanced plugin doesn't return any APIs which you can consume directly, however it is possible that you are indirectly relying on the enhanced functionality that it provides via the data plugin from src/.

Here is the functionality it adds:

Search Sessions

Search sessions are handy when you want to enable a user to run something asynchronously (for example, a dashboard over a long period of time), and then quickly restore the results at a later time. The Search Service transparently fetches results from the .async-search index, instead of running each request again.