A Kusto Query in Log Analytics to show which Container sending most logs
ContainerLog | summarize count() by ContainerID,Computer | join kind=leftouter ( ContainerInventory | distinct ContainerID,Name,ContainerHostname ) on ContainerID
My daily IT journal
ContainerLog | summarize count() by ContainerID,Computer | join kind=leftouter ( ContainerInventory | distinct ContainerID,Name,ContainerHostname ) on ContainerID