The following query aggregates the log intake volume for each Feed ID on the dashboard.
ingestion.log_type = "CISCO_MERAKI"
$Feed_id = ingestion.feed_id
$Date = timestamp.get_date(ingestion.end_time)
match:
$Feed_id
outcome:
$Volume = math.round(sum(ingestion.log_volume) / (1000), 2)
order:
$Volume desc
The graph shows the Feed ID, but is it possible to change this to an arbitrary name?
If possible, I would like to know how to do this.
