Forum Discussion
dmarlow
Nov 05, 2019Copper Contributor
Help with query: two graphs, one data set
I'm querying IIS logs and trying to create a graph that shows requests over time and errors over time on a single graph. I can display these two separately, but I'd like them to be in one graph if po...
dmarlow
Nov 05, 2019Copper Contributor
I think this is the solution:
| summarize requests = count(),
errors = countif(toint(scStatus) >= 500)
by bin(TimeGenerated, 10m)