Getting Data In

How to extract out a field and replace it if found in key word

rey_1993
New Member

For example my field is file_name, which contain a string " Hi Hello Hi".
My search is file_name =hello | eval keyword = if(file_name== "hello" , "hello") | table keyword

this gives me an error which don let me create a new field call keyword with hello in it.

Can anyone help me with this?

Tags (4)
0 Karma

lukejadamec
Super Champion

Your problem is that you don't have a false option in the statement. Try adding one like this:

file_name =hello | eval keyword = if(file_name== "hello" , "hello","goodbye") | table keyword

If you would rather change the value in keyword only if file_name is "hello", and other wise use the contents of file_name then use this:

file_name =hello | eval keyword = if(file_name== "hello" , file_name) | table keyword
0 Karma

lukejadamec
Super Champion

I believe you can do that with sed. With sed you can basically change the value that contains 'hello' to be just 'hello', and it works with wildcards.
Unfortunately, I don't know sed.

0 Karma

rey_1993
New Member

what are some ways i can do that?

0 Karma

lukejadamec
Super Champion

No, you can't use wildcards like that.

0 Karma

rey_1993
New Member

Hi there,
Can i do something like file_name=star"hello"star
I keep getting error on this
sorry cant display star here thats why i put star

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...