kibana/x-pack/plugins/index_management
Jonathan Budzenski 51ba94d3e5
[dev] Replace sass-lint with stylelint (#86177)
Co-authored-by: Tyler Smalley <tylersmalley@me.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Dave Snider <dave.snider@gmail.com>
2021-01-15 11:52:29 -06:00
..
__jest__ [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
common [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
public [dev] Replace sass-lint with stylelint (#86177) 2021-01-15 11:52:29 -06:00
server [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
test/fixtures [Index templates] Keep configuration of data stream when editing (#87666) 2021-01-07 21:42:12 +00:00
jest.config.js
kibana.json revert runtime fields editor plugin (#88132) 2021-01-13 08:34:30 -06: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"
}