Splunk Search

Finding the busiest hour of the day with timespan and ignore hours with zero events

MHS
Explorer

I use the following query against a Cisco as5400 to find the number of calls per hour during a day.

10.200.90.19 Called Number Voice-Interface | timechart span=1h count(Number) | sort - count(Number)

I want to run this query over multiple days and compare the hours over multiple days to tell me the busy hour. I also want to ignore any hours that return a count of zero.

Tags (1)
0 Karma
2 Solutions

dskillman
Splunk Employee
Splunk Employee

Would this work?

10.200.90.19 Called Number Voice-Interface | timechart span=1h count(Number) as num_count | where num_count > 0 | sort - num_count 

View solution in original post

Dan
Splunk Employee
Splunk Employee

date_hour is a default field. You could do:

... earliest=-7d | stats count by date_hour

This is something that you probably don't want to do ad-hoc. I recommend summary indexing: http://docs.splunk.com/Documentation/Splunk/5.0/Knowledge/Usesummaryindexing

View solution in original post

Dan
Splunk Employee
Splunk Employee

date_hour is a default field. You could do:

... earliest=-7d | stats count by date_hour

This is something that you probably don't want to do ad-hoc. I recommend summary indexing: http://docs.splunk.com/Documentation/Splunk/5.0/Knowledge/Usesummaryindexing

MHS
Explorer

OK, that did exactly what I wanted. Thanks for the link for summary indexing as well.

0 Karma

dskillman
Splunk Employee
Splunk Employee

Would this work?

10.200.90.19 Called Number Voice-Interface | timechart span=1h count(Number) as num_count | where num_count > 0 | sort - num_count 

MHS
Explorer

That got rid of the 0 count events....NICE

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...