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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...