I want to have a report with a metrics of sum by count by some column by date in LogAnalytics.
So far I could use -
Perf
| summarize sum(CounterValue) by TimeGenerated, Computer
which gives me below result in screenshot. But I want in a format per day. Something like -
Date,Computer,sum_Count
01-17-2020,ABC,100
01-16-2020,ABC,132
01-17-2020,XYZ,700
01-16-2020,XYZ,800