Hi,
My goal is to create a dashboard, preferably with the new dashboards not with the old feature,
So far I get GB totals with this query
$Log_Type = ingestion.log_type
$Log_Count = ingestion.log_count
match:
$Log_Type
outcome:
$Total_Size_GB = math.round(sum(ingestion.log_volume) / (1024 * 1024 * 1024), 1)
order:
$Total_Size_GB descAnd I’m able to retrieve the number of logs that each server generate with this query:
$Log_Type = $e.metadata.log_type
$Host = $e.intermediary.hostname
$Date = timestamp.get_date($e.metadata.event_timestamp.seconds)
match:
$Date, $Log_Type,$Host
outcome:
$Event_Count = count($e.metadata.event_type)
order:
$Date descBut have no luck getting the number of GB each server generates in a daily fashion.
¿can someone hepl me with this task?

