Splunk Search

How to edit my search to determine if a field has a null or blank value?

dan_pudwell
Explorer

I'm trying to determine whether a field has a value but my search isn't giving me expected results, I've tried this:

search ... | eval agentOrClient = if(detail.agentRefNo == "", "client", "agent") | table agentOrClient

This always returns agent even though the field is blank
I have also tried isnull and that gives the same result

Tags (5)
0 Karma
1 Solution

javiergn
Super Champion

To test for NULL or blank use the following instead:

search ... 
| eval agentOrClient = if('detail.agentRefNo' == "" OR isNull('detail.agentRefNo'), "client", "agent") 
| table agentOrClient

Also because of the dot in your field name it is a good practise to use single quotes when referring to the field name from within an eval statement.

View solution in original post

javiergn
Super Champion

To test for NULL or blank use the following instead:

search ... 
| eval agentOrClient = if('detail.agentRefNo' == "" OR isNull('detail.agentRefNo'), "client", "agent") 
| table agentOrClient

Also because of the dot in your field name it is a good practise to use single quotes when referring to the field name from within an eval statement.

dan_pudwell
Explorer

perfect, thanks!

0 Karma

javiergn
Super Champion

No worries. Please don't forget to mark this as answered if you like the response so that others can benefit from it in future.

0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...