Hi All,
I was working on a case where i have 2 fields extracted as "actordisplayName" & "targetUser" in the same raw log.
actordisplayName - who initiated the change, targetUser - to which user it was changed.
index=something displayMes="User update password" | where actordisplayName!= targetUser | table _time user, displayMes, actordisplayName, targetUser outcome.result Running this for 30 days
Requirement: I need to search only for users where actordisplayName & targetUser is not same.
Eg: I want only the results for my admin/someone who has done password reset for me, I don't want the results for me resetting the passwords for my account. In short i need results for where actordisplayName & targetUser is not same.
... View more