Splunk Search

timecharting max of sum

robgreen
Path Finder

I generate a log file with one line per server with the time of the run as the splunk date.. something like

2013-05-30 12:04 UTC host=billybob activesessions=5
2013-05-30 12:04 UTC host=thelmalou activesessions=3
2013-05-30 12:05 UTC host=billybob activesessions=18
2013-05-30 12:05 UTC host=thelmalou activesessions=6

This repeats every 5 seconds. I would like a timechart of how many sessions i had for the entire system. right now i do something like

index=sessioncount | timechart span="5s" sum(activesessions) AS "Concurrent Sessions" 

this only works for about 40 minutes before i start losing data. i would like to generate this for hours if not days.

The key problem is that for every 5 seconds i need sum the values, then for every span find the max of the sum. IE i want the max number of concurrent sessions, not the total number of sessions in that span. so in the above example i sum the first 5 second window to 8, then the second which is 24, then in the chart for that hour (assuming span is 1h) use 24 for that data point.

All records for that run are imported at the exact time together as the key.

thanks

Tags (2)
0 Karma

bmacias84
Champion

You may want to use a saved search with a real time search or even summary indexing. I think you should be using Time modifers in your searches.


index=sessioncount earliest=@d latest=now | timechart span="5s" sum(activesessions) AS "Concurrent Sessions"

Additional Reading:

Hope this helps or gets you started. Dont forget to vote and accept answers that help.

Cheers,

0 Karma

bmacias84
Champion

Thats a perfect case for using summary indexing to roll ur data into a more manageable size. Using a seach to gather your sumarried data, then using a sub search for more current. Alternatively you can edit your limits.conf, but doing so has performance implications. Look at the iis web log app in splunk basr for examples.

0 Karma

robgreen
Path Finder

thanks, but i think the problem is the number of data points that timechart can handle, not the data range. ie "span=5s" i want summed, but then for whatever span timechart is in i need the "max"

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...