kibana/x-pack/plugins/index_management
Caroline Horn 51e2da9630
[Stack Management] Converted to use KibanaPageTemplate (sort of) (#101335)
* Just replace the old wrapper and uses the `solutionNav` prop
* Examples of: Empty Page, Error state, Page Header, and Split Panel
2021-06-08 11:25:52 -04:00
..
__jest__ [Index management] Add selected index count (#99652) 2021-05-11 14:10:34 +01:00
common Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
public [Stack Management] Converted to use KibanaPageTemplate (sort of) (#101335) 2021-06-08 11:25:52 -04:00
server Remove license check from Index Management (#100188) 2021-05-28 17:19:40 -07: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 Remove license check from Index Management (#100188) 2021-05-28 17:19:40 -07: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"
}