Splunk Search

How to create a new column in my table showing the sum of FieldA by FieldB?

akawacz
Path Finder

HI

My data

Quarter   Type   Amount
2014q1     a      100
2014q1     b      200
2015q2     a      100
2015q2     b      100

I would like to create an additional column with sum for the same quarter.

Expected result

Quarter   Type   Amount  New_column
2014q1     a      100       300
2014q1     b      200       300
2015q2     a      100       200
2015q2     b      100       200

My current search:

index=test |stats(amount) as amount by quarter type

I do not want to use join and append.

Could you help me?

0 Karma
1 Solution

somesoni2
Revered Legend

Try this

your current search | eventstats sum(amount) as New_column by quarter

View solution in original post

somesoni2
Revered Legend

Try this

your current search | eventstats sum(amount) as New_column by quarter

akawacz
Path Finder

That works!! thank you

0 Karma

ppablo
Retired

Hi @akawacz,

Glad @somesoni2 helped you find your answer 🙂 Please be sure to accept his answer by clicking "Accept" directly below the answer, otherwise this post will show as unresolved. Thanks!

Patrick

0 Karma

woodcock
Esteemed Legend

This is not your search; you are missing a function between stats and (amount).

0 Karma

akawacz
Path Finder

Yes, good point. Just forgot to put it. i was recreating version of my bigger search that would be better/easier to explain.

0 Karma

woodcock
Esteemed Legend

OK, so what is it supposed to be?

0 Karma

akawacz
Path Finder

should be sum

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 ...