<?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: changing perfmon.conf value in inputs.conf in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75112#M8847</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;If you want to show CPU Utilization avg and max you will need to gather gather stats using inputs.conf or perfmon.conf and create search to display information.&lt;/P&gt;

&lt;P&gt;Keep in mind inputs.conf and permfmon.conf are used to defined your sources and collection intervals.  The search language is where you preform statistics on your data.&lt;/P&gt;

&lt;P&gt;Below is just an example.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
#inputs.conf entry for Windows Permon counters for all Proccessor instances and counters&lt;BR /&gt;
[perfmon://Processor]&lt;BR /&gt;
counters =  *&lt;BR /&gt;
disabled = 0&lt;BR /&gt;
instances = *&lt;BR /&gt;
object = Processor&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
#search&lt;BR /&gt;
index=&lt;YOURPERFMONINDEX&gt; source="Perfmon:Processor" _Total |bucket _time span=30m | where like(counter,"% Processor Time")| stats mean(Value) as "%cpuMean", max(Value) as "%cpuMax", stdev(Value) as "%cpu95th" by host&lt;BR /&gt;
&lt;/YOURPERFMONINDEX&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;Hope this helps or gets you started. Cheers&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jan 2013 15:59:13 GMT</pubDate>
    <dc:creator>bmacias84</dc:creator>
    <dc:date>2013-01-02T15:59:13Z</dc:date>
    <item>
      <title>changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75109#M8844</link>
      <description>&lt;P&gt;I want to show the CPU util average and maximum via perfmon.conf file. Is that possible?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Dec 2012 13:34:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75109#M8844</guid>
      <dc:creator>Splunk_U</dc:creator>
      <dc:date>2012-12-31T13:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75110#M8845</link>
      <description>&lt;P&gt;Yep, have a look at;&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Data/Real-timeWindowsperformancemonitoring"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Data/Real-timeWindowsperformancemonitoring&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Remember that whatever counter you read in, you can then use the stats command to run statistical analysis of the results such as AVG, MAX or 95th&lt;/P&gt;</description>
      <pubDate>Mon, 31 Dec 2012 15:37:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75110#M8845</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2012-12-31T15:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75111#M8846</link>
      <description>&lt;P&gt;I have gone through it. But no where it written that how to add data for CPU usage. Can you please help me out!!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2013 15:25:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75111#M8846</guid>
      <dc:creator>Splunk_U</dc:creator>
      <dc:date>2013-01-02T15:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75112#M8847</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;If you want to show CPU Utilization avg and max you will need to gather gather stats using inputs.conf or perfmon.conf and create search to display information.&lt;/P&gt;

&lt;P&gt;Keep in mind inputs.conf and permfmon.conf are used to defined your sources and collection intervals.  The search language is where you preform statistics on your data.&lt;/P&gt;

&lt;P&gt;Below is just an example.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
#inputs.conf entry for Windows Permon counters for all Proccessor instances and counters&lt;BR /&gt;
[perfmon://Processor]&lt;BR /&gt;
counters =  *&lt;BR /&gt;
disabled = 0&lt;BR /&gt;
instances = *&lt;BR /&gt;
object = Processor&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
#search&lt;BR /&gt;
index=&lt;YOURPERFMONINDEX&gt; source="Perfmon:Processor" _Total |bucket _time span=30m | where like(counter,"% Processor Time")| stats mean(Value) as "%cpuMean", max(Value) as "%cpuMax", stdev(Value) as "%cpu95th" by host&lt;BR /&gt;
&lt;/YOURPERFMONINDEX&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;Hope this helps or gets you started. Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2013 15:59:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75112#M8847</guid>
      <dc:creator>bmacias84</dc:creator>
      <dc:date>2013-01-02T15:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75113#M8848</link>
      <description>&lt;P&gt;What should I do if I want to use another counter with "% Processor Time"...how to retrieve the Value for "% Processor Time"??&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2013 21:40:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75113#M8848</guid>
      <dc:creator>Splunk_U</dc:creator>
      <dc:date>2013-01-14T21:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75114#M8849</link>
      <description>&lt;P&gt;@Splunk_U,  I am sorry I don't think i understand your question.  Simply add another perfmon stanza and modify your search.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2013 22:47:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75114#M8849</guid>
      <dc:creator>bmacias84</dc:creator>
      <dc:date>2013-01-14T22:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75115#M8850</link>
      <description>&lt;P&gt;I meant to stay with oout adding another stanza ia it possible to retrieve the value of another counter for this particular source type?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2013 14:18:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75115#M8850</guid>
      <dc:creator>Splunk_U</dc:creator>
      <dc:date>2013-01-15T14:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75116#M8851</link>
      <description>&lt;P&gt;The answer is yes you can added multiple counters and instances per stanza; however, I believe you can only add one object per stanza (try playing with settings and the documentation is really excellent).  Though you should logiclly break out inputs in your inputs.conf.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2013 16:15:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75116#M8851</guid>
      <dc:creator>bmacias84</dc:creator>
      <dc:date>2013-01-15T16:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75117#M8852</link>
      <description>&lt;P&gt;What I want is megring two search query with out using JOIN. One query is retrieveing the average and peak CPU tilization. Another query is retrieveing average and peak read Req/ sec. As they are using different counters and objects I can not make them together in a single searcj query. Can you help me out???&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2013 20:58:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75117#M8852</guid>
      <dc:creator>Splunk_U</dc:creator>
      <dc:date>2013-01-15T20:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75118#M8853</link>
      <description>&lt;P&gt;Have you actually read any tutorials? What is wrong with a search like (the fieldnames are madeup, this is an illustration):&lt;BR /&gt;
counter=cpu OR counter=read | stats avg(load) avg(read) by host .... ?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2013 21:19:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75118#M8853</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2013-01-15T21:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: changing perfmon.conf value in inputs.conf</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75119#M8854</link>
      <description>&lt;P&gt;@Splunk_U,  I don't you done enough reading.  I recommend reading Exploring Splunk: SEARCH PROCESSING LANGUAGE (SPL)&lt;BR /&gt;
PRIMER AND COOKBOOK.  Here is a search that does exactly what you want.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
index=perfmon host=fozzie AND (sourcetype="Perfmon:LogicalDisk" OR sourcetype="Perfmon:Processor") AND _Total AND ("Disk Write Bytes/sec" OR "% Processor Time") | fields _time, host, instance, counter, Value | timechart span=1m avg(Value) by counter&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2013 22:07:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/changing-perfmon-conf-value-in-inputs-conf/m-p/75119#M8854</guid>
      <dc:creator>bmacias84</dc:creator>
      <dc:date>2013-01-15T22:07:11Z</dc:date>
    </item>
  </channel>
</rss>

