tag=autoexpress_prod level=debug mdc.InvocationName=calculatePremiumAutoProcessc "serviceRequestName"
| rex field=message "\<DECFirstName\>(?<Message>.*)\</DECFirstName\>"
| rex field=message "\<FirstName\>(?<Fname>\w+)"
| rex field=message "\<LastName\>(?<Lname>\w+)"
| rex field=message "\<MaritalStatus\>(?<Married>\w+)"
| dedup Married Fname Lname mdc.QuoteID
| join mdc.QuoteID
[search tag=autoexpress_prod level=debug mdc.InvocationName=recordBillingAccount "webservice request XML"
| rex field=message "\<bil:externalPolicyNum\>(?<PolicyNumber>.{0,12})"]
| rename mdc.State as State, mdc.QuoteID as QuoteID
| table _time, PolicyNumber, State, Fname, Lname, Married, Message
| sort 0 Fname Lname
| streamstats count by Fname Lname QuoteID
| eventstats max(count) as keep by Fname Lname
| search keep=2
Here, sorry about that. I tried the fix, and it seemed to work, But i think the issue appears when i add the sorting function to it. For some reason the DECFirstName field makes the code drop results.
... View more