I use container insights and the following query shows a even chart:
ContainerLogV2
| summarize count() by bin(TimeGenerated, 10m)
when I want to group it by Computer i suddenlty see gaps:
ContainerLogV2
| summarize count() by bin(TimeGenerated, 10m), Computer
Is it my query wrong?