Hi @Pooja_R, I agree with @yuanliu , could you better describe what in your search don't work? Anyway, to display a value field in a stats command, you can use the values() option, something like this: <your_search>
| bin _time span = 5m
| stats
dc(D_IP)as dest_ip_count
earliest(_time) AS start_time
values(host) AS hostname
values(dest_ip) AS dest_ip
BY src_ip
| search dest_ip_count>3
| eval start_time=strptime(connection_start_time,"%Y-%m-%d %H:%M:%S")
| sort -dest_ip_count Ciao. Giuseppe
... View more