Sumologic Query:
_source="VerizonCDN"
| json field=_raw "path"
| json field=_raw "client_ip"
| json field=_raw "referer" | where %referer = "" | where %status_code = 200
| json field=_raw "user_agent"
| count by %host,%path,%client_ip,%referer,%user_agent | where _count >= 100
| order by _count desc
and my conversion to splunk:
source="http:Emerson_P1CDN" AND status_code=200 AND referer=""
| stats count by host,path,client_ip,referer,user_agent | where count >= 100 | sort - count
Do think I convert it right? because the result of splunk was different from sumologic.
... View more