Splunk Search

How to chart maximum simultaneous (per second) events over larger time ranges

zkelemen
Explorer

My data source resolution is seconds, so I can sonsider "simultaneous" events that are logged with the same second timestamp. Thus each second I would have a number of events.

I want to generate a chart, where each bar would represent the biggest number of events that were logged during one second over the period represented by the bar. Not a sum, not an average and not an average over time. Ex: if each bar represents 4 seconds, and one bar has a count of 100 events with the following per-second event counts: (4,36,60,0), the bar should be 60 high.

I would be looking for something I could describe like

 ... | timechart max(per_second(count))

but that does not work at all (even if I put count in a variable).

... | timechart span=1s count

Sort of works for small timespans, but would fail for spans that need to scale and will hit result limits for larger timespans.

0 Karma
1 Solution

zkelemen
Explorer

Here's what I have found to work for me, maybe it helps others as well:

... | stats count as eps by _time | timechart max(eps) 

This will output what I've expected, largest number of events per second (and remember, my data source resolution is one second) so this unfortunately may not scale to other applications such as per minute or per hour or if your source's resolution is higher than one second.

View solution in original post

zkelemen
Explorer

Here's what I have found to work for me, maybe it helps others as well:

... | stats count as eps by _time | timechart max(eps) 

This will output what I've expected, largest number of events per second (and remember, my data source resolution is one second) so this unfortunately may not scale to other applications such as per minute or per hour or if your source's resolution is higher than one second.

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

A Four-Part Event Series: Full Stack Observability For the AI Era

As AI reshapes applications, infrastructure, and the way teams operate, the traditional boundaries of ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...