Forum Discussion
ImraanMohammed
Dec 19, 2018Copper Contributor
Display multiple time charts in log analytics
I want to display multiple time line charts using queries in log analytics. One chart should show data from today and other one should be showing data for yesterday. Is it possible ? gone through few...
Thuyavan Ganesan
Dec 19, 2018Steel Contributor
And you are right multiple time line charts are not supported at this time , bu there are some people claiming that they have achieved it .
Perf
| where (CounterName == "Bytes Received/sec" or CounterName == "Bytes Sent/sec") and InstanceName matches regex "^Microsoft Hyper-V Network Adapter.*$"
| summarize avg(CounterValue) by strcat(Computer, " ", CounterName), bin(TimeGenerated, 10s)
| render timechart
Please refer this
https://stackoverflow.com/questions/46305527/azure-log-analytics-timechart-with-multiple-dimensions
Perf
| where (CounterName == "Bytes Received/sec" or CounterName == "Bytes Sent/sec") and InstanceName matches regex "^Microsoft Hyper-V Network Adapter.*$"
| summarize avg(CounterValue) by strcat(Computer, " ", CounterName), bin(TimeGenerated, 10s)
| render timechart
Please refer this
https://stackoverflow.com/questions/46305527/azure-log-analytics-timechart-with-multiple-dimensions