Hello,
I am new to Splunk. Please help me write a query to get count of response by ServcieName(displayed in rows) and by response code. The response code and Service name are dynamic.
eg:
Service 201 200 400 401 500 503
ServiceA 2900 1023 0 12 3 6
ServiceB 1649 677 1 1 3 6
This should get you what you want.
{your base search here}
| chart useother=f limit=0 count by serviceName, responseCode
Did this get you what you were looking for? If so, please mark the solution as accepted.