Is there some way to get full outer join functionality with sumologic? The JOIN operator seems to give inner join
I have a logstream with stageA and stageB and I want to identify where there is a logline for stageA but not stageB for a shared identifier
{ id: '12324', stage: 'a' }
{ id: '12324', stage: 'b' }
{ id: '3467', stage: 'a' }
I would want results to only have id: '3467' since the other id has both stages.
Here is the query that I ended up with
exclude most recent loglines since transaction may span the query window