kibana/x-pack/plugins/index_management
Alejandro Fernández Haro 5342877a32
[HTTP] Apply the same behaviour to all 500 errors (except from custom responses) (#85541)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-02-18 17:31:18 +00: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 Upgrade EUI to v31.7.0 (#91210) 2021-02-16 14:06:25 -06:00
server [HTTP] Apply the same behaviour to all 500 errors (except from custom responses) (#85541) 2021-02-18 17:31:18 +00: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 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"
}