<?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: Where do I put my fillnull value? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554214#M157329</link>
    <description>&lt;P&gt;Take a look at this old thread and&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/15147"&gt;@somesoni2&lt;/a&gt;'s solution&lt;A href="https://community.splunk.com/t5/Deployment-Architecture/How-to-produce-empty-time-buckets/m-p/172328/highlight/true#M6442" target="_blank"&gt;https://community.splunk.com/t5/Deployment-Architecture/How-to-produce-empty-time-buckets/m-p/172328/highlight/true#M6442&lt;/A&gt;. &amp;nbsp;The idea is to use a cheap subsearch to force missing buckets. &amp;nbsp;There is also a recent comment saying that the fillnull command is not needed if timechart is used, although I haven't tested that. (I can no longer find my old use case.)&lt;/P&gt;</description>
    <pubDate>Thu, 03 Jun 2021 07:46:52 GMT</pubDate>
    <dc:creator>yuanliu</dc:creator>
    <dc:date>2021-06-03T07:46:52Z</dc:date>
    <item>
      <title>Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/553988#M157265</link>
      <description>&lt;P&gt;This is my base search:&lt;/P&gt;&lt;P&gt;| datamodel Test summariesonly=true search&lt;BR /&gt;| search "TEST.date"=2021-05-23 | rename "TEST.date" as date&lt;BR /&gt;| bin _time span=1s&lt;BR /&gt;| eventstats count("TEST.exchangeId") by _time&lt;BR /&gt;| rename count(TEST.exchangeId) as avg_TPS&lt;BR /&gt;| stats avg(avg_TPS) as averageTps by date&lt;BR /&gt;| eval averageTps=round(averageTps,3)&lt;BR /&gt;| eval _time=$date$&lt;BR /&gt;| fields averageTps _time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where do I put my fillnull value for averageTps? With the multiple stats values, I'm unsure and everytime I've tried putting it in I get no results whereas I want the averageTps field to be 0&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 23:17:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/553988#M157265</guid>
      <dc:creator>ebs</dc:creator>
      <dc:date>2021-06-01T23:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/553995#M157267</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228215"&gt;@ebs&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some questions and observations:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In your example, date has a single value, 2021-05-23, so the 'by date' part of "&lt;SPAN&gt;| stats avg(avg_TPS) as averageTps by date" is redundant as there will be a single result&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;You are doing count("TEST.exchange_id") by _time&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;This will just return a count of events that contain that field&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;if you know that all events contain that field, the just count by _time is sufficient&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Try to use the rename part of a stats aggregation - it makes your SPL easier to read, e.g.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;| eventstats count("TEST.exchangeId") as avg_TPS by _time&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;so you can avoid having to do the subsequent rename&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;what is $date$ value - in Splunk, _time variable is an epoch time, not a formatted date string, so your $date$ token would have to be a numeric epoch&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;what is your expected results&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;as single value showing average TPS per second for a single day&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;if so, what null values are you trying to fill?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Are you trying to include seconds where there are 0 TPS, in which case you should use timechart instead&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| datamodel Test summariesonly=true search
