Splunk Search

How to make empty fields display as Null

mihall
Path Finder

I am trying to display results that simply report if a certain field contains information or not.

My search is as follows:
Account_Name=da_* "Certificate Issuer Name" | stats count by user Certificate_Issuer_Name | eval Certificate_Issuer_Name=if(Certificate_Issuer_Name=null, "False", "True")

I think I am searching for this correctly, but it only outputs the values that are true. I think the issue might be that the null values are not registered as "Null" in Splunk. It does not show up when I look for how many values that field has, but I see events that have blank space where that info should be.

Is there any way to get these empty results to display in the report? Or is this an issue with how the data is registering in Splunk?

0 Karma
1 Solution

cmerriman
Super Champion

try this:

Account_Name=da_* "Certificate Issuer Name"| eval Certificate_Issuer_Name=if(isnull(Certificate_Issuer_Name), "False", "True") | stats count by user Certificate_Issuer_Name

View solution in original post

cmerriman
Super Champion

try this:

Account_Name=da_* "Certificate Issuer Name"| eval Certificate_Issuer_Name=if(isnull(Certificate_Issuer_Name), "False", "True") | stats count by user Certificate_Issuer_Name
Get Updates on the Splunk Community!

Say goodbye to manually analyzing phishing and malware threats with Splunk Attack ...

In today’s evolving threat landscape, we understand you’re constantly bombarded with phishing and malware ...

AppDynamics is now part of Splunk Ideas

Hello Splunkers, We have exciting news for you! AppDynamics has been added to the Splunk Ideas Portal. Which ...

Advanced Splunk Data Management Strategies

Join us on Wednesday, May 14, 2025, at 11 AM PDT / 2 PM EDT for an exclusive Tech Talk that delves into ...