kibana/x-pack/plugins/index_management
2021-01-13 08:34:30 -06:00
..
__jest__ [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
common [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
public revert runtime fields editor plugin (#88132) 2021-01-13 08:34:30 -06:00
server [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00: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"
}