| search "TEST.date"=2021-05-23
| rename "TEST.date" as date
| timechart span=1s count as TPS 
| stats avg(TPS) as averageTps 
| eval averageTps=round(averageTps,3)
| eval date=$date|s$
| fields averageTps date&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;Note also in your example, where you use eventstats followed by stats&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Using eventstats count will end up giving you the wrong result compared to stats count, e.g. if your eventstats count data is&lt;/P&gt;&lt;P&gt;_time, TPS&lt;BR /&gt;2021-05-23 08:00:00 5&lt;BR /&gt;2021-05-23 08:00:00 5&lt;BR /&gt;2021-05-23 08:00:00 5&lt;BR /&gt;2021-05-23 08:00:00 5&lt;BR /&gt;2021-05-23 08:00:00 5&lt;BR /&gt;2021-05-23 08:00:01 2&lt;BR /&gt;2021-05-23 08:00:01 2&lt;/P&gt;&lt;P&gt;then stats avg(TPS) will give you 29/7 =&amp;nbsp;4.143, whereas if you do stats count your data will be&lt;/P&gt;&lt;P&gt;2021-05-23 08:00:00 5&lt;BR /&gt;2021-05-23 08:00:01 2&lt;/P&gt;&lt;P&gt;and the&amp;nbsp;stats avg(TPS) will be 3.5&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 01:05:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/553995#M157267</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2021-06-02T01:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554163#M157320</link>
      <description>&lt;P&gt;Hi&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;&lt;P&gt;You've helped me improve my search, however I still don't know where to place my fillnull value in case there are no transaction which was my initial question.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 00:35:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554163#M157320</guid>
      <dc:creator>ebs</dc:creator>
      <dc:date>2021-06-03T00:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554167#M157321</link>
      <description>&lt;P&gt;Can't really answer your fillnull question without more information. What null values are present in your data you want to fill?&lt;/P&gt;&lt;P&gt;From your original search there are no null values.&lt;/P&gt;&lt;P&gt;If my comment about using timechart vs stats did not answer your question about what _might_ be null values, perhaps you can say.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 00:49:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554167#M157321</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2021-06-03T00:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554170#M157322</link>
      <description>&lt;P&gt;This specific line could result in a null value if there were no transactions today (unlikely but want it just in case)&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 01:47:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554170#M157322</guid>
      <dc:creator>ebs</dc:creator>
      <dc:date>2021-06-03T01:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554214#M157329</link>
      <description>&lt;P&gt;Take a look at this old thread and&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/15147"&gt;@somesoni2&lt;/a&gt;'s solution&lt;A href="https://community.splunk.com/t5/Deployment-Architecture/How-to-produce-empty-time-buckets/m-p/172328/highlight/true#M6442" target="_blank"&gt;https://community.splunk.com/t5/Deployment-Architecture/How-to-produce-empty-time-buckets/m-p/172328/highlight/true#M6442&lt;/A&gt;. &amp;nbsp;The idea is to use a cheap subsearch to force missing buckets. &amp;nbsp;There is also a recent comment saying that the fillnull command is not needed if timechart is used, although I haven't tested that. (I can no longer find my old use case.)&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 07:46:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554214#M157329</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2021-06-03T07:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554240#M157331</link>
      <description>&lt;P&gt;Just noticed that timechart seems to fill non-existent buckets with 0 for data like this:&lt;/P&gt;&lt;DIV class="shared-reportvisualizer"&gt;&lt;DIV class="viz-controller"&gt;&lt;DIV class="facets-container"&gt;&lt;DIV class="viz-panel  viz-facet-size-medium"&gt;&lt;DIV class="lazy-view-container lazy-results-table shared-resultstable-lazyresultstable"&gt;&lt;DIV class="shared-resultstabledrilldown results-table"&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;_time&lt;/TD&gt;&lt;TD&gt;exchangeId&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:27:01&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:28:03&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:28:04&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:28:05&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:28:08&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:29:18&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:29:19&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:29:31&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:31:09&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:31:09&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:31:21&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:31:46&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:31:52&lt;/TD&gt;&lt;TD width="59px"&gt;60130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:32:35&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:32:55&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:36:14&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:36:50&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:37:12&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:37:25&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="166.046875px"&gt;2016-08-30 05:37:41&lt;/TD&gt;&lt;TD width="59px"&gt;60302&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="main-section-body"&gt;&lt;DIV class="search"&gt;&lt;DIV class="search-results"&gt;&lt;DIV class="tab-content"&gt;&lt;DIV class="tab-pane search-results-statisticspane active"&gt;&lt;DIV class="shared-reportvisualizer"&gt;&lt;DIV class="viz-controller"&gt;&lt;DIV class="facets-container"&gt;&lt;DIV class="viz-panel  viz-facet-size-medium"&gt;&lt;DIV class="lazy-view-container lazy-results-table shared-resultstable-lazyresultstable"&gt;&lt;DIV class="shared-resultstabledrilldown results-table"&gt;&lt;P&gt;For illustration purposes, instead of calculating TPS, I'll calculate TPM. &amp;nbsp;Notice gaps between 05:29 and 05:31, then between 05:32 and 05:36.&lt;/P&gt;&lt;P&gt;To calculate TPM, simply do&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| timechart span=1m count(exchangeId) as TPM&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(If exchangeId is available in every event as the sample data presents, count alone should suffice.) Output for this is&lt;/P&gt;&lt;DIV class="shared-reportvisualizer"&gt;&lt;DIV class="viz-controller"&gt;&lt;DIV class="facets-container"&gt;&lt;DIV class="viz-panel  viz-facet-size-medium"&gt;&lt;DIV class="lazy-view-container lazy-results-table shared-resultstable-lazyresultstable"&gt;&lt;DIV class="shared-resultstabledrilldown results-table"&gt;&lt;TABLE width="245px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;_time&lt;/TD&gt;&lt;TD width="50.953125px"&gt;TPM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:27:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:28:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:29:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:30:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:31:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:32:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:33:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:34:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:35:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:36:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="193.0625px"&gt;2016-08-30 05:37:00&lt;/TD&gt;&lt;TD width="50.953125px"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;If this result is acceptable as TPM, your daily average can easily be calculated as&lt;/P&gt;&lt;PRE&gt;| timechart span=1m count(exchangeId) as TPM
| timechart span=1d sum(TPM) as average_TPM&lt;/PRE&gt;&lt;P&gt;You can calculate TPS, of course, by using span=1s in the first timechart.&lt;/P&gt;&lt;P&gt;(I no longer have the data that triggered the "gap" behavior observed in that old post. &amp;nbsp;It could also be that in later SPL, timechart now automatically fills blank buckets.)&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 03 Jun 2021 10:20:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554240#M157331</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2021-06-03T10:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554371#M157355</link>
      <description>&lt;P&gt;I have tried that append pipe and it kind of works, but it changes the original value when the value is not 0 for example one value before the appendpipe was 85, after it was 140. How do I fix this?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jun 2021 23:25:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554371#M157355</guid>
      <dc:creator>ebs</dc:creator>
      <dc:date>2021-06-03T23:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554385#M157360</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228215"&gt;@ebs&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I have tried that append pipe and it kind of works, but it changes the original value when the value is not 0 for example one value before the appendpipe was 85, after it was 140. How do I fix this?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Without knowing what code you tried, and the data used in test, it is rather difficult to cut hair over the telephone.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 04:00:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554385#M157360</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2021-06-04T04:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554613#M157419</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228215"&gt;@ebs&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so what was wrong with my original suggestion to use timechart - that will give you 0 values for a period that does not have data.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jun 2021 23:13:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554613#M157419</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2021-06-06T23:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where do I put my fillnull value?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554616#M157420</link>
      <description>&lt;P&gt;I had to revert to my original search because timechart was getting overwhelmed. All echange_ids are only 1 value each so it works for the TPS search&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jun 2021 23:38:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-do-I-put-my-fillnull-value/m-p/554616#M157420</guid>
      <dc:creator>ebs</dc:creator>
      <dc:date>2021-06-06T23:38:40Z</dc:date>
    </item>
  </channel>
</rss>

