All Apps and Add-ons

How to compare peak for same time range in different days?

SplunkExplorer
Contributor

Hi Splunkers, in our environment we have seen that we have some event peaks every day between certain hours, which are 03:00 - 04:00 AM. 

Now, we have to identify which source are responsible for those peaks.
The search we must build has to perform this: tell us, for every day of a certain time period (for example, a week), at the same hour (03:00 - 04:00 AM), total count of events for every sources.

I know that, with this search:

 

index=* 
| chart count over index by sourcetype

 

I'm able to show a column chart that spawn me the total count of events for every indexes and, for them, I have a picture of involved sourcetypes. But how to tell to search "show me for every day this count in time range 03:00 - 04:00" AM?

Labels (1)
Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @SplunkExplorer,

if you want to analyze only peaks in a certain pèeriod (e.g. 3.00-4.00) you could run something like this:

index=* date_hour IN (3,4) earliest=-7d@d latest=@d
| timechart count by sourcetype

If you  want also index values, you have to use:

index=* date_hour IN (3,4) earliest=-7d@d latest=@d
| bin span=24h -time
| stats values(index) AS index count by _time sourcetype

Ciao.

Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @SplunkExplorer,

if you want to analyze only peaks in a certain pèeriod (e.g. 3.00-4.00) you could run something like this:

index=* date_hour IN (3,4) earliest=-7d@d latest=@d
| timechart count by sourcetype

If you  want also index values, you have to use:

index=* date_hour IN (3,4) earliest=-7d@d latest=@d
| bin span=24h -time
| stats values(index) AS index count by _time sourcetype

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...

From Alert to Resolution: How Splunk Observability Helps SREs Navigate Critical ...

It's 3:17 AM, and your phone buzzes with an urgent alert. Wire transfer processing times have spiked, and ...