Dashboards & Visualizations

How to add values of 1st row to 2nd row and so on and show the sum in a different column

arindam_dhar
New Member

I have count of VMs per month and I want to show the count increment in a new column, for ex

_time Monthly count
2014-06 49
2014-07 300
2014-08 5
2014-09 97

I want to show the incremental sum in a new column as this -
_time Monthly count Incremental Sum
2014-06 49 49
2014-07 300 349
2014-08 5 354
2014-09 97 471

Tags (1)
0 Karma

inventsekar
SplunkTrust
SplunkTrust

please check "accum" command -
For each event where field is a number, the accum command calculates a running total or sum of the numbers. The accumulated sum can be returned to either the same field, or a newfield that you specify.
http://docs.splunk.com/Documentation/Splunk/6.4.2/SearchReference/accum

your search here | accum count as IncrementalSum
0 Karma

somesoni2
Revered Legend

Try this

your current search | eval Commulative_sum='Monthly count' | accum Commulative_sum

OR

your current search | streamstats sum("Monthly count") as "Commulative Sum"
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...