SOLVED

Why won't the chart show any values even with data?

Microsoft

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:

nochart.PNG

 

2 Replies

Is this no good?

 

Perf

| where TimeGenerated >= ago(5m) and CounterName == "Bytes Received/sec"

| summarize avg(CounterValue) by bin(TimeGenerated, 1m), _ResourceId

| render timechart

best response confirmed by Jhilene (Microsoft)
Solution

@Jhilene,

 

Other than explicitly using the render operator, you can simply select the right chart type and the column that is used for charting:

Annotation 2020-08-06 144622.jpg

 

Thanks,

Meir

1 best response

Accepted Solutions
best response confirmed by Jhilene (Microsoft)
Solution

@Jhilene,

 

Other than explicitly using the render operator, you can simply select the right chart type and the column that is used for charting:

Annotation 2020-08-06 144622.jpg

 

Thanks,

Meir

View solution in original post