Hi Woodcock,
Thanks for the regex above and this is working fine. From the above data extended the regex for below fields. I have tried and the t1,Field0,Field1,Field2,Field3,Field4 are displaying now . Some how I could not be able to extract these fields by using IFX and all the time I am getting error. Below Regex is extracting only "GC (Allocation Failure)" events. Would like to extend for other Full GC and GC events as well.
Full GC (System.gc()) as "gt"
GC (Allocation Failure) as "gt"
GC (System.gc()) as "gt"
(?ms)\d+\.\d+\D+^(?<t1>[^:]+):\s+(?<Field0>[^-\r\n\.\b]+)\s+(?<Field1>[^-\r\n\.]+)->(?<Field2>[^\(]+)\((?<Field3>[^\)]+)\),\s+(?<Field4>[^\s]+\ssecs)
... View more