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
https://github.com/elastic/integrations/blob/main/packages/elastic_agent/data_stream/apm_server_metrics/fields/beat-fields.yml is missing mapping for TBS metrics (sampling.tail.*).
Workaround would be to add custom mapping for TBS via custom component template. Something like:
PUT _component_template/metrics-elastic_agent.apm_server@custom { "template": { "mappings": { "properties": { "beat.stats.apm_server.sampling.tail.dynamic_service_groups": { "type": "long" }, "beat.stats.apm_server.sampling.tail.events.dropped": { "type": "long" }, "beat.stats.apm_server.sampling.tail.events.failed_writes": { "type": "long" }, "beat.stats.apm_server.sampling.tail.events.head_unsampled": { "type": "long" }, "beat.stats.apm_server.sampling.tail.events.processed": { "type": "long" }, "beat.stats.apm_server.sampling.tail.events.sampled": { "type": "long" }, "beat.stats.apm_server.sampling.tail.events.stored": { "type": "long" } } } } }
The text was updated successfully, but these errors were encountered:
Seems to be a duplicate of #14247
Sorry, something went wrong.
No branches or pull requests
https://github.com/elastic/integrations/blob/main/packages/elastic_agent/data_stream/apm_server_metrics/fields/beat-fields.yml is missing mapping for TBS metrics (sampling.tail.*).
Workaround would be to add custom mapping for TBS via custom component template. Something like:
The text was updated successfully, but these errors were encountered: