Splunk Search

How to create a search that calculates the percentage between two rows?

MarianaPereira
New Member

Hello!!!

I need to calculate the percentage between the rows in my table, like this, for example:

Search:

| bucket span=10m _time
| stats count by _time

Result:

    _time                  count
1   2020-06-03 16:10:00 27656974
2   2020-06-03 16:20:00 68834318
3   2020-06-03 16:30:00 68160616
4   2020-06-03 16:40:00 67655028
5   2020-06-03 16:50:00 66023251
6   2020-06-03 17:00:00 65418711
7   2020-06-03 17:10:00 36918173

How can I calculate perc1=row2/row1, perc2=row3/row2, and so on?

Labels (2)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @MarianaPereira,
you can use delta and eval commans:

your_search
| bucket span=10m _time
| stats count by _time
| delta count AS diff
| eval prev=diff-count, perc=count/prev*100
| table _time count perc

Ciao.
Giuseppe

0 Karma

jrceja313
Engager

I would recommend looking into autoregress.

You could also look into streamstats or eventstats
This may be helpful.
https://answers.splunk.com/answers/310189/is-it-possible-to-autoregress-by-unique-site.html

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...