Forum Discussion

The-messenger's avatar
The-messenger
Icon for Cirrostratus rankCirrostratus
Jan 11, 2018

APM Session Data

I need to get apm session data beyond what Manage Sessions provides. I have read about list apm session all-properties. I'd like to find all sessions with a specific variable value and then table other values in the same sessionid.

 

for example, can I get all sessions with a specific apm profile and then table user, landingURI, policy.result?

 

And - does big-iq provide anything more than manage sessions, under APM?

 

I hope future versions of tmos will allow adding columns, selecting and sorting by any variable.

 

1 Reply

  • Hi,

    You can use the sessiondump command on the cli to retrieve this information.

    sessiondump --allkeys | egrep "policy.result|logon.last.username|server.landinguri"
    

    If you would like to see session variables from a specific APM Profile you could further grep this like

    sessiondump --allkeys | egrep "policy.result|logon.last.username|server.landinguri|/Common/APM_Profile_Name"