Splunk Search

Plot average time between events.

picktheneedle
Loves-to-Learn

Can someone help me with the query to plot average time between events matching a field having certain value e.g msg="xyz"? The span is every 10 minutes. For e.g if events occurs 6000 times in 10 minutes, then average time between events is 600/6000 = 0.1 sec. 

Thanks

 

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @picktheneedle,

you have to filter events in the main search and then count the results in each span, something like this:

index=your_index msg="xyz"
| timechart span=10m count
| eval "Average (sec)"=count/600

to adapt to your real situation.

Ciao.

Giuseppe

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!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...