<?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 / chart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130816#M35672</link>
    <description>&lt;P&gt;Note, by default Windows Performance Monitor events suppress zero values, giving you inaccurate averages in many cases.&lt;BR /&gt;
If that's an issue you can force zeroes to be reported through the input.conf stanzas by setting &lt;CODE&gt;showZeroValue=1&lt;/CODE&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Apr 2014 16:49:51 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2014-04-14T16:49:51Z</dc:date>
    <item>
      <title>timechart / chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130812#M35668</link>
      <description>&lt;P&gt;I know I've done this before, and I've completely forgotten, and I didn't see anything in the documentation on how to chart a value over time of a field. Im' having a complete brain fart. &lt;/P&gt;

&lt;P&gt;I am attempeint to chart the value of a field over time (in this case perfmon values)&lt;/P&gt;

&lt;P&gt;this is my search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=Perfmon* object=Processor counter="% Processor Time" | timechart Value by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can someone please refresh my memory on how to do this? &lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 15:49:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130812#M35668</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-04-14T15:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: timechart / chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130813#M35669</link>
      <description>&lt;P&gt;How about "|timechart first(Value) as Value by host"? You can use min or max as well, as long as you keep the span of timechart same as the frequency of events.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 16:36:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130813#M35669</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-04-14T16:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: timechart / chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130814#M35670</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;
you are doing it right&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=Perfmon* object=Processor counter="% Processor Time" instance=_Total| timechart avg(Value) span=1m by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 16:41:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130814#M35670</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2014-04-14T16:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: timechart / chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130815#M35671</link>
      <description>&lt;P&gt;What if I just wanted to chart the values, and not the averages?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 16:47:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130815#M35671</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-04-14T16:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: timechart / chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130816#M35672</link>
      <description>&lt;P&gt;Note, by default Windows Performance Monitor events suppress zero values, giving you inaccurate averages in many cases.&lt;BR /&gt;
If that's an issue you can force zeroes to be reported through the input.conf stanzas by setting &lt;CODE&gt;showZeroValue=1&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 16:49:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130816#M35672</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-04-14T16:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: timechart / chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130817#M35673</link>
      <description>&lt;P&gt;The interval you are collecting data that you can mention as span then it will give you the original value.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;|timechart avg(Value) span=1m by host useother=f&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;OR&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;|timechart per_minute(Value) by host  useother=f&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;OR &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;|timechart Values(Value) span=Monitored_Interval by host  useother=f&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2014 16:52:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-chart/m-p/130817#M35673</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2014-04-14T16:52:35Z</dc:date>
    </item>
  </channel>
</rss>

