<?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 How to add counts for &amp;quot;missing&amp;quot; values in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669950#M229713</link>
    <description>&lt;P&gt;&lt;SPAN&gt;"Hey Splunk experts! I'm a Splunk newbie and working with data where running `stats count by status` gives me 'progress' and 'Not Started'. I'd like to include 'Wip progress' and 'Completed' in the results. When running `stats count by status`. Desired output is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- Not Started&lt;BR /&gt;- Progress&lt;BR /&gt;- Wip Progress&lt;BR /&gt;- Completed&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any tips or examples on how to modify my query to achieve this would be fantastic! Thanks&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Nov 2023 10:20:14 GMT</pubDate>
    <dc:creator>Muthu_Vinith</dc:creator>
    <dc:date>2023-11-28T10:20:14Z</dc:date>
    <item>
      <title>How to add counts for "missing" values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669950#M229713</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"Hey Splunk experts! I'm a Splunk newbie and working with data where running `stats count by status` gives me 'progress' and 'Not Started'. I'd like to include 'Wip progress' and 'Completed' in the results. When running `stats count by status`. Desired output is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- Not Started&lt;BR /&gt;- Progress&lt;BR /&gt;- Wip Progress&lt;BR /&gt;- Completed&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any tips or examples on how to modify my query to achieve this would be fantastic! Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 10:20:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669950#M229713</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T10:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669951#M229714</link>
      <description>&lt;P&gt;If you don't see those other statuses in the results, then they don't exist as values of status in the data, because&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;search...
| stats count by status&lt;/LI-CODE&gt;&lt;P&gt;will give you all values for status that are present in the data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 02:06:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669951#M229714</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-11-28T02:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669959#M229715</link>
      <description>&lt;P&gt;Okay, but how to add those extra fields that is my task. Is it possible to use eval command? If yes can you suggest me a query&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 04:02:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669959#M229715</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T04:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669975#M229719</link>
      <description>&lt;P&gt;Can you share an example of the data where you have each type of status - if status values are being extracted for&amp;nbsp;&lt;STRONG&gt;some&lt;/STRONG&gt; events, but not others, it would indicate your data is not in a standard format.&lt;/P&gt;&lt;P&gt;Where is your data coming from and perhaps you can share an anonymised version of it.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 07:45:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669975#M229719</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-11-28T07:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669986#M229724</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260613"&gt;@Muthu_Vinith&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;if you have only four statuses you can run something like this to be sure to have all the statuses even if there aren't values for someone of them:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;Your_search&amp;gt;
| stats count BY status
| append [ | makeresults | eval status="Not Started", count=0 | fields status count ]
| append [ | makeresults | eval status="Progress", count=0 | fields status count ]
| append [ | makeresults | eval status="Wip Progress", count=0 | fields status count ]
| append [ | makeresults | eval status="Completed", count=0 | fields status count ] 
| stats sum(count) AS total BY status&lt;/LI-CODE&gt;&lt;P&gt;If the statuses can be more, you can also use a lookup to list all of them.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 08:39:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669986#M229724</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-28T08:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669988#M229725</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:01:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669988#M229725</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T09:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669989#M229726</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/6367"&gt;@bowesmana&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:02:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669989#M229726</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T09:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669990#M229727</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260613"&gt;@Muthu_Vinith&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;let us know if we can help you more, or, please, accept one answer for the other people of Community.&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:06:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669990#M229727</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-28T09:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669992#M229729</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;I'm working on visualizing completion versus target date in Splunk, and I'm facing a challenge because there's no completion level specified in my data. I have the target date and actual date,in actual date there is no dates mentioned and I want to create a chart that shows the progress towards the target date.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;I've tried the following search query:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp;eval 'Target Date' = strptime('Target Date', "%m/%d/%y")&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;eval _time = 'Target Date' &lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;timechart span=1mon dc(sno) as Target&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Could please guide me on how to modify this query or suggest an alternative approach to visualize completion versus target date when completion data is absent?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/6367"&gt;@bowesmana&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:25:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669992#M229729</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T09:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669993#M229730</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260613"&gt;@Muthu_Vinith&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I suppose that the status=completed is an event with a timestamp, so you could take the earliest and latest timestamps in your events:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;your_search&amp;gt;
| stats 
   earliest(_time) As earliest 
   latest(_time) AS latest 
   count 
   BY status
| append [ 
   | makeresults | eval status="Not Started", count=0 | fields status count ]
| append [ 
   | makeresults | eval status="Progress", count=0 | fields status count ]
| append [ 
   | makeresults | eval status="Wip Progress", count=0 | fields status count ]
| append [ 
   | makeresults | eval status="Completed", count=0 | fields status count ] 
| stats 
   values(earliest) AS earliest 
   values(latest) AS latest 
   sum(count) AS total 
   BY status
| eval 
   status=if(total=0,"NA",status),
   earliest=strftime(earliest,"%m/%d%y"),
   latest=strftime(latest,"%m/%d%y") &lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:34:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669993#M229730</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-28T09:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669994#M229731</link>
      <description>&lt;P&gt;My target is 100. If anything is completed completed line graph should populate &amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:44:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669994#M229731</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T09:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669995#M229732</link>
      <description>&lt;P class=""&gt;&lt;SPAN class=""&gt;I actually tried this query also&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;| eval 'Target Date' = strptime('Target Date', "%m/%d/%y") &lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;| eval _time = 'Target Date' | timechart span=1mon dc(sno) as Target&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;leval "Actual&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Date"=strptime('Actual Date', "%m/%d/%y")&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;leval&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;_time='Actual Date'&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;| timechart span=1mon dc(sno) as Completed&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Istreamstats sum(Completed) as Completed]&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Istats values(*)as'* by _time&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 09:47:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/669995#M229732</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-28T09:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670097#M229756</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260613"&gt;@Muthu_Vinith&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;did you tested my approach?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 04:54:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670097#M229756</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-29T04:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670100#M229758</link>
      <description>&lt;P&gt;Yes&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 05:08:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670100#M229758</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-29T05:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670101#M229759</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260613"&gt;@Muthu_Vinith&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;so what's its issue or different requirement?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 05:11:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670101#M229759</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-29T05:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670108#M229762</link>
      <description>&lt;P&gt;My requirement is I need to show chart completed vs target my target value is 100 based on this I need to show what is the query for that&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 05:37:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670108#M229762</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-29T05:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670109#M229763</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/260613"&gt;@Muthu_Vinith&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;using my search, you have the count for each status, so you can sum thre three values using eval and calculate the percentage, this is a simplified version:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;your_search&amp;gt;
| stats 
   count(eval(status="Completed")) AS Completed_count
   count(eval(status!="Completed")) AS Not_Completed_count 
   BY status
| eval perc=(Completed_count/Not_Completed_count/*100&lt;/LI-CODE&gt;&lt;P&gt;without eventual missing statuses.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 05:51:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670109#M229763</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-29T05:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670165#M229778</link>
      <description>&lt;P&gt;Yeah I got it&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 12:28:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670165#M229778</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-29T12:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670175#M229780</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have a single values panel with a distinct count, and I've specified a function for drill down. When clicking on a value like '25,' the table is displaying all values instead of the exact ones. Any guidance on refining the drill down for precise results&amp;nbsp;&lt;/SPAN&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 12:49:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-add-counts-for-quot-missing-quot-values/m-p/670175#M229780</guid>
      <dc:creator>Muthu_Vinith</dc:creator>
      <dc:date>2023-11-29T12:49:10Z</dc:date>
    </item>
  </channel>
</rss>

