Hi @bhaskar5428, Check out the following: index=*1644* container_name="ls2-sdp-java" $selected_countries$
| rex field=_raw "\[(?<country>[^,]+),\s(?<cobDate>[^,]+),\s(?<sdpType>[^,]+),"
| rex field=_raw "Number of records:\s*(?<Recordcount>\d+)"
| rex field=_raw "^(?<dateTime>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d+Z)"
| eval DateTime=strptime(dateTime, "%Y-%m-%dT%H:%M:%S.%NZ")
| eval CreatedTime=strftime(DateTime, "%H:%M")
| eval CreatedDate=strftime(DateTime, "%Y-%m-%d") Example with makeresults: | makeresults
| eval _raw="2025-03-28T22:04:25.685Z INFO 1 --- [ool-1-thread-11] c.d.t.l.s.s.e.e.NoopLoggingEtlEndpoint : Completed generation for [DE, 2025-03-28, LOAN_EVENT_SDP, 1]. Number of records: 186"
| rex field=_raw "\[(?<country>[^,]+),\s(?<cobDate>[^,]+),\s(?<sdpType>[^,]+),"
| rex field=_raw "Number of records:\s*(?<Recordcount>\d+)"
| rex field=_raw "^(?<dateTime>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d+Z)"
| eval DateTime=strptime(dateTime, "%Y-%m-%dT%H:%M:%S.%NZ")
| eval CreatedTime=strftime(DateTime, "%H:%M")
| eval CreatedDate=strftime(DateTime, "%Y-%m-%d")
| table _raw dateTime country cobDate sdpType Recordcount CreatedTime CreatedDate 🌟 Did this answer help you? If so, please consider: Adding kudos to show it was useful Marking it as the solution if it resolved your issue Commenting if you need any clarification Your feedback encourages the volunteers in this community to continue contributing
... View more