Hi,
I'm able to get the response in a tabular format using the command:
table clientName, apiMethod, sourceSystem, httpStatus, version, timeTaken
What I want is to do some aggregation on them and get the result like:
Basically, group by clientName, apiMethod, sourceSystem, httpStatus, and version to get the total calls and the average time.
The below command is clearly misleading:
stats count(clientName) as TotalCalls, avg(timeTaken) as avgTimeTakenS by clientName, apiMethod, sourceSystem, httpStatus, version
Please help.
Thanks,
Arun
... View more