kibana/x-pack/plugins/index_management
..
__jest__
common
public
server
test/fixtures
jest.config.js
kibana.json
README.md
tsconfig.json

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