Thanks for that. I understand the logic behind this now, but the search returns nothing so far.
When you say that you have a SendmailMessageID created via a rex command, do you need to create this again in the outer search? As to my mind this is the 'variable' to put it that we want to use in the outer search. it seems to me that we are just defining it again, instead of passing the value of it from the inner search to the outer search.
The inner search on its own will return over 1000 unique values, which I then want to use to do an additional search for each.
index=linux_syslog netgroup=my_servers* "succesfull delivery" [search index=linux_syslog netgroup=my_servers*
[email protected]| rex field=_raw "sendmail\[\d+\]: (?<SendmailMessageID>\w+):" | stats count by SendmailMessageID] | rex field=_raw "sendmail\[\d+\]: (?<SendmailMessageID>\w+):"
As an aside what is authenticationtype used for?
... View more