Hello everyone,
I have an XML log file that looks like this:
<TRACE timestamp="1612778642004" dateTimeFormat="yyyy.MM.dd kk:mm:ss z">
<LOGIN user="BSCSWS" factory="117" timestamp="1612778642003"/>
<SOCREATE soiName="CMI" soiVersion="2" name="144" timestamp="1612778642005" factory="117"/>
<COMMAND name="SESSION.CHANGE" timestamp="1612778642014" so="144">
...
</COMMAND>
<COMMAND name="LANGUAGES.READ" timestamp="1612778642017" so="144">
...
</COMMAND>
<SODISPOSE soiName="CMI" soiVersion="2" name="144" timestamp="1612779491299" factory="117"/>
</TRACE>
I would like to get the execution time of each command, that means I should calculate the difference between two successive timestamps. I tried to use the elapsed plugin, but nothing is displayed in output.
Is there any other way to do this?
Thank you for your help 