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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...