Splunk Search

How to add a table column that does operations in each cell based on the values from another column?

HattrickNZ
Motivator

if I have a search that gives me something like this:

a b c 
1 2 3
4 5 6
7 8 9 

how do I add a column d that would do an operation (row2columnC - row1columnC, row3columnC - row2columnC ... all the way down ) in each cell in column d(jsut want to show the value in column d)

a b c d  
1 2 3 3-0=3
4 5 6 6-3=3
7 8 9 9-6=3

I am thinking it would be ...| eval = ?? or something like this...

Tags (4)
0 Karma
1 Solution

renjith_nair
Legend

Try this

your search |delta c as difference p=1|fillnull value=0 difference
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

gyslainlatsa
Motivator

don't using eval

use the command deltawho working like that:

For each event where field is a number, the `delta command` computes the difference, in search order, between the field value for the event and the field value for the previous event

next try this

your search |delta c as d

somesoni2
Revered Legend

Try something like this

your current search giving fields a,b,c | delta c as d | eval d=coalesce(d,c)

HattrickNZ
Motivator

what does eval d=coalesce(d,c) do here? I can't seem to see the difference. Or do i need a null value to see it working?

http://docs.splunk.com/Documentation/Splunk/6.1/SearchReference/Commonevalfunctions

0 Karma

renjith_nair
Legend

Try this

your search |delta c as difference p=1|fillnull value=0 difference
---
What goes around comes around. If it helps, hit it with Karma 🙂

HattrickNZ
Motivator

all good answers here is a working example:
| makeresults count=3 | streamstats count as a | eval a=a+1 | streamstats count as b | eval b=b+10 | streamstats count as c | eval c=c+11 | delta a as a_dif p=1

0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

  Ready to master Kubernetes and cloud monitoring like the pros?Join Splunk’s Growth Engineering team for an ...

Wrapping Up Cybersecurity Awareness Month

October might be wrapping up, but for Splunk Education, cybersecurity awareness never goes out of season. ...

🌟 From Audit Chaos to Clarity: Welcoming Audit Trail v2

🗣 You Spoke, We Listened  Audit Trail v2 wasn’t written in isolation—it was shaped by your voices.  In ...