kibana/x-pack/plugins/index_management
2020-10-06 06:48:47 -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 "Add support for runtime field types to mappings editor. (#77420)" (#79611) 2020-10-06 06:48:47 -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"
}