Hi everyone,
I'm looking to have this result:
For that I have 2 lines in my file:
Question: Service + IdTransaction
Response: Status + IdTransaction
Until now i can extract the different name of service and different codes but i don't know how to do the matching between them and to increment the result.
| rex "(?<Service>CONSULT|FIN_GB|FIN_RESERVE|FIN_VENDEUR|AUTHENTIF)"
| rex field=_raw "Tlv Dico : (?<new>.{22}.{27})?"
| rex field=new "2004(?<Status>.{5})?"
| stats count(TransactionId) by Service , Status
... View more