Forum Discussion

Jhilene's avatar
Jhilene
Icon for Microsoft rankMicrosoft
Aug 05, 2020
Solved

Why 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:

 

  • kawata1418's avatar
    kawata1418
    Copper 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

Resources