<?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: makecontinuous  not working for first/initial time span in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560456#M159277</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; Thanks for the reply!&lt;/P&gt;&lt;P&gt;Can you please help with the complete query here, considering day1 and day7 and also days in between, as same problem may happen for other days as well.&lt;/P&gt;&lt;P&gt;Appreciate your help&lt;/P&gt;</description>
    <pubDate>Thu, 22 Jul 2021 10:06:39 GMT</pubDate>
    <dc:creator>VS0909</dc:creator>
    <dc:date>2021-07-22T10:06:39Z</dc:date>
    <item>
      <title>makecontinuous  not working for first/initial time span</title>
      <link>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560445#M159273</link>
      <description>&lt;P&gt;If I run the below query for last 7 days, and if there is no data in logs matching condition index=abc "searchTerm" for day1, then the results are showing for day2 to day7.&lt;/P&gt;&lt;P&gt;But I want a row in resultset for day1 as well, if no data then with TotalResults as 0 for day1.&lt;/P&gt;&lt;P&gt;index=abc "searchTerm"&amp;nbsp; | bucket _time span=1d | stats count as TotalResults by _time | makecontinuous _time | fillnull TotalResults&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 08:21:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560445#M159273</guid>
      <dc:creator>VS0909</dc:creator>
      <dc:date>2021-07-22T08:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: makecontinuous  not working for first/initial time span</title>
      <link>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560451#M159276</link>
      <description>&lt;P&gt;makecontinuous works between the lowest value in the field and the highest value in the field - you will need to add (append) a dummy entry for day 1 with TotalResults value of 0. I would then sum the TotalResults by _time (in case there was already a result for day 1, then do the makecontinous etc.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 09:51:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560451#M159276</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-07-22T09:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: makecontinuous  not working for first/initial time span</title>
      <link>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560456#M159277</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; Thanks for the reply!&lt;/P&gt;&lt;P&gt;Can you please help with the complete query here, considering day1 and day7 and also days in between, as same problem may happen for other days as well.&lt;/P&gt;&lt;P&gt;Appreciate your help&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 10:06:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560456#M159277</guid>
      <dc:creator>VS0909</dc:creator>
      <dc:date>2021-07-22T10:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: makecontinuous  not working for first/initial time span</title>
      <link>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560460#M159278</link>
      <description>&lt;P&gt;&lt;A href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168" target="_blank"&gt;@ITWhisperer&lt;/A&gt;&amp;nbsp; Thanks for the reply!&lt;/P&gt;&lt;P&gt;Can you please help with the complete query here, considering day1 and day7 and also days in between, as same problem may happen for other days as well.&lt;/P&gt;&lt;P&gt;Appreciate your help&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 11:07:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560460#M159278</guid>
      <dc:creator>VS0909</dc:creator>
      <dc:date>2021-07-22T11:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: makecontinuous  not working for first/initial time span</title>
      <link>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560470#M159282</link>
      <description>&lt;LI-CODE lang="markup"&gt;| append 
    [| makeresults
    | addinfo
    | rename info_min_time as _time
    | bin _time span=1d
    | fields - info_*]
| sort _time
| makecontinuous _time span=1d
| fillnull value=0 TotalResults
| stats sum(TotalResults) as TotalResults by _time&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 22 Jul 2021 13:25:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/makecontinuous-not-working-for-first-initial-time-span/m-p/560470#M159282</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-07-22T13:25:58Z</dc:date>
    </item>
  </channel>
</rss>

