Query Details
//Show data received per Syslog server per device that reports to each Syslog server. Change the where DeviceVendor statement for the vendor to look for, or add more based on the devices you know report to each syslog server. CommonSecurityLog | where DeviceVendor == "Fortinet" | where isnotempty(ReceivedBytes) | summarize sum(ReceivedBytes) by Computer
This query shows the amount of data received by each device that reports to a Syslog server. It specifically looks for devices from the vendor "Fortinet". You can modify the query to include other device vendors or add more conditions based on the devices you know report to each Syslog server. The query then summarizes the total received bytes for each computer.

Rod Trent
Released: January 21, 2022
Tables
Keywords
Operators