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!

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