kibana/x-pack/plugins/index_management
Yulia Čech 1de3a02a46
Fix ilm navigation (#81664)
* Fix edit policy page navigation

* Fix edit policy page navigation

* Add links to PR for explanation

* Added more tests and linked to a github issue about navigation issues

* Fix decoding function for undefined values

* Fix type check issues

* Renamed dollar sign to percent sign, added a method for (double) encoded paths and better description in test names

* Deleted Index Management from required bundles in ILM

* Fixed merge conflicts

* Revert "Deleted Index Management from required bundles in ILM"

This reverts commit 5a735dfe

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-11-10 11:09:37 +01:00
..
__jest__ Add ILM url generator and use it in Index Management (#82165) 2020-11-06 15:42:51 +01:00
common [Index management] Update TemplateDeserialized interface (#78913) 2020-10-05 15:19:36 +02:00
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"
}