Hi Splunkers,
Please guide us on the requirement below:
Input:
server, env, req no, input field,status
host-1,PROD,1666680,mobile1,Deployment_Successful
host-1,PROD,1666680,mobile2,Deployment_...
See more...
Hi Splunkers,
Please guide us on the requirement below:
Input:
server, env, req no, input field,status
host-1,PROD,1666680,mobile1,Deployment_Successful
host-1,PROD,1666680,mobile2,Deployment_failed
host-1,PROD,1666680,mobile3,exception
host-1,PROD,1666001,mobile1,Deployment_Successful
host-1,PROD,1666601,mobile2,Deployment_failed
host-1,PROD,16666801,mobile3,exception
Expected output: Pie chart with status count
My trial:
sourcetype=sourcetype1 source=*.log
| rex field=_raw "(?\w+\-\d+)\,(?\w+\/\w+)\,(?\d+)\,(?\w+)\,,(?\w+.*)"
| stats count by Status
The above search is not showing the count if the log has different statuses. Kindly help to guide on this.