<?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: Missing data after I increase the numeric data in my where clause in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409319#M118084</link>
    <description>&lt;P&gt;you could do something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;initial search
| stats avg(field1) AS avg by _time, field2 | where avg &amp;gt; 100 | xyseries _time field2 sum
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 27 Feb 2019 17:18:58 GMT</pubDate>
    <dc:creator>lakshman239</dc:creator>
    <dc:date>2019-02-27T17:18:58Z</dc:date>
    <item>
      <title>Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409312#M118077</link>
      <description>&lt;P&gt;Greetings&lt;/P&gt;

&lt;P&gt;I'm using the following query over 24hrs.&lt;/P&gt;

&lt;P&gt;| initial search&lt;BR /&gt;
| timechart useother=f span=1h avg(field1) by field2  where avg &amp;gt; 100&lt;BR /&gt;
| fields - NULL&lt;/P&gt;

&lt;P&gt;And I get results for that meet that criteria, but when I increase the numeric value from &amp;gt; 100 to &amp;gt; 400, I get zero results even though I should see at least one or two fields from "field2" populate.  Any thoughts on what is causing my dilemma? &lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 22:43:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409312#M118077</guid>
      <dc:creator>cquinney</dc:creator>
      <dc:date>2019-02-26T22:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409313#M118078</link>
      <description>&lt;P&gt;Pls change your search as below and re-test&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; initial search
| timechart useother=f span=1h avg(field1) AS avg by field2 where avg &amp;gt; 100
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Feb 2019 16:20:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409313#M118078</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-27T16:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409314#M118079</link>
      <description>&lt;P&gt;Thank you for the suggestion, but the data still disappears when I increase the numeric value to 200 even though there should be results.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 16:36:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409314#M118079</guid>
      <dc:creator>cquinney</dc:creator>
      <dc:date>2019-02-27T16:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409315#M118080</link>
      <description>&lt;P&gt;do you see avg more than 200 when you run &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  initial search
 | timechart useother=f span=1h avg(field1) AS avg by field2  | where avg &amp;gt; 100
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Feb 2019 16:41:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409315#M118080</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-27T16:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409316#M118081</link>
      <description>&lt;P&gt;No, nothing populates regardless of the numeric value when I pipe the where clause to its own line I'm afraid.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 16:45:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409316#M118081</guid>
      <dc:creator>cquinney</dc:creator>
      <dc:date>2019-02-27T16:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409317#M118082</link>
      <description>&lt;P&gt;Try-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | timechart limit=0 span=1h avg(field1) AS avg by field2  | where avg &amp;gt; 200
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Feb 2019 17:03:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409317#M118082</guid>
      <dc:creator>Vijeta</dc:creator>
      <dc:date>2019-02-27T17:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409318#M118083</link>
      <description>&lt;P&gt;Thank you for the suggestion but that doesn't seem to work either.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 17:09:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409318#M118083</guid>
      <dc:creator>cquinney</dc:creator>
      <dc:date>2019-02-27T17:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409319#M118084</link>
      <description>&lt;P&gt;you could do something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;initial search
| stats avg(field1) AS avg by _time, field2 | where avg &amp;gt; 100 | xyseries _time field2 sum
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Feb 2019 17:18:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409319#M118084</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-27T17:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409320#M118085</link>
      <description>&lt;P&gt;That will actually work for what I'm trying to accomplish, thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 17:24:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409320#M118085</guid>
      <dc:creator>cquinney</dc:creator>
      <dc:date>2019-02-27T17:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data after I increase the numeric data in my where clause</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409321#M118086</link>
      <description>&lt;P&gt;pls accept the answer to close tracking.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 17:28:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Missing-data-after-I-increase-the-numeric-data-in-my-where/m-p/409321#M118086</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-27T17:28:03Z</dc:date>
    </item>
  </channel>
</rss>

