kibana/x-pack/plugins/index_management
CJ Cenizal 0dc89cb716
Add support for runtime field types to mappings editor. (#77420)
* Add support for runtime field types to mappings editor.
* Add tests for getTypeLabelFromField util.
* Refine callout appearance in term vector and alias parameters.
2020-09-25 08:25:49 -07:00
..
__jest__ [Index management] Unskip jest tests (#76672) 2020-09-15 12:39:35 +02:00
common
public Add support for runtime field types to mappings editor. (#77420) 2020-09-25 08:25:49 -07:00
server Remove requirement for manage_index_templates privilege for Index Management (#77377) 2020-09-22 14:47:11 -07:00
test/fixtures [Index management] Unskip jest tests (#76672) 2020-09-15 12:39:35 +02:00
kibana.json
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"
}