kibana/x-pack/plugins/index_management
Sébastien Loix ec1516064c
[Form lib] Correctly add field to form on component mount (#75796)
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-08-27 14:02:03 +02:00
..
__jest__ Surface data stream stats, index template, and ILM policy in the UI (#75107) 2020-08-21 17:53:03 -07:00
common Surface data stream stats, index template, and ILM policy in the UI (#75107) 2020-08-21 17:53:03 -07:00
public [Form lib] Correctly add field to form on component mount (#75796) 2020-08-27 14:02:03 +02:00
server Surface data stream stats, index template, and ILM policy in the UI (#75107) 2020-08-21 17:53:03 -07:00
test/fixtures [Composable template] Demo and PR review fixes (#71065) 2020-07-09 15:31:53 -04:00
kibana.json [kbn/optimizer] implement "requiredBundles" property of KP plugins (#70911) 2020-07-09 18:43:17 -07:00
README.md Surface data stream stats, index template, and ILM policy in the UI (#75107) 2020-08-21 17:53:03 -07:00

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"
}