Avatar

Correct answer by
Employee

Hi Kapil,

This is from my local instance with internal login

1822307_pastedImage_0.png

I can see the stored session information from the schema.

My sysfilter in schema definition for xtk:sessionInfo is :

1822308_pastedImage_1.png

If this is the same as yours , then the alternate process can be to simply run a JS code to query the information from the database directly

var cnx = application.getConnection()

var stmt = cnx.query("select * from xtksessioninfo;")

for each(var row in stmt)

logInfo(row);

cnx.dispose();

and then manipulate the logs to extract information required and create the report

Regards,
Adhiyan

View solution in original post