Splunk Search

eval by rows

jiaqya
Builder

i have a table data where in a row has 0's . i need to replace those 0 only for that row

ex:

rowname:data
one:5
two:0
three:0
four:5

in this example i want to change 0 belonging to rowname="two" to a different value, only that row.
how to achieve it..

Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

You should be able to do it like this

... | eval data = if(rowname=="two" AND data==0, replacementValue, data)
| ...
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

You should be able to do it like this

... | eval data = if(rowname=="two" AND data==0, replacementValue, data)
| ...
---
If this reply helps you, Karma would be appreciated.
0 Karma

jiaqya
Builder

Thanks, just one more thing, what if i have more than 1 columns , like data, data 1, date2... etc

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Include the additional fields in the if function.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...

Join Us at the Builder Bar at .conf24 – Empowering Innovation and Collaboration

What is the Builder Bar? The Builder Bar is more than just a place; it's a hub of creativity, collaboration, ...

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...