Dashboards & Visualizations

fillnull is notworking

abdul
Explorer

Citry contains 12 names. in result i am able to see only city name with product
if product is zero it is not showing the Citry name


base search |stats count(product) AS Total BY City |fillnull value=0 City

CitryTotal
citry11
citry550
citry1015


expectation 

CitryTotal
citry11
citry20
citry30
citry40
citry550
citry60
citry70
citry80
citry90
citry1015
citry110
citry120
Labels (1)
Tags (1)
0 Karma

somesoni2
Revered Legend

The fillnull works for populating columns with missing data when the row exists. Your query will only list Cities for which it finds data. To get data for allCities, you'll need to provide the whole list to Splunk so that even the missing ones show up with 0 count.

Step 1: Build a list of allCities in a lookup table. Say All_Cities.csv. This can be a static CSV or dynamically generated, based on your data.

Step 2: Append data from this lookup to your search and re-build stats. Like this

base search |stats count(product) AS Total BY City
| append [| inputlookup All_Cities.csv | table City | eval Total=0]
| stats max(Total) as Totak by City

 

ITWhisperer
SplunkTrust
SplunkTrust

fillnull works, the issue is that you don't have any events returned by the stats for all the cities you were expecting - splunk doesn't usually make stuff up unless you tell it to!

0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...