Getting Data In

How to remove part of the string using rex

aaa2324
Explorer

I have the below string and would like to remove the date and time part, please help with the query

*abc -04/30, 08:14:07 - c

Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| makeresults
| eval _raw="abc -04/30, 08:14:07 - c"
| rex mode=sed "s/\-\d\d\/\d\d,\s\d\d:\d\d:\d\d\s/- /g"
0 Karma

aaa2324
Explorer

Thanks  however not getting the desired results, if the date and time are dynamic and keeps changing then please help with the complete query. I want to remove the date and time completely and show the results 

abc -04/30, 08:14:07 - c

abc -04/28, 08:15:06 - c

abc -04/29, 08:12:09 - a

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Please explain how the suggested rex does not do as you expected. It might be clearer if you provide some real anonymised events with which to work with.

0 Karma

aaa2324
Explorer

Sorry if the question was not clear.

my intention is to remove date and time fields from the below set of input.

let’s say the column xyz has below contents

abc -04/30, 08:14:07 - c

abc -04/28, 08:15:06 - c

abc -04/29, 08:12:09 - a

my result should be something like below only remove the date and time and display rest of the fields 

abc - - c

abc - - c

abc - - a

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| makeresults
| eval xyz="abc -04/30, 08:14:07 - c
abc -04/28, 08:15:06 - c
abc -04/29, 08:12:09 - a"
| rex field=xyz max_match=0 "(?<xyz>.*)\n*"
| mvexpand xyz
| rex mode=sed field=xyz "s/\-\d\d\/\d\d,\s\d\d:\d\d:\d\d\s/- /g"
0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...