When I run the following search, I get 100+ results of src_ip 1.2.3.4 and signature X:
index=http status=200 src_ip!=10.0.0.0/8 src_ip!=192.168.0.0/16 src_ip!=172.16.0.0/12 | table src_ip | join [search index=snort | dedup src_ip,signature | table src_ip,signature]
However, if I run the search below, dedup works as expected and the combination of src_ip 1.2.3.4 and signature X only shows up once
index=snort src_ip=1.2.3.4 | dedup src_ip,signature | table src_ip signature
... View more