kibana/x-pack/plugins/index_management
Mikhail Shustov 95861a0fb0
[DX] Prettier v2.2 (#83899)
* update prettier with ts version support

* mute type-error

* run prettier on codebase

* fix examples

* fix errors after master merged
2020-11-23 13:17:05 +01:00
..
__jest__ [Fleet] Rename ingestManager plugin ID fleet (#83200) 2020-11-19 08:43:14 -05:00
common Add Managed label to data streams and a view switch for the table (#83049) 2020-11-18 23:16:18 +01:00
public [DX] Prettier v2.2 (#83899) 2020-11-23 13:17:05 +01:00
server
test/fixtures Consolidates Jest configuration files and scripts (#82671) 2020-11-12 16:19:56 -08:00
kibana.json [Fleet] Rename ingestManager plugin ID fleet (#83200) 2020-11-19 08:43:14 -05:00
README.md

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"
}