Splunk Search

regex help

saurabhkunte
Path Finder

I have following as raw events

Message=Total db time 272 seconds
Message=Total db time 2,272 seconds
Message=Total db time 32,272 seconds

I am able to extract the digit via regex, but unable to modify the regex to include numbers separated with comma. Any help appreciated.

Here is my current regex
rex "db time (?\d*)" -- This extracts the value 272, but not the other numbers with commas.

Tags (1)
0 Karma
1 Solution

javiergn
Super Champion

Try this instead:

rex "db time (?<time>[\d\,]+)"

If you want something more robust that supports decimals with both comma and dot try this instead (not tested but logic is fine):

| rex "db time (?<time1>\d+)[\,\.]?(?<time2>\d+)?"
| eval time = time1 . time2

View solution in original post

javiergn
Super Champion

Try this instead:

rex "db time (?<time>[\d\,]+)"

If you want something more robust that supports decimals with both comma and dot try this instead (not tested but logic is fine):

| rex "db time (?<time1>\d+)[\,\.]?(?<time2>\d+)?"
| eval time = time1 . time2

saurabhkunte
Path Finder

Many thanks, this works very well.

0 Karma
Get Updates on the Splunk Community!

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...