All Apps and Add-ons

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

SplunkExplorer
Communicator

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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...