| chart count by SHORT_ID, command_status_code
Does your sample contain above two fields?
| search NOT ESME_RTHROTTLED=0
what's ESME_RTHROTTLED ?
I think your chart result is like below:
SHORT_ID,command_stats_code_A,command_stats_code_B,command_stats_code_C
SHORT_ID_A,x,x,x
SHORT_ID_B,y,y,y
....
Using bin , stats and untable works well for aggregation with time as rows in multiple elements, but in that case we can not make a query unless we know what the value of the field is.
... View more