kibana/x-pack/plugins/index_management
Sébastien Loix 8e46635397
[Index management] Add selected index count (#99652) (#99785)
Co-authored-by: Anish Khanna <35355702+anish-khanna@users.noreply.github.com>
2021-05-11 11:09:32 -04:00
..
__jest__ [Index management] Add selected index count (#99652) (#99785) 2021-05-11 11:09:32 -04:00
common [7.x] Elastic License 2.0 (#90192) 2021-02-03 18:39:13 -08:00
public [Index management] Add selected index count (#99652) (#99785) 2021-05-11 11:09:32 -04:00
server [7.x] ES client : use the new type definitions (#83808) (#95391) 2021-03-25 10:33:44 -04:00
test/fixtures [7.x] Elastic License 2.0 (#90192) 2021-02-03 18:39:13 -08:00
jest.config.js [7.x] Elastic License 2.0 (#90192) 2021-02-03 18:39:13 -08:00
kibana.json revert runtime fields editor plugin (#88132) (#88187) 2021-01-13 13:59:31 -06:00
README.md Surface data stream stats, index template, and ILM policy in the UI (#75107) (#75713) 2020-08-21 19:47:38 -07:00
tsconfig.json [7.x] Revert "TS Incremental build exclude test files (#95610)" (#96223) (#96281) 2021-04-06 05:52:22 -04: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"
}