This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

export keystroke report from within the Reporting

Need to be able to export a session's keystroke report from within the Reporting Console for external ticket system.
I am using following command but cannot see the output file test.csv.

./sreplay -C /tmp/ -U admin -P netiq123 -g cmdctrl.db
Parents Reply
  • 0   in reply to 
    In the TID I provided above, the first example demonstrates a csv export with the use of "-C":
    /opt/netiq/npum/sbin/sreplay -lC -U admin -F key,user,runas,host,runhost,time,cmd,all -g cmdctrl.db

    Then below that are the ways to export the keystroke reports for the sessions displayed with the above command. Taking on "-C" to the command will do a csv export, for example:
    /opt/netiq/npum/sbin/sreplay -C -U admin -r 416899,cmdctrl.db -a

    If you want a csv generated file, then just output the command to a file:
    /opt/netiq/npum/sbin/sreplay -C -U admin -r 416899,cmdctrl.db -a > keystroke-report.csv

    There is no option to export as xml.
Children