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!

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 ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...