Hi @Sureshp191 Here's a run anywhere example from the example data provided... | makeresults
| eval raw="RefreshAsyncjronized End, TradingSymbol(s): 2AC5, 3DE2, 5CE3, 4FA4, 1BM5, TEST-2AB6, TEST-2BA9, ElapsedTime: 12.3762658
RefreshAsyncjronized End, TradingSymbol(s): 3DE2, 5CE3, 4FA4, 1BM5, TEST-2AB6, TEST-2BA9, 2AC5, ElapsedTime: 15.3762658"
| eval raw=split(raw, "
")
| mvexpand raw
| rename raw AS _raw
``` the above is just creating dummy events to test the following SPL code with ```
| rex "TradingSymbol\(s\): (?<TradingSymbol>.+?), ElapsedTime: (?<ElapsedTime>[^\s]+)"
| stats values(ElapsedTime) AS ElapsedTime BY _time TradingSymbol
| rename TradingSymbol AS PortfolioSymbol(s) Note, using _time instead of Date is useful as the UI formats into a human readable form. If it must be Date then you cannot simply rename _time as Date as the Date will appear as an epoch seconds integer value. You'll need to do reformat time using eval and strftime() functions. Basically, just stick with using _time instead.
... View more