1. {\"errors\":[{\"code\"\"ABC-1000\",\"message\"\"Sorry we are unable to process your request. index=abc ABC-* |rex field=_raw "errors\"\:\[\{\"code\"\:\"(?P<ABC_Code>ABC\-\d+)\"\,\"message\"\:\"(?P<Message>[^\"]+)" | where ABC_Code!="" | search ABC_Code=* | Stats count by ABC_Code Message 2. exception:CommonApplicationException ABC_1001:We're sorry, it looks like an error occured index=abc "exception":"CommonApplicationException" | rex field=_raw "Exception\:\s(?=ABC)(?<ABC_CODE>[^\:]+)\:(?<Message>[^\"]+)" | eval Message=substr(Message, 1, 140) | stats count by ABC_CODE, Message I have these two rex and want to combine both but because these two are different is it possible to combine them and have Stats count by ABC_Code Message?
... View more