Hi kaphie2002,
you could pass in drilldown one or more tokens (e.g. Account) and then create your search in the secondary dashbord filtering for the maximum value, something like this in the secondary dashboard
secondary_search Account=$account$
| rex field=_index ".payload number.(?.)completed.in\s(?.\d+)ms(?.\w+)"
| eval TimeSec=round(ProcessingTime/1000,0)
| stats count(PayloadID) as Payloads avg(TimeSec) as "AvgSec" max(TimeSec) as "Max Sec" BY Account
| where Payloads > 1000
| sort "Max Sec" desc
| head 1
| eval "AvgSec"=round(AvgSec, 1)
| rename AvgSec as "Avg Sec"
if you want more information, add other fields as values in the stats command.
Bye.
Giuseppe
... View more