Splunk Search

What is the best way to add a set of values in a table, subtract another set of values, then append the result back to the table?

Stevelim
Communicator

I have the following situation:

some commands | table Type, Value which results in:

Type, Value

A, 5
B, 5
C, 1
D, 0

I need to add up A and B, subtract C and D, then append the result back to the table like this as another value Type="E":

Type, Value

A, 5
B, 5
E, 9 <- 5+5-(1+0)

Any ideas?

1 Solution

jplumsdaine22
Influencer

Appendpipe is one solution. It allows you to append to reporting commands. In this case, instead of using table Type Value use statsto sum the values of your types, then use eval to convert C & D to negative values. Then use appendpipe to get the total of your column

... |stats sum(Value) as Value by Type | eval Value=if((type=="C" OR type=="D"),Value*-1,Value) | appendpipe [stats sum(Value) as Value | eval Type = "E"] | search NOT (Type="C" OR Type="D")

You can also use addcoltotals (a simpler method, but appendpipe allows you to do more than simple sum, so it's worth knowing)

... |stats sum(Value) as Value by Type | eval Value=if((type=="C" OR type=="D"),Value*-1,Value) | addcoltotals Value labelfield=Type label=E | search NOT (Type="C" OR Type="D")

See: http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/Appendpipe
See: http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/Addcoltotals
And if you're not familar with the eval function used in these examples see: http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/CommonEvalFunctions

View solution in original post

javiergn
Super Champion

I tried this generic option that should work for any number of values.
I have tested it with your example and it seems to work fine:

| inputcsv mycsv.csv
| sort Type
| streamstats count as n
| eventstats median(n) as median
| eval ValueSign = if(median > n, Value, -Value)
| addcoltotals
| fillnull value=E
| where n < median
| fields Type, ValueSign
| rename ValueSign as Value
0 Karma

jplumsdaine22
Influencer

Appendpipe is one solution. It allows you to append to reporting commands. In this case, instead of using table Type Value use statsto sum the values of your types, then use eval to convert C & D to negative values. Then use appendpipe to get the total of your column

... |stats sum(Value) as Value by Type | eval Value=if((type=="C" OR type=="D"),Value*-1,Value) | appendpipe [stats sum(Value) as Value | eval Type = "E"] | search NOT (Type="C" OR Type="D")

You can also use addcoltotals (a simpler method, but appendpipe allows you to do more than simple sum, so it's worth knowing)

... |stats sum(Value) as Value by Type | eval Value=if((type=="C" OR type=="D"),Value*-1,Value) | addcoltotals Value labelfield=Type label=E | search NOT (Type="C" OR Type="D")

See: http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/Appendpipe
See: http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/Addcoltotals
And if you're not familar with the eval function used in these examples see: http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/CommonEvalFunctions

Stevelim
Communicator

Thank you! That was exactly what I was looking for!

0 Karma

renjith_nair
Legend

Is there any categorization available for A,B and C,D or any other field which can be used to group A,B and C,D?

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...