Hi -
I have two searches that have the same fields exactly but from different sources.
I would like to join and sum the results and output
The searches:
index="atti" sourcetype="strongmail" source="/data1/strongmail/log/strongmail-retryfailed.log" mailingclass="smtpvhost1.yp.com"|stats count as NumberFailed by MailingId,Bouncetype
MailingId, Bouncetype, NumberFailed
12121,2004,2
12058,3004,4
index="atti" sourcetype="strongmail" source="/data1/strongmail/log/strongmail-failed.log" mailingclass="smtpvhost1.yp.com" |stats count as NumberFailed by MailingId,Bouncetype
MailingId, Bouncetype, NumberFailed
12121,2004,4
12058,3004,6
They return exactly as you see the same columns, I want combine(Sum) the results and output:
MailingId, Bouncetype, NumberFailed
12121,2004,6
12058,3004,10
Thanks.
... View more