I'm quite new to Kusto and I'm trying to visualize something in an Azure Log Analytics workbook. I'm searching for occurrences of requests, translate IDs to human readable names using a custom function and group them by day. I can't find a way to also show the total occurrences (sum of all groups) only as a metric and not changing the chart.
My query looks like this:
requests
| where operation_Name == "Create History"
| where customDimensions.SystemStatus == "Production"
| extend systemid = tostring(customDimensions.SystemId)
| extend system = tostring(system_lookup()[systemid])
| summarize Services_Done = count() by bin(timestamp, 1d), system


If you do not want to change chart and get sum of all services then use below query: