There are 2 data sources A & B with common field common_field.
Source A
Common_Field A1-Field A2-Field
C1 A1 A2
Source B
Common_Field B1-Field B2-Field
C1 B1 B2
In the resulting summary index, I would like to have data as:
Common_Field A1-Field A2-Field B1-Field B2-Field
C1 A1 A2 B1 B2
I created saved search as follows :
SourceType=”A” OR SourceType=”B”| stats values (A1),values(A2), values(B1),values(B2) by common_field.
It is scheduled to run once every 5 min.
if there are correlated events at the time of search execution, it works fine.
Common_Field A1-Field A2-Field B1-Field B2-Field
C1 A1 A2 B1 B2
However, if there are only events from source A at the time of execution, then we get
Common_Field A1-Field A2-Field B1-Field B2-Field
C1 A1 A2
This is OK until subsequent execution of saved search.
After few minutes (in another execution of search), data from source B gets populated, then this row did not get updated. Those fields are still blank.
Common_Field A1-Field A2-Field B1-Field B2-Field
C1 A1 A2 Need to update Need to update
Is there a way to update events?
Thanks,
Sanjay
... View more