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.
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...