Hello,
I have a bar chart, and one day it changed its category labels to be the same (the label is the last category in the table). This happens not only is one bar chart but in all of my bar charts.
This is how it looks:
hello, did you precise in your sql request the label ? i think it is necessary to precise it with “metric”, for exemple :
select count (*) as value,
mytable.label as “metric”
from mytable
group by mytable.label
I use Azure Log Analytics as data source, so this was working fine before:
Perf
| where __timeFilter(TimeGenerated)
| where ObjectName == "Memory"
| summarize FreeRAM = min( CounterValue/1024 ) by Computer ,bin (TimeGenerated, __interval)
| order by Computer asc, TimeGenerated asc
Is there a man page on adding metric as I don’t understand what should I fix