Splunk Search

How to replace all values for a field with "Other" that do not equal values A, B, or C?

ttoine
Explorer

I am working on a pie chart to identify the main categories of some data. Below are some possible values:
Apple
Peach
Perry
Strawberry
Blueberry
Cranberry

I would like to replace the value by "Other" when this is not Apple, Peach or Perry. How could I do that? using replace? using if?

Tags (2)
0 Karma

sundareshr
Legend

Try this

.... | eval category=if(category="Apple" OR category="Peach" OR category="Perry", category, "Other")
0 Karma

ttoine
Explorer

thanks. do you think it would be possible to do this in an other way that would use less resources?

0 Karma

somesoni2
Revered Legend

Do this after your aggregation (stats etc).

0 Karma

ttoine
Explorer

after timechart, this is not working.

0 Karma

sundareshr
Legend

The other option is using rex mode=sed or replace() but not sure how much more efficient that will be. Maybe I am not understanding your concern?

0 Karma

ttoine
Explorer

if I want to use rex mode=sed, or replace, how can I set the condition?

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