<?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 How to chart raw Windows perfmon values over time? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118486#M31622</link>
    <description>&lt;P&gt;I'm attempting to chart some raw windows perfmon values on a chart over time, and I can't seem to find a way. I've been surfing here for a bit, but I haven't seen anything, so i figured I would ask. &lt;/P&gt;

&lt;P&gt;This is the search that I used:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=perfmon* collection=Process instance=splunkd counter="% Processor Time" | timechart avg(Value) by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The thing is i'm not looking for an 'average' of the values, i'm just looking to chart the raw values over time. I don't need an avg / sum / max / min function, just how to plot the raw data.&lt;BR /&gt;
I've attempted this as well:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=perfmon* collection=Process instance=splunkd counter="% Processor Time" | timechart Value by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but splunk says "Error in 'timechart' command: The specifier 'Value' is invalid. It must be in form (). For example: max(size)." &lt;/P&gt;

&lt;P&gt;Is there a way to do this without the function? &lt;/P&gt;</description>
    <pubDate>Fri, 23 Jan 2015 22:03:12 GMT</pubDate>
    <dc:creator>tmarlette</dc:creator>
    <dc:date>2015-01-23T22:03:12Z</dc:date>
    <item>
      <title>How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118486#M31622</link>
      <description>&lt;P&gt;I'm attempting to chart some raw windows perfmon values on a chart over time, and I can't seem to find a way. I've been surfing here for a bit, but I haven't seen anything, so i figured I would ask. &lt;/P&gt;

&lt;P&gt;This is the search that I used:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=perfmon* collection=Process instance=splunkd counter="% Processor Time" | timechart avg(Value) by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The thing is i'm not looking for an 'average' of the values, i'm just looking to chart the raw values over time. I don't need an avg / sum / max / min function, just how to plot the raw data.&lt;BR /&gt;
I've attempted this as well:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=perfmon* collection=Process instance=splunkd counter="% Processor Time" | timechart Value by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but splunk says "Error in 'timechart' command: The specifier 'Value' is invalid. It must be in form (). For example: max(size)." &lt;/P&gt;

&lt;P&gt;Is there a way to do this without the function? &lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 22:03:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118486#M31622</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2015-01-23T22:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118487#M31623</link>
      <description>&lt;P&gt;Just try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=perfmon* collection=Process instance=splunkd counter="% Processor Time" | table _time host Value
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;There is a limit on no of points that can be displayed on the chart.&lt;/P&gt;

&lt;P&gt;Also, try this&lt;/P&gt;

&lt;P&gt;sourcetype=perfmon* collection=Process instance=splunkd counter="% Processor Time" | table _time host Value | xyseries _time host Value&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 22:22:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118487#M31623</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-01-23T22:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118488#M31624</link>
      <description>&lt;P&gt;You have to specify an aggregator or function with timechart.&lt;/P&gt;

&lt;P&gt;Give xyseries that should do what you need.&lt;/P&gt;

&lt;P&gt;look &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/Xyseries"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/Xyseries&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 23:05:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118488#M31624</guid>
      <dc:creator>thomrs</dc:creator>
      <dc:date>2015-01-23T23:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118489#M31625</link>
      <description>&lt;P&gt;Charting the values as they are using plain &lt;CODE&gt;xyseries&lt;/CODE&gt; is a bit troublesome because you will not get a linear x-axis. If there's a gap in your data that gap will be invisible, if there's times with higher sampling frequency those times will be stretched.&lt;/P&gt;

&lt;P&gt;If you're unhappy with &lt;CODE&gt;| timechart avg(Value) by host&lt;/CODE&gt; because it flattens your data too much, consider increasing the number of data points like this: &lt;CODE&gt;| timechart bins=500 avg(Value) by host&lt;/CODE&gt;&lt;BR /&gt;
If you're unhappy with the average consider &lt;CODE&gt;median(Value)&lt;/CODE&gt; or &lt;CODE&gt;max(Value)&lt;/CODE&gt; or &lt;CODE&gt;p95(Value)&lt;/CODE&gt; depending on your needs.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jan 2015 02:16:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118489#M31625</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-01-25T02:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118490#M31626</link>
      <description>&lt;P&gt;xyseries did the trick, but ill keep using a bunch of bins in mind in order to limit the flattening of the data. &lt;/P&gt;

&lt;P&gt;Thanks guys! &lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2015 17:37:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118490#M31626</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2015-01-26T17:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118491#M31627</link>
      <description>&lt;P&gt;Hi @tmartlette&lt;/P&gt;

&lt;P&gt;Glad you got a lot of input from other users to find your solution. Don't forget to accept one of the answers to resolve this post!&lt;/P&gt;

&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 05:35:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118491#M31627</guid>
      <dc:creator>ppablo</dc:creator>
      <dc:date>2015-01-27T05:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118492#M31628</link>
      <description>&lt;P&gt;I would, but for some reason it won't let me at the moment. &lt;EM&gt;shrugs&lt;/EM&gt;. This is the correct answer that I'm commenting on, though others have some good things to watch for as well. &lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 15:31:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118492#M31628</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2015-01-27T15:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to chart raw Windows perfmon values over time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118493#M31629</link>
      <description>&lt;P&gt;This also works (add host values as needed):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; sourcetype="Perfmon:CPU Load" | bucket _time span=1m | stats avg(Value) by _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And will plot an average line as well.&lt;/P&gt;

&lt;P&gt;Source: &lt;A href="http://gosplunk.com/average-cpu-usage/"&gt;http://gosplunk.com/average-cpu-usage/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2015 18:43:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-chart-raw-Windows-perfmon-values-over-time/m-p/118493#M31629</guid>
      <dc:creator>hagjos43</dc:creator>
      <dc:date>2015-01-28T18:43:57Z</dc:date>
    </item>
  </channel>
</rss>

