Splunk Search

How to do 2 parameters rex mode=sed ?

pgbr7
Explorer

Hello Guys,

It's possible 2 parameters rex mode=sed in sequence ?
I can change ab for 01 and ac for 02

I try this, but not work:
| rex mode=sed field=_raw "s/ab/01/g;s/ac/02/g"
Error:
Error in 'rex' command: Failed to initialize sed. Invalid option string: g;s/ac/02/g

or i need to use 2 rex mode=sed field=_raw , 1 for change ab for 01and other for change ac for 02 ?

0 Karma
1 Solution

gokadroid
Motivator

Use the rex mode sed command split over two lines rather than writing the code in one single line. Also do not use the ; in between. So basically whatever you were trying to achieve with semicolon in between, achieve it with in same command but split over two lines:

yourBaseSearch
| rex mode=sed field=_raw "s/ab/01/g
s/ac/02/g"
| stats count by yourField

NOTE: I have removed the semicolon and tricked command to be in multiline

View solution in original post

gokadroid
Motivator

Use the rex mode sed command split over two lines rather than writing the code in one single line. Also do not use the ; in between. So basically whatever you were trying to achieve with semicolon in between, achieve it with in same command but split over two lines:

yourBaseSearch
| rex mode=sed field=_raw "s/ab/01/g
s/ac/02/g"
| stats count by yourField

NOTE: I have removed the semicolon and tricked command to be in multiline

pgbr7
Explorer

Thanks It's working !

redflexigork
Explorer

Also noticed it works with the space:

| rex mode=sed field=_raw "s/ab/01/g s/ac/02/g"

richgalloway
SplunkTrust
SplunkTrust

Use two rex commands.

---
If this reply helps you, Karma would be appreciated.
0 Karma

pgbr7
Explorer

This is not good, because if I need to change 3 or more its very dificult.

Thanks

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...