kibana/x-pack/plugins/index_management
2020-11-11 15:51:58 +01:00
..
__jest__ [Index management] Fix test in index template wizard (#83150) 2020-11-11 15:51:58 +01:00
common
public Fix ilm navigation (#81664) 2020-11-10 11:09:37 +01: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
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"
}