Change the search to add in to the user and destination so it's captured, e.g. | tstats summariesonly=t allow_old_summaries=t count values(Authentication.dest) as dest values(Authentication.user) as user from datamodel=Authentication by Authentication.action, Authentication.src
| rename Authentication.* as *
| chart last(count) values(dest) as dests values(user) as users over src by action i.e. change the first 3 lines to add in the values - not also the wildcard rename You can add more fields from the Authentication datamodel if you need more information
... View more