I have a splunk query which results in the output as:
INFO :url="some_url": APIFilter.onComplete@87 : type=finalResponse;response_code=200;processing_time=21663;CommandType1_is_success=yes;CommandType1_exe_time=2758;CommandType2_is_success=yes;CommandType2_exe_time=8312;num_dependencies=2;is_all_dep_successful=true;dependencies_exe_time=11070;App_exe_time=10593;
I want to group by CommandType and have an output as:
Command Type | Success | Average | Median |
CommandType1| yes | 2758 | 2758 |
CommandType2 | yes | 8312 | 8312 |
My question here is how can I group my multiple fields in the same result?
↧