kibana/x-pack/plugins/index_management
Shahzad 88f76b5995
Reduce index management plugin page load bundle size (#88656)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-01-26 12:26:11 +01:00
..
__jest__ Reduce index management plugin page load bundle size (#88656) 2021-01-26 12:26:11 +01:00
common Reduce index management plugin page load bundle size (#88656) 2021-01-26 12:26:11 +01:00
public Reduce index management plugin page load bundle size (#88656) 2021-01-26 12:26:11 +01:00
server Reduce index management plugin page load bundle size (#88656) 2021-01-26 12:26:11 +01:00
test/fixtures [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
jest.config.js
kibana.json revert runtime fields editor plugin (#88132) 2021-01-13 08:34:30 -06: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"
}