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!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...