Hello everyone, asking your help with my subsearch query.
I need to find events in index="1", take from it Logon_ID, and run search query in another one index (index="2").
My current search
index="2" EventCode=4662 AND (Condition="1" OR Condition="2")
[ search index="1" EventCode=4624 Logon_Type=3
| eval Logon_ID=lower(Logon_ID)
| eval Logon_ID=mvindex(Logon_ID,-1)
| fields Logon_ID]
It doesn't work, as I understand main search runs only by 1 Logon_ID, though in index1 there are many Logon_ID values. What could be the reason? Thank you.
... View more