Below is my log,
[ERL_ROUTE_ACK_INTERFACE] 2018-08-27 11:06:02 DEBUG [callUpdateERLRouteStatus] ERLRouteAckServiceImpl at line ? | Successfully updated the HDR record for transactionId : 869584588
I want to table the transactionId value.
Can somebody please help?
Try adding this to your query
| rex transactionId\s\:\s(?<transactionid>\d+)
| table transactionid
Try adding this to your query
| rex transactionId\s\:\s(?<transactionid>\d+)
| table transactionid
Works Perfect! Thanks.