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!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...