I am trying to search List the top 10 TCP ports accessed by unique IPs
index=firewall
[ search index=firewall
| top limit=10 dest_port
| table dest_port ]
| stats values(dest_port) as "Top 10 Ports" count by src_ip
index=firewall
[ search index=firewall
| top limit=10 dest_port
| table dest_port ]
| stats values(dest_port) as "Top 10 Ports" count by src_ip