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
While using the plugin version 0.3.0, I created a dashboard panel that showed the number of log messages logged at each severity level over time:
I used the following query to power this:
['global']
| where ['resource.env'] == "dev"
| summarize count() by ['severity'],bin_auto(_time)
I used the following transformation
to convert the result series from the format
to the format shown in the first screenshot.
After upgrading the Axiom data plugin to version 0.5.1, my dashboard shows a single count instead of individual counts per severity:
This seems like a regression. I expected that it would still show 1 line per severity. I have tried using Grafana transformations to get individual series again, but without success.