kibana/x-pack/plugins/index_management
Yulia Čech 47d6612bae
Add Managed label to data streams and a view switch for the table (#83049)
* Add Managed label to data streams and a view switch for the table

* Fix i18n errors

* Updated some wording and made filter function easier (managed data streams)

* Update x-pack/plugins/index_management/__jest__/client_integration/home/data_streams_tab.test.ts

Co-authored-by: Alison Goryachev <alisonmllr20@gmail.com>

* Renamed view to include (managed data streams)

* Update x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_list.tsx

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* Update x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_list.tsx

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

* Update x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_table/data_stream_table.tsx

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Alison Goryachev <alisonmllr20@gmail.com>
Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>
2020-11-18 23:16:18 +01:00
..
__jest__ Add Managed label to data streams and a view switch for the table (#83049) 2020-11-18 23:16:18 +01: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 Add Managed label to data streams and a view switch for the table (#83049) 2020-11-18 23:16:18 +01:00
server
test/fixtures Consolidates Jest configuration files and scripts (#82671) 2020-11-12 16:19:56 -08:00
kibana.json [Runtime fields] Editor phase 1 (#81472) 2020-11-18 09:10:00 +01: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"
}