We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the enhancement:
Add the missing fields related to indexing_pressure into the mapping located in the Elasticsearch repo: https://github.com/elastic/elasticsearch/blob/main/x-pack/plugin/core/template-resources/src/main/resources/monitoring-es-mb.json
indexing_pressure
Example values:
... "indexing_pressure": { "memory": { "total": { "primary": { "rejections": 0, "bytes": 239335086 }, "coordinating": { "rejections": 0, "bytes": 220495904 }, "replica": { "rejections": 0, "bytes": 0 }, "combined_coordinating_and_primary": { "bytes": 220495904 }, "all": { "bytes": 220495904 } }, "limit_in_bytes": 27682406, "current": { "coordinating": { "bytes": 0 }, "replica": { "bytes": 0 }, "combined_coordinating_and_primary": { "bytes": 0 }, "all": { "bytes": 0 }, "primary": { "bytes": 0 } } } }, ...
Since they are all bytes, the field type, long should work.
bytes
long
Describe a specific use case for the enhancement or feature:
To search through the fields they need to be in the mapping.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the enhancement:
Add the missing fields related to
indexing_pressure
into the mapping located in the Elasticsearch repo: https://github.com/elastic/elasticsearch/blob/main/x-pack/plugin/core/template-resources/src/main/resources/monitoring-es-mb.jsonExample values:
Since they are all
bytes
, the field type,long
should work.Describe a specific use case for the enhancement or feature:
To search through the fields they need to be in the mapping.
The text was updated successfully, but these errors were encountered: