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!

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...