Hi, I am trying to join 2 searches with produce some results but I am getting this error which says - "subsearch produced 50000 results truncating to 50000".
I can't change the limits.conf so is there any other way to get the stats without using join.
This is my search -
index=test_index ip="83.136.24.154" sourcetype=audit_log event=Attempt NOT messagetype=Request NOT status=failure
| rex field=idDetails "id\:(?<id>.*)"
| eval successful_login=if(status == "success", "Yes", "No")
| rename subject AS username
| join type=left id username
[ search index=test_index sourcetype=server_log "validator.Credential"
| rex field=_raw "id\:(?<id>[^\s]+)"
| rex field=_raw "mytemp\s(?<message>.*)$"
| rex field=_raw "user\s\[?(?<username>[^\]]+)"
| fields id,message,username]
| table _time,username,successful_login,message
Let me know if someone can advice.
... View more