📅 Tuesday, 3 June 2025

🕐 8:10 PM

index=proxy | stats sum(bytes_in) as total_bytes_in sum(bytes_out) as total_bytes_out count by dest_host | eval total_gb_in=round(total_bytes_in/1024/1024/1024,2) | eval total_gb_out=round(total_bytes_out/1024/1024/1024,2) | eval total_gb= total_gb_in+total_gb_out | fields - total_bytes_in - total_bytes_out - total_gb_in - total_gb_out | sort - total_gb | head 10