kibana/x-pack/plugins/index_management
2020-12-07 12:55:53 -05:00
..
__jest__ [Telemetry] Introduce UI Counters (#84224) 2020-12-04 17:47:04 +02:00
common Added data streams privileges to better control delete actions in UI (#83573) 2020-11-26 17:04:24 +01:00
public Integrate painless autocomplete in runtime fields editor (#84943) 2020-12-07 12:55:53 -05:00
server [Runtime fields] Add support in index template (#84184) 2020-12-03 15:59:20 +01:00
test/fixtures
jest.config.js Jest multi-project configuration (#77894) 2020-12-02 11:42:23 -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"
}