Splunk Search

Help with streamstats by for cumulative totals

Mike_Mulcock
Engager

Looking to create a dashboard showing cumulative totals of events for the past hour, broken down into 1 minuet periods, for each specific event. The below search shows the events per hour, but no cumulative totals:

<search query>| dedup ip, Event| timechart count as total span=1m by Event

This works fine and I am able to produce the line graph, 1 line per event, show the count of occurrences per period.

To make this cumulative, I have tried using the following:

<search query>| dedup ip, Event| timechart count as total span=1m by Event | streamstats sum(total) by Event

This returns the same graph as the first query. If I remove the "By Event" from the timechart string, I get a graph with a single line (labelled total), plotting the sum of all of the events for each time period, still no cumulative totals..

I'm sure the issue lies in the way I'm using streamstats, so any pointers would be much appreciated 🙂

0 Karma
1 Solution

nabeel652
Builder

This search will give you a cumulative sum over time time. This search can help you changing the fields according to your's.

index=_internal sourcetype!=splunkd earliest="-15m" latest=now | timechart span=1m count by sourcetype | untable _time sourcetype count | streamstats sum(count) as count by sourcetype | xyseries _time sourcetype count

View solution in original post

nabeel652
Builder

This search will give you a cumulative sum over time time. This search can help you changing the fields according to your's.

index=_internal sourcetype!=splunkd earliest="-15m" latest=now | timechart span=1m count by sourcetype | untable _time sourcetype count | streamstats sum(count) as count by sourcetype | xyseries _time sourcetype count

Mike_Mulcock
Engager

Perfect thanks!

0 Karma
Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...