kibana/x-pack/plugins/index_management
CJ Cenizal 5df858aae1
Migrate Index Management to new solutions nav (#101548)
* Migrate index template and component template wizard pages to new nav.
* Convert index templates and component templates pages to new nav.
* Convert indices and data streams pages to new nav.
* Add PageLoading component to es_ui_shared.
* Refactor index table component tests.
* Add missing error reporting to get all templates API route handler.
2021-06-22 17:15:57 -07:00
..
__jest__ Migrate Index Management to new solutions nav (#101548) 2021-06-22 17:15:57 -07:00
common Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
public Migrate Index Management to new solutions nav (#101548) 2021-06-22 17:15:57 -07:00
server Migrate Index Management to new solutions nav (#101548) 2021-06-22 17:15:57 -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"
}