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 counter values.
However, on the chart there appears to be no graph shown. Only the counter values at the bottom:
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
- Meir_Mendelovich
Microsoft
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
- kawata1418Copper 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