Splunk Search

Need your help to write query for below requirement.

lksridhar
Explorer

Hi Everyone,

Could you please anyone help me to extract the seconds values from the below log, please share the query to extract the seconds value from the logs.

sameple logs:

Nov 30, 2016 09:31:04 AM CST INFO (TransactionSearchDelegateImpl.java:55) - Transaction Search Query [] Time (in seconds) = 13.206

Thanks,
Sridhar

Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

This should do it.

... | rex "=\s+(?<seconds>[\d\.]+)" | ...
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

niketn
Legend

Try the following rex command:

rex field=_raw "Time \(in seconds\) = (?<TimeInSec>\d+\.\d+)"

PS: Once tested push to props.conf as Field Extraction Knowledge Object, through Interactive Field Extraction or editing props.conf directly.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

richgalloway
SplunkTrust
SplunkTrust

This should do it.

... | rex "=\s+(?<seconds>[\d\.]+)" | ...
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer at Splunk .conf24 ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...