You need to define "compare". If all that interest you is which addresses are different, it could be as simple as
index=A source IN (A,B) ``` both have common field address ```
| stats values(source) as source by address ``` source is now multivalued ```
| where source == "A" AND source != "B" ``` SPL allows multivalued equality test ```
Hope this helps.
You need to define "compare". If all that interest you is which addresses are different, it could be as simple as
index=A source IN (A,B) ``` both have common field address ```
| stats values(source) as source by address ``` source is now multivalued ```
| where source == "A" AND source != "B" ``` SPL allows multivalued equality test ```
Hope this helps.