kibana/x-pack/plugins/index_management
2021-04-27 09:12:17 -07:00
..
__jest__ Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
common Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
public [K8] Small fixes (#98099) 2021-04-27 09:12:17 -07:00
server ES client : use the new type definitions (#83808) 2021-03-25 04:47:16 -04:00
test/fixtures Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
jest.config.js Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
kibana.json revert runtime fields editor plugin (#88132) 2021-01-13 08:34:30 -06:00
README.md Surface data stream stats, index template, and ILM policy in the UI (#75107) 2020-08-21 17:53:03 -07:00
tsconfig.json Revert "TS Incremental build exclude test files (#95610)" (#96223) 2021-04-05 11:59:26 -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"
}