Forum Discussion
kaa4ever
Aug 16, 2021Copper Contributor
Can't merge rows together
Hello I'm using Grafana with Azure Monitor as datasource to monitor our AKS cluster. I've installed a Grafana dashboard which shows Node CPU usage for the past 12 hours, which is great, but it would...
Anders Bengtsson
Aug 26, 2021Former Employee
Hi,
I made a small example for you, where the CPU graph is summarized to an average per hour.
Does this help you?
Perf
| where Computer == "idala"
| where ObjectName == "Processor"
| where CounterName == "% Processor Time"
| summarize avg(CounterValue) by bin(TimeGenerated, 1h), CounterName
I made a small example for you, where the CPU graph is summarized to an average per hour.
Does this help you?
Perf
| where Computer == "idala"
| where ObjectName == "Processor"
| where CounterName == "% Processor Time"
| summarize avg(CounterValue) by bin(TimeGenerated, 1h), CounterName