kibana/x-pack/plugins/index_management
Yulia Čech 3a849ff104
[Index Management] Add an index template link to data stream details (#82592)
* Add index template link to data stream details

* Fixed ILM policy link and added a check for index template name after navigation

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-11-12 15:05:08 +01:00
..
__jest__ [Index Management] Add an index template link to data stream details (#82592) 2020-11-12 15:05:08 +01:00
common
public [Index Management] Add an index template link to data stream details (#82592) 2020-11-12 15:05:08 +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"
}