Splunk Search

Help with regex to extract time in milliseconds

aniketb
Path Finder

Hi,

Can someone help me extract the time in MS from the following log line?

Dec 15, 2015 9:35:08 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 183678 ms

I'm trying this, but doesn't seem to work correctly:

0 Karma

jplumsdaine22
Influencer

If the message is regular (ie if it always says INFO: Server start up in...) then you would be better off making the regex more explicit.

INFO:\sServer\sstartup\sin\s(?<ms>\d+)\s

You can see the difference between them in the regex debugger on https://regex101.com/

0 Karma

javiergn
Super Champion

On a side note, you can use the following site to test your regex: https://regex101.com/

0 Karma

gfuente
Motivator

Hello

try this regex:

\s*(?<ms>\d*)\s*ms

Regards

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 ...