-
Notifications
You must be signed in to change notification settings - Fork 1k
Description
From Elastic's documentation:
https://www.elastic.co/guide/en/elasticsearch/reference/7.3/mapping-source-field.html
The metrics use case is distinct from other time-based or logging use cases in that there are many small documents which consist only of numbers, dates, or keywords. There are no updates, no highlighting requests, and the data ages quickly so there is no need to reindex. Search requests typically use simple queries to filter the dataset by date or tags, and the results are returned as aggregations.
In this case, disabling the _source field will save space and reduce I/O.
This means that it is not possible to see the fields in the index and Kibana view will not show the metrics.
I would make a pull request to change to enabled: true for Elasticsearch 7.3 and up