Splunk Search

output of time field in splunk

avi123
Explorer

Hi All,

I have time field having time range in this format in output of one splunk query:

TeamWorkTimings

09:00:00-18:00:00

I want to have the values stored in two fields like:

TeamStart

09:00:00

TeamEnd

18:00:00

How do I achieve this using regex or concat expression in splunk. Please suggest.

Labels (1)
0 Karma

avi123
Explorer

thanks, it worked 🙂 

One more request, since I am new to splunk, could you please help me understand how this regular expression works, I mean what does this means in a regex expression:

| rex field=TeamWorkTimings "(?<TeamStart>[^-]+)-(?<TeamEnd>.*)"

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

regex101.com is a good site to test and understand regular expressions

I have set this one up to show your extraction

https://regex101.com/r/mBRfJF/1

 

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this

| rex field=TeamWorkTimings "(?<TeamStart>[^-]+)-(?<TeamEnd>.*)"
Get Updates on the Splunk Community!

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...

Join Us at the Builder Bar at .conf24 – Empowering Innovation and Collaboration

What is the Builder Bar? The Builder Bar is more than just a place; it's a hub of creativity, collaboration, ...

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...