-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
Visualization not working on Azure billing dashboard #25511
Comments
Pinging @elastic/integrations (Team:Integrations) |
confirmed this looks like a bug, |
@pmusa , I have fixed the visualization in the above PR, in the visualization above we split by resource name. Maybe in the future we can add a visualization splitting on the resource type as well. |
For confirmed bugs, please report:
After further investigation, I noticed that we are using a field that does not exist in the collected documents. In the visualization, we bucket on
azure.resource.name
, but the correct field isazure.resource.type
. I also noticed that the visualization is not filtering documents that contain the field, which results in a slower aggregation (~40ms vs. ~2ms) and wrong results (see screenshots).Bucket using
azure.resource.name
with no results:Bucket using
azure.resource.type
no filter with wrong results:Bucket using
azure.resource.type
and filter with correct results:The text was updated successfully, but these errors were encountered: