kibana/x-pack/plugins/index_management
Yulia Čech a8d088febd
Added hidden filter to data streams tab (#85028)
* Added hidden filter to data streams tab

* Fix i18n import

* Fixed tests

* hidden ds pr feedback

* Added includeHidden query to data streams list

* Changed how badge group renders data streams badges

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-14 16:54:06 +01:00
..
__jest__ Added hidden filter to data streams tab (#85028) 2020-12-14 16:54:06 +01:00
common Added hidden filter to data streams tab (#85028) 2020-12-14 16:54:06 +01:00
public Added hidden filter to data streams tab (#85028) 2020-12-14 16:54:06 +01:00
server Added hidden filter to data streams tab (#85028) 2020-12-14 16:54:06 +01:00
test/fixtures Consolidates Jest configuration files and scripts (#82671) 2020-11-12 16:19:56 -08:00
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"
}