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!

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...