Splunk Search

How to extract the integer values from my sample log?

lksridhar
Explorer

Hi Everyone,

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

Nov 30, 2016 09:31:04 AM CST INFO (TransactionSearchDelegateImpl.java:54) - String=[Transaction Search Results. Transactions Count Is], String=[], Integer=[351]

Thanks,
Sridhar

0 Karma
1 Solution

niketn
Legend

You can use your dummy data on regex101 to evaluate your regular expressions.

rex field=_raw ", Integer=\[(?<Integer>\d+)\]"

PS: Once you test across your data, you should move the same as Field Extraction Knowledge Object as that is easier to maintain and reuse. You can do the same via Extract New Fields option during search (Interactive) or from Settings --> Knowledge --> Fields --> Field Extractions or directly editing props.conf.

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

View solution in original post

0 Karma

niketn
Legend

You can use your dummy data on regex101 to evaluate your regular expressions.

rex field=_raw ", Integer=\[(?<Integer>\d+)\]"

PS: Once you test across your data, you should move the same as Field Extraction Knowledge Object as that is easier to maintain and reuse. You can do the same via Extract New Fields option during search (Interactive) or from Settings --> Knowledge --> Fields --> Field Extractions or directly editing props.conf.

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

ddrillic
Ultra Champion

Try please -

| rex field=_raw Integer=\[(?<int_num>\d*)\]

It should create the int_num field.

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...