Splunk Search

Extracting two fields from a log row

perseger
Explorer

Hi,
I have problem extracting fields from a log where the first field is in the beginning of the row. I want to extract the time when the the row was logged (LOGTIME) and the timestamp from the application (STARTTIME). Any clue how to do that?

My query (which doesn't work):

index=xxx source=yyy | rex "^(?P[^,]+)(?i) startTime=(?P[^&]+)"

Sample log row:

2012-04-23 04:58:48,142 [xxx.yyy.zzz.vvv] 123 /functionname 123 ms / startTime=1327312727&dataX=XXX&dataY=2371316&endTime=1335175127&dataZ=1&dataW=YYY / result=1234567

Any help is appreciated!

Tags (1)
0 Karma
1 Solution

Ayn
Legend

You're forgetting to match the text between the logtime and the starttime. This should do it:

^(?<logtime>[^,]+).+?startTime=(?<starttime>\d+)

I usually use something like regexpal or RegExr to try out regexes.

View solution in original post

kristian_kolb
Ultra Champion

Do you really need to make a separate extraction for those???

If the first timestamp is used by Splunk for indexing, it's automatically available in the internal _time field.

Unless you have turned off automatic field extraction, the startTime should be extracted as well, since it's a regular key=value format.

Note: you may have to use the strftime function for eval when presenting date/time to make it nicer to read for a human.

Hope this helps,

Kristian

perseger
Explorer

Great, _time will work for me.
logtime will be same as _time in my application
Thanks!

0 Karma

Ayn
Legend

You're forgetting to match the text between the logtime and the starttime. This should do it:

^(?<logtime>[^,]+).+?startTime=(?<starttime>\d+)

I usually use something like regexpal or RegExr to try out regexes.

perseger
Explorer

It works! Thanks!

0 Karma
Get Updates on the Splunk Community!

The All New Performance Insights for Splunk

Splunk gives you amazing tools to analyze system data and make business-critical decisions, react to issues, ...

Good Sourcetype Naming

When it comes to getting data in, one of the earliest decisions made is what to use as a sourcetype. Often, ...

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 ...