You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Elasticsearch Metrics integration dashboard error: Field [elasticsearch.ingest_pipeline.total.count] of type [long] is not supported for aggregation [sum].
#6996
Closed
bczifra opened this issue
Jul 18, 2023
· 5 comments
The [Elasticsearch] Ingest Pipelines dashboard in the Elasticsearch integration is throwing an error that: Field [elasticsearch.ingest_pipeline.total.count] of type [long] is not supported for aggregation [sum].
Good news here is that I think this can be fixed, but I don't have a cluster to try it on right now.
It seems that the sum agg on these fields is only be used for ranking on the breakdowns, not the actual metrics. I think we can change this to use max instead of sum and get the same result. max is supported on counter fields.
The
[Elasticsearch] Ingest Pipelines
dashboard in the Elasticsearch integration is throwing an error that:Field [elasticsearch.ingest_pipeline.total.count] of type [long] is not supported for aggregation [sum].
index_mode
is set totime_series
:integrations/packages/elasticsearch/data_stream/ingest_pipeline/manifest.yml
Line 10 in 3ce066e
elasticsearch.ingest_pipeline.total.count
is a counter field: https://github.com/elastic/integrations/blob/3ce066e4b81169ad068909313e4cc6336c261dd8/packages/elasticsearch/data_stream/ingest_pipeline/fields/fields.yml#L18C17-L18C17sum
aggregation on that field: https://github.com/elastic/integrations/blob/3ce066e4b81169ad068909313e4cc6336c261dd8/packages/elasticsearch/kibana/dashboard/elasticsearch-metrics-ingest-pipelines.json#L584C93-L584C93release
is markedexperimental
:integrations/packages/elasticsearch/data_stream/ingest_pipeline/manifest.yml
Line 4 in 3ce066e
As a workaround, it's possible to [disable the use of TSDS on the data stream]https://www.elastic.co/guide/en/fleet/current/data-streams-advanced-features.html#data-streams-advanced-tsds-disable).
The text was updated successfully, but these errors were encountered: