<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How can I find events having NULL value related to a field? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418609#M120353</link>
    <description>&lt;P&gt;Please confirm whether &lt;CODE&gt;parent_incident&lt;/CODE&gt; contains null values by removing &lt;CODE&gt;strftime(_time,"%B %Y")="February 2019"&lt;/CODE&gt; in your search&lt;/P&gt;

&lt;P&gt;Also, try&lt;/P&gt;

&lt;P&gt;index=main sourcetype=snow:incident endpoint="&lt;A href="https://server.service-now.com/" target="_blank"&gt;https://server.service-now.com/&lt;/A&gt;"&lt;BR /&gt;
| where strftime(_time,"%B %Y")="February 2019" AND parent_incident=""&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 23:28:04 GMT</pubDate>
    <dc:creator>vnravikumar</dc:creator>
    <dc:date>2020-09-29T23:28:04Z</dc:date>
    <item>
      <title>How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418601#M120345</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am trying to find all the events related to a field where value is NULL.&lt;/P&gt;

&lt;P&gt;For E.g., say a field has multiple values like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;abc
def
mno
         -- This is NULL value
xyz
           -- This is NULL value
pqr.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am trying to search via the below query, but that's not working.&lt;BR /&gt;
Here parent_incident is field name, which contains multiple values including NULL, and I need data related to NULL values only.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main sourcetype=snow:incident endpoint="https://server.service-now.com/" NOT parent_incident=*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any help would be appreciable.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 08:58:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418601#M120345</guid>
      <dc:creator>sbhatnagar88</dc:creator>
      <dc:date>2019-03-01T08:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418602#M120346</link>
      <description>&lt;P&gt;Hi @sbhatnagar88&lt;/P&gt;

&lt;P&gt;Try like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main sourcetype=snow:incident endpoint="https://server.service-now.com/" | where isnull(parent_incident) 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2019 09:04:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418602#M120346</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-03-01T09:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418603#M120347</link>
      <description>&lt;P&gt;Hi @ vnravikumar,&lt;/P&gt;

&lt;P&gt;i already have where condition to filter out the month so I am putting your response like this but it doesn't seems to be working.&lt;/P&gt;

&lt;P&gt;index=main sourcetype=snow:incident endpoint="&lt;A href="https://server.service-now.com/" target="_blank"&gt;https://server.service-now.com/&lt;/A&gt;"&lt;BR /&gt;
| where strftime(_time,"%B %Y")="February 2019" AND isnull(parent_incident)&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:31:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418603#M120347</guid>
      <dc:creator>sbhatnagar88</dc:creator>
      <dc:date>2020-09-29T23:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418604#M120348</link>
      <description>&lt;P&gt;What is the response you are getting?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 09:30:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418604#M120348</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-03-01T09:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418605#M120349</link>
      <description>&lt;P&gt;It has to work&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval test= null(),test1="sample" 
| where strftime(_time,"%B %Y")="March 2019" AND isnull(test)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2019 09:32:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418605#M120349</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-03-01T09:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418606#M120350</link>
      <description>&lt;P&gt;no data coming up with this condition ...&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 09:47:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418606#M120350</guid>
      <dc:creator>sbhatnagar88</dc:creator>
      <dc:date>2019-03-01T09:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418607#M120351</link>
      <description>&lt;P&gt;Please confirm whether you have data for February month and time range what you had selected&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 09:50:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418607#M120351</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-03-01T09:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418608#M120352</link>
      <description>&lt;P&gt;yes, we have because when I remove  isnull(parent_incident) condition, it shows me data and parent_incident has NULL value as well..&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:32:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418608#M120352</guid>
      <dc:creator>sbhatnagar88</dc:creator>
      <dc:date>2020-09-29T23:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418609#M120353</link>
      <description>&lt;P&gt;Please confirm whether &lt;CODE&gt;parent_incident&lt;/CODE&gt; contains null values by removing &lt;CODE&gt;strftime(_time,"%B %Y")="February 2019"&lt;/CODE&gt; in your search&lt;/P&gt;

&lt;P&gt;Also, try&lt;/P&gt;

&lt;P&gt;index=main sourcetype=snow:incident endpoint="&lt;A href="https://server.service-now.com/" target="_blank"&gt;https://server.service-now.com/&lt;/A&gt;"&lt;BR /&gt;
| where strftime(_time,"%B %Y")="February 2019" AND parent_incident=""&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:28:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418609#M120353</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2020-09-29T23:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418610#M120354</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
below one worked .. i tried all these yesterday but they didn't work for me because I gave space between double quotes. without spaces it showed me data related to NULL values&lt;/P&gt;

&lt;P&gt;index=main sourcetype=snow:incident endpoint="&lt;A href="https://server.service-now.com/" target="_blank"&gt;https://server.service-now.com/&lt;/A&gt;"&lt;BR /&gt;
| where strftime(_time,"%B %Y")="February 2019" AND parent_incident=""&lt;/P&gt;

&lt;P&gt;Thanks Much!!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:32:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418610#M120354</guid>
      <dc:creator>sbhatnagar88</dc:creator>
      <dc:date>2020-09-29T23:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find events having NULL value related to a field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418611#M120355</link>
      <description>&lt;P&gt;Good to hear. Please accept the answer.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 11:14:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-events-having-NULL-value-related-to-a-field/m-p/418611#M120355</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-03-01T11:14:44Z</dc:date>
    </item>
  </channel>
</rss>

