kibana/x-pack/plugins/index_management
Sébastien Loix 0d378e488c
Form lib enhancements (#78588)
Co-authored-by: Patryk Kopycinski <contact@patrykkopycinski.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-10-05 18:09:50 +02: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 Form lib enhancements (#78588) 2020-10-05 18:09:50 +02:00
server Remove requirement for manage_index_templates privilege for Index Management (#77377) 2020-09-22 14:47:11 -07:00
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"
}