Deployment Architecture

range() function

m_nouman
New Member

I want to search for an Account_Name that has the maximum number of login attempts within a span of 10 minutes with range() function.....

 

I don't know how can i provide the parameters to this function....

some help will be appreciated!

Labels (1)
0 Karma

VatsalJagani
SplunkTrust
SplunkTrust

@m_nouman - You need to use time_window for streamstats command, as suggested by @PickleRick 

For timechart and bin command use span=10m

 

I hope this helps!!!

0 Karma

PickleRick
SplunkTrust
SplunkTrust

And how did you come up with the range() stats function? This function is for something completely different - it tells you what's the difference between lowest and highest value in your result set whereas you want to count things. The range() function is completely unsuited for this.

You should be doing count by Account_Name. In order to make it over sliding window, you need to use streamstats with a proper time window.

<your_initial_search>
| streamstats time_window=10m count by Account_Name

This will give you counts of logins over 10 minute windows. From this you'll be able to pick the one with the highest count. For example with

| sort - count | head 

 

0 Karma

OzRL5
New Member

from hackthebox academy it's one of their questions and the hint is to use the range() function

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

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...