Splunk Search

Show a result even if no events match

siddharthmis
Explorer

I am trying to get the result even if no results matches.

fillnull works fine with-

search sourcetype="test" Status < 0  | stats sparkline(count) as spark1, count as "Error Count"  | fillnull

but not with-

search sourcetype="test" Status < 0  | stats sparkline(count) as spark1, count as "Error Count" by sourcetype | fillnull

Is there any way second query be fixed?

Thanks

Tags (1)
0 Karma

cmerriman
Super Champion

Is there data showing up at all with the second one? Can you show some sample data?

try this:

search sourcetype="test" Status < 0  | stats sparkline(count) as spark1, count as "Error Count" by sourcetype| appendpipe [ stats count | eval "Error Count"="0"  | where count==0 |table "Error Count"]

siddharthmis
Explorer

Thanks for the query, unfortunately it does gives the expected result-

search sourcetype="test" Status < 0  | stats sparkline(count) as spark1, count as "Error Count" by sourcetype| appendpipe [ stats count | eval "Error Count"="0"  | where count==0 |table "Error Count"]

It gives me-

sourcetype  spark1  Error Count
                            0

Result should be like-

sourcetype  spark1  Error Count
test                    0
0 Karma

somesoni2
Revered Legend

Just add | eval sourcetype ="test" at the end of the subsearch.

sourcetype="test" Status < 0  | stats sparkline(count) as spark1, count as "Error Count" by sourcetype| appendpipe [ stats count | eval "Error Count"="0"  | where count==0 |table "Error Count" | eval sourcetype ="test"]

siddharthmis
Explorer

Works like a charm.

Thanks

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...