Hi when I do this
`pan_index` sourcetype=pan_traffic OR (sourcetype=pan_threat log_subtype=url) | stats values(sourcetype) as sourcetype values(dst_hostname) as hostname sum(bytes) as bytes sum(elapsed_time) as duration by user | search sourcetype="pan_threat" | table user hostname bytes duration
I get the result as :
Ronald website total bytes total duration
Where as I am looking for :
Ronald 1st website 1st website bytes used 1st website time spent
2nd website 2nd website bytes used 2nd website time spent
I have tried almost everything, but nothing has worked.
Have you tried this?
pan_index sourcetype=pan_traffic OR (sourcetype=pan_threat log_subtype=url) | stats values(sourcetype) as sourcetype values(dst_hostname) as hostname sum(bytes) as bytes sum(elapsed_time) as duration by user, dst_hostname | search sourcetype="pan_threat" | table user hostname bytes duration
Thank you for your reply when I add the line it say ( No results found.) .
pan_index
sourcetype=pan_traffic OR (sourcetype=pan_threat log_subtype=url) | stats values(sourcetype) as sourcetype values(dst_hostname) as hostname sum(bytes) as bytes sum(elapsed_time) as duration by user dst_hostname | search sourcetype="pan_threat" | table user hostname bytes duration
This works and I got this from btorresgil but i would not show the bytes or the duration so I tried everything possible and just got so far on my above answer.
Perhaps this will work better.
pan_index sourcetype=pan_traffic OR (sourcetype=pan_threat log_subtype=url) | stats values(sourcetype) as sourcetype values(dst_hostname) as hostname sum(bytes) as bytes sum(elapsed_time) as duration by user, hostname | search sourcetype="pan_threat" | table user hostname bytes duration
I got an errro ( Error in 'stats' command: The output field 'hostname' cannot have the same name as a group-by field.)