<?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: timechart does not dis play the error in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42621#M9964</link>
    <description>&lt;P&gt;Well what is the output of the saved search?&lt;/P&gt;</description>
    <pubDate>Thu, 22 Nov 2012 09:48:15 GMT</pubDate>
    <dc:creator>Ayn</dc:creator>
    <dc:date>2012-11-22T09:48:15Z</dc:date>
    <item>
      <title>timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42618#M9961</link>
      <description>&lt;P&gt;hi all ,&lt;/P&gt;

&lt;P&gt;I used the below query ..but i am not getting the timechart its shows &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;field '_time' should have numerical values&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;| savedsearch "searchduration" | join TaskBP [ | savedsearch "searchavgduration" ]|eval &lt;BR /&gt;
Difference=duration-Avgduration|where (Difference&amp;gt;-90 AND Difference&amp;lt;90)| table _time TaskBP Difference | timechart count(Difference) by TaskBP&lt;/P&gt;

&lt;P&gt;i have used the tonumber and auto function ..still i am getting error &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Poornima &lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 07:34:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42618#M9961</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-11-22T07:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42619#M9962</link>
      <description>&lt;P&gt;What's the idea of having the &lt;CODE&gt;table&lt;/CODE&gt; command there?! That's what's causing your error. &lt;CODE&gt;table&lt;/CODE&gt; will implicitly convert the &lt;CODE&gt;_time&lt;/CODE&gt; value to something humanly readable, which is incompatible with what &lt;CODE&gt;timechart&lt;/CODE&gt; expects.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 09:28:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42619#M9962</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-11-22T09:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42620#M9963</link>
      <description>&lt;P&gt;hi ayn,&lt;/P&gt;

&lt;P&gt;i tried without using the table command also but again it shows the same error as above&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 09:46:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42620#M9963</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-11-22T09:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42621#M9964</link>
      <description>&lt;P&gt;Well what is the output of the saved search?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 09:48:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42621#M9964</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-11-22T09:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42622#M9965</link>
      <description>&lt;P&gt;savedsearch -searchduration has the query &lt;/P&gt;

&lt;P&gt;source="taskmanager_log.txt"|transaction TaskBP startswith=START endswith=Succeeded&lt;/P&gt;

&lt;P&gt;savedsearch -searchavgduration has the query&lt;/P&gt;

&lt;P&gt;source="task.txt"| transaction TaskBP startswith=START endswith=Succeeded|stats avg(duration) as Avgduration by TaskBP&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 09:58:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42622#M9965</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-11-22T09:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42623#M9966</link>
      <description>&lt;P&gt;There you go - your &lt;CODE&gt;stats&lt;/CODE&gt; at the end of the second saved search will remove the &lt;CODE&gt;_time&lt;/CODE&gt; field altogether.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 10:00:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42623#M9966</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-11-22T10:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: timechart does not dis play the error</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42624#M9967</link>
      <description>&lt;P&gt;Splunkpoornima, please please please stop reposting questions, let it flow and grow within the one question! &lt;A href="http://splunk-base.splunk.com/answers/66695/timechart-errror"&gt;http://splunk-base.splunk.com/answers/66695/timechart-errror&lt;/A&gt;  It just confuses things if others search for answers in the future and people trying to help won't know what you've already been told! &lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 11:50:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-does-not-dis-play-the-error/m-p/42624#M9967</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2012-11-22T11:50:40Z</dc:date>
    </item>
  </channel>
</rss>

