Splunk Search

How to to take median of number of users logged in past 1 hour 

Rocky31
Path Finder

index=XXX sourcetype="XXX-log" opName="LoginUser"    earliest=-60m latest=now()   | bucket _time span=10m | timechart  count

Any help would be appriciated 🙂

0 Karma

elliotproebstel
Champion

Based on how you've written your test query above, I think you're saying you want to count the number of user login events per every ten minutes in the last hour and then find the median of those counts. If so:

index=XXX sourcetype="XXX-log" opName="LoginUser"    earliest=-60m latest=now()
| bin _time span=10m
| stats count by _time
| stats median(count) as median_count
0 Karma

Rocky31
Path Finder

Thanks much for the help 🙂

can you also guide me on how to take median of 2 weeks (current and last week ) of past 1 hr values on same day of the week.

index=XXX sourcetype="XXX-log" opName="LoginUser" earliest=-60m latest=now() | bin _time span=10m | stats count by _time | stats median(count) as median_count | appendcols [search index=XXX sourcetype="XXX-log" opName="LoginUser" earliest=-10140m latest=-10080m | bucket _time span=10m |timechart count as LastWeek

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...