@kp_pl wrote: index="odp" OR index="oap" txt2="ibum_p" | rename e as c_e | eval c_e = mvindex(split(c_e, ","), 0) | stats values(*) by c_e line 1 - two indexes joined and one of them filtered ( to create OneToOne relation). To clarify, line 1 does *not* join the indexes nor does it create a one-to-one relation. The OR operator tells the search peers to select all events from the odp index and the events in the oap index where the txt2 field has the specified value. No relationship between the two indexes is made or implied and none should be inferred. To create a relationship, use the join (not preferred), transaction (also not preferred), or stats (preferred) command to associate the events by common fields, as in line 4.
... View more