kibana/x-pack/plugins/index_management
2021-02-03 07:21:38 -07:00
..
__jest__ Migrates index_management & runtime_fields to TS project refs (#89809) 2021-02-03 07:21:38 -07:00
common
public remove type dependency between index_management and fleet (#89699) 2021-02-01 19:32:55 +01:00
server
test/fixtures
jest.config.js
kibana.json
README.md
tsconfig.json Migrates index_management & runtime_fields to TS project refs (#89809) 2021-02-03 07:21:38 -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"
}