Hi All, I am using transaction command to group events and get stop time of a device. | transaction sys_id startswith="START" endswith="STOP" | eval stop_time=strftime(mvindex(sys_time,1), "%Y-%m-%d %H:%M:%S.%2N") | table sys_id stop_time However, when a field has same value for startswith and endswith, (for example, sys_time is same for both) then, mvindex(sys_time,1) is empty whereas mvindex(sys_time,0) gives the value. If the values are different, then it works fine. Does anyone have any idea on this behavior and on how to work around this to get the value regardless?
... View more