Splunk Search

How do you visualize 'zero' value in an area?

hyeongn
Engager

Hello, I'm a Korean beginner, Splunker

index=my sourcetype=my2 sernder_ip=my3

| table _time | stats count by _time | sort - _time


Here, even if the data is zero, I want to visualize the graph 

 

help me plz

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

gcusello
SplunkTrust
SplunkTrust

Hi @hyeongn,

I asked to Splunk designers (using "Splunk Ideas") to add a feature to display zero instead of "no results" in panels and this idea is in evaluation, if you think that it could be a good idea, vote for it!

Anyway, in the meantime, you could use something like this:

index=my sourcetype=my2 sernder_ip=my3
| stats count by _time 
| append [ | makeresults | eval count=0 ]
| stats sum(count) AS count by _time  
| sort - _time

Ciao.

Giuseppe

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

An area chart will show zero if it is in the data - I suspect your issue is that if there are no events for a particular time, your don't have a zero count for that time. This is because you have used stats. Try timechart instead

index=my sourcetype=my2 sernder_ip=my3

| timechart count
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @hyeongn,

I asked to Splunk designers (using "Splunk Ideas") to add a feature to display zero instead of "no results" in panels and this idea is in evaluation, if you think that it could be a good idea, vote for it!

Anyway, in the meantime, you could use something like this:

index=my sourcetype=my2 sernder_ip=my3
| stats count by _time 
| append [ | makeresults | eval count=0 ]
| stats sum(count) AS count by _time  
| sort - _time

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Upcoming Webinar: Unmasking Insider Threats with Slunk Enterprise Security’s UEBA

Join us on Wed, Dec 10. at 10AM PST / 1PM EST for a live webinar and demo with Splunk experts! Discover how ...

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...