kibana/x-pack/plugins/index_management
Tyler Smalley aba2068291
Consolidates Jest configuration files and scripts (#82671)
Jest tests are currently organized into main configuration files (src/dev/jest/config.js and x-pack/dev-tools/jest/create_jest_config.js). Both of these are similar, but very slightly due to  previously being in separate repositories. This change consolidates the scripts referenced in those configs and moves them to the `@kbn/test` project.

OSS contained an alias for `test_utils`. Those aliases have been removed in favor of importing these utilities from `@kbn/test/jest`

Blocker to #72569

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
2020-11-12 16:19:56 -08:00
..
__jest__ Consolidates Jest configuration files and scripts (#82671) 2020-11-12 16:19:56 -08:00
common [Index management] Update TemplateDeserialized interface (#78913) 2020-10-05 15:19:36 +02:00
public Consolidates Jest configuration files and scripts (#82671) 2020-11-12 16:19:56 -08:00
server Add uri decode to es_ui_shared and fix navigation issues with special characters (#80835) 2020-10-28 14:04:32 +01:00
test/fixtures Consolidates Jest configuration files and scripts (#82671) 2020-11-12 16:19:56 -08:00
kibana.json Add ILM url generator and use it in Index Management (#82165) 2020-11-06 15:42:51 +01:00
README.md

Index Management UI

Data streams tab

Quick steps for testing

Create a data stream using Console and you'll be able to view it in the UI:

# Configure template for creating a data stream
PUT _index_template/ds
{
  "index_patterns": ["ds"],
  "data_stream": {}
}

# Add a document to the data stream
POST ds/_doc
{
  "@timestamp": "2020-01-27"
}