Splunk Search

Replacing multiple values of a field with single value with rex sed

viswatejabolla
New Member

Hi All,

I have field called stepName which will have below three values.

TextResource.getFirstLine

TextResource.getSecondLine

TextResource.getLastLine

How can write a rex with mode=sed to replace only the words First,Second and Last from the stepName field to "Which", so that my output will have only one stepName field value as "TextResource.getWhichLine".

 

Labels (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

This should do it.

| rex field=stepName mode=sed "s/(First|Second|Last)/Which/"
---
If this reply helps you, Karma would be appreciated.
0 Karma

viswatejabolla
New Member

Hi Rich,

Thanks for responding. Those are not the only three which I have. There are some other stepNames as well which have same starting string and ending string. Adding all of those words to the search string will make it ugly.

Anything can be done like "startswith" and "endwith", or by a regex which can do this without giving all the words.

0 Karma

richgalloway
SplunkTrust
SplunkTrust
| rex field=data mode=sed "s/(TextResource\.get).*(Line)/\1Which\2/"
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Exciting News: The AppDynamics Community Joins Splunk!

Hello Splunkers,   I’d like to introduce myself—I’m Ryan, the former AppDynamics Community Manager, and I’m ...

The All New Performance Insights for Splunk

Splunk gives you amazing tools to analyze system data and make business-critical decisions, react to issues, ...

Good Sourcetype Naming

When it comes to getting data in, one of the earliest decisions made is what to use as a sourcetype. Often, ...