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!

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...