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!

New This Month - Splunk Observability updates and improvements for faster ...

What’s New? This month, we’re delivering several enhancements across Splunk Observability Cloud for faster and ...

What's New in Splunk Cloud Platform 9.3.2411?

Hey Splunky People! We are excited to share the latest updates in Splunk Cloud Platform 9.3.2411. This release ...

Buttercup Games: Further Dashboarding Techniques (Part 6)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...