Splunk Search

How to extract dates where no-traffic?

jp_duraimurugan
Engager

Hi All,

I want to extract the dates for last 1 month where there is no-traffic in my application using splunk query.

Please anyone help on this.

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

richgalloway
SplunkTrust
SplunkTrust

Splunk searches for data that is there and can't find something that isn't there.  You can, however, use the timechart command to count events at intervals.  The command will automatically fill in a zero for each interval without an event.

 

<<your search for traffic>>
| timechart span=1d count
| where count=0

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

woodcock
Esteemed Legend

... | timechart count span=1mon ..., | fillnull value=0 count | where count==0

0 Karma

somesoni2
Revered Legend

Try something like this. Replace base search in line 1 with your search that fetches your application traffic.

| tstats count WHERE index=_internal sourcetype=splunkd by _time span=1d 
| append 
    [| makeresults 
    | addinfo 
    | eval days=mvrange(relative_time(info_min_time,"@d"),relative_time(info_max_time,"@d")+1,86400) 
    | mvexpand days 
    | eval _time=round(days) 
    | eval count=0 
    | table _time count ] 
| stats max(count) as count by _time

richgalloway
SplunkTrust
SplunkTrust

Splunk searches for data that is there and can't find something that isn't there.  You can, however, use the timechart command to count events at intervals.  The command will automatically fill in a zero for each interval without an event.

 

<<your search for traffic>>
| timechart span=1d count
| where count=0

 

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...