kibana/x-pack/plugins/index_management
CJ Cenizal 82478c3559
Revert "Revert "Add support for runtime field types to mappings editor. (#77420)" (#79611)" (#79940)
This reverts commit e01d538e32.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-10-12 09:12:34 -07:00
..
__jest__ [Index management] Update TemplateDeserialized interface (#78913) 2020-10-05 15:19:36 +02:00
common [Index management] Update TemplateDeserialized interface (#78913) 2020-10-05 15:19:36 +02:00
public Revert "Revert "Add support for runtime field types to mappings editor. (#77420)" (#79611)" (#79940) 2020-10-12 09:12:34 -07:00
server
test/fixtures
kibana.json
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"
}