Splunk Search

convert text into numbers - HH:MM:SS into minutes

splunker30039
Path Finder

I have a field 'vpn_duration' which is taken from the 'Duration:' value in an ASA syslog disconnect message.

The message looks like this:

May 26 15:15:56 cvpn.X.net May 26 2010 14:58:24: %ASA-4-113019: Group = XVPN, Username = userA, IP = 1.2.3.4, Session disconnected. Session Type: IPsec, Duration: 5h:06m:18s, Bytes xmt: 24875, Bytes rcv: 33036, Reason: Lost Service

I would like to take the value I get (5h:06m:18s) and convert it into minutes. So, in this case, my result would be 306.

How can I get this done?

Tags (1)
0 Karma
1 Solution

ftk
Motivator

You can use something like the following search:

your search terms | rex "Duration: (?<hours>\d+)h:(?<minutes>\d+)m:(?<seconds>\d+)s" | eval duration_minutes = ((hours*60)+minutes+(seconds/60))

View solution in original post

dwaddle
SplunkTrust
SplunkTrust

I came up with almost the same thing as ftk, except my ASA has durations > 1d in the logs..

| rex field="_raw" "Duration: (?&lt;dur_day&gt;[0-9]+)?d? *(?&lt;dur_hour&gt;[0-9]+)h?:(?&lt;dur_min&gt;[0-9]+)m?" 
| eval connduration=(if(dur_day=="",0,dur_day)*1440)+(dur_hour * 60)+dur_min

ftk
Motivator

You can use something like the following search:

your search terms | rex "Duration: (?<hours>\d+)h:(?<minutes>\d+)m:(?<seconds>\d+)s" | eval duration_minutes = ((hours*60)+minutes+(seconds/60))
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 ...