I have multiple devices with the same Logtype, and I would like to calculate and display the amount of logs being ingested into SecOps for each device.
I was able to display the log capacity for each Logtype using the following:
$Log_Type = ingestion.log_type
match:
$Log_Type
outcome:
$Total_Size_GB = math.round(sum(ingestion.log_volume) / (1024 * 1024 * 1024), 1)
order:
$Total_Size_GB desc
limit:
50
Is there a way to display the log capacity for each principal.asset.hostname or principal.hostname?
Thank you in advance.