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!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...