kibana/x-pack/plugins/index_management
2021-03-26 11:28:42 -07:00
..
__jest__
common
public Use documentation link service for runtime fields (#95256) 2021-03-26 11:28:42 -07:00
server ES client : use the new type definitions (#83808) 2021-03-25 04:47:16 -04:00
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"
}