I have result like this column, row 1
TotalHits: Create, 171
TotalHits: Health, 894
TotalHits: Search, 172
TotalHits: Update, 5
perc90(Elapsed): Create, 55
perc90(Elapsed): Health, 52
perc90(Elapsed): Search, 60
perc90(Elapsed): Update, 39 I want to convert this into Total Hits perc90(Elapsed) Create 171 55 Update 5 52 Search 172 60 Health 894 52 What query should I use Btw, to reach the above output I used like this, even this I am not sure whether its the best way index=xyz | search Feature IN (Create, Update, Search, Health) | bin _time span=1m | timechart count as TotalHits, perc90(Elapsed) by Feature | stats max(*) AS * | transpose Basically I am trying to get the MAX of the 90th percentile and Total Hits during a time window.
... View more