Splunk Search

Why is a field extracted with rex always empty in a table?

deborahdigges
New Member

I have two log statements:

daily.cron run at startTime
daily.cron complete at endTime.

I am trying to extract the StartTime and EndTime for each cluster and put it in a table. Somehow, EndTime is always empty.

index=qbo "daily.cron run at"
| rex field=_raw "daily.cron run at (?<StartTime>.*)"
|  append [ search "daily.cron complete at"
| rex field=_raw  "daily.cron complete at (?<EndTime>.*)" ]
| table cluster, StartTime,EndTime| sort cluster
0 Karma

javiergn
Super Champion

I've fixed some issues in your search. Try this and see if that works:

index=qbo "daily.cron run at"
 | rex field=_raw "daily\.cron run at (?<StartTime>.*)"
 |  append [ search index=qbo "daily.cron complete at"
 | rex field=_raw  "daily\.cron complete at (?<EndTime>.*)" ]
 | table cluster, StartTime,EndTime| sort cluster

Also, in order to improve the performance, I would try to write a more exhaustive regex avoiding the dot wildcard (.*) whenever possible. If you know how your start and end time format look like, use that in your regex.

Thanks,
J

0 Karma

sundareshr
Legend

Have you tested your regex. regex101.com is a great resource for testing regular expressions

Having said that, have you tried without the sub search? You should be able to get the same results like this

index=qbo "daily.cron run at" OR "daily.cron complete at" | rex "daily.cron run at (?<StartTime>.*)" | rex "daily.cron complete at (?<EndTime>.*)" | table cluster, StartTime, EndTime
0 Karma
Get Updates on the Splunk Community!

See your relevant APM services, dashboards, and alerts in one place with the updated ...

As a Splunk Observability user, you have a lot of data you have to manage, prioritize, and troubleshoot on a ...

Index This | What goes away as soon as you talk about it?

May 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this month’s ...

What's New in Splunk Observability Cloud and Splunk AppDynamics - May 2025

This month, we’re delivering several new innovations in Splunk Observability Cloud and Splunk AppDynamics ...