Forum Discussion
Jhilene
Microsoft
Aug 05, 2020Why won't the chart show any values even with data?
Hello, I am trying to grab network data with this query:
Perf
| where TimeGenerated >= ago(5m) and CounterName == "Bytes Received/sec" | take 100
It returns 100 logs of data, several count...
- Aug 06, 2020
Other than explicitly using the render operator, you can simply select the right chart type and the column that is used for charting:
Thanks,
Meir
kawata1418
Aug 06, 2020Copper Contributor
Is this no good?
Perf
| where TimeGenerated >= ago(5m) and CounterName == "Bytes Received/sec"
| summarize avg(CounterValue) by bin(TimeGenerated, 1m), _ResourceId
| render timechart