kibana/x-pack/plugins/index_management
CJ Cenizal 55a0dbbc09
Discourage use of legacy index templates (#101533)
* Hide legacy index templates table if the user doesn't have any.
* Render deprecation warning above legacy index templates table and in legacy index template wizard.
* Update index template doc link to point to the new docs.
2021-06-14 15:24:24 -07:00
..
__jest__ Discourage use of legacy index templates (#101533) 2021-06-14 15:24:24 -07:00
common
public Discourage use of legacy index templates (#101533) 2021-06-14 15:24:24 -07:00
server
test/fixtures
jest.config.js
kibana.json
README.md
tsconfig.json

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