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

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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

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

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...