<?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: VMware App &amp; CPU Ready in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27480#M900</link>
    <description>&lt;P&gt;So in the raw data of the splunk for vmware app the collection period is 20s. If you want to see the data as a percentage you can just change a search to provide you that data. &lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=vmware source=VirtualMachinePerf SumRdy_ms=* | eval SumRdy_pct=SumRdy_ms/20000 | stats avg(SumRdy_pct) as AvgRdy_pct first(moname) as name by meid
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 30 Jan 2013 23:38:17 GMT</pubDate>
    <dc:creator>tfletcher_splun</dc:creator>
    <dc:date>2013-01-30T23:38:17Z</dc:date>
    <item>
      <title>VMware App &amp; CPU Ready</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27479#M899</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;In the VMware app it reports CPU ready for a vCPU as a summation, but honestly I can't think of why anybody would want that stat as a summation.  Is there a way to pull the CPU ready times as a percentage?  

Also, I'd like to request that the next version of the app have CPU ready displayed as a percentage.  Using CPU ready is a very important metric to use when doing capacity estimation, in my opinion it's more useful than using utilization by MHZ (that's how the current app appears to be functioning).
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Aug 2012 12:40:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27479#M899</guid>
      <dc:creator>chrislymanWMT1</dc:creator>
      <dc:date>2012-08-07T12:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: VMware App &amp; CPU Ready</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27480#M900</link>
      <description>&lt;P&gt;So in the raw data of the splunk for vmware app the collection period is 20s. If you want to see the data as a percentage you can just change a search to provide you that data. &lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=vmware source=VirtualMachinePerf SumRdy_ms=* | eval SumRdy_pct=SumRdy_ms/20000 | stats avg(SumRdy_pct) as AvgRdy_pct first(moname) as name by meid
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jan 2013 23:38:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27480#M900</guid>
      <dc:creator>tfletcher_splun</dc:creator>
      <dc:date>2013-01-30T23:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: VMware App &amp; CPU Ready</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27481#M901</link>
      <description>&lt;P&gt;The trouble here is with VMware and not Splunk. VMware stores the ready time as a summation across all vCPUs in each VM.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2013 17:28:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27481#M901</guid>
      <dc:creator>colinj</dc:creator>
      <dc:date>2013-06-20T17:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: VMware App &amp; CPU Ready</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27482#M902</link>
      <description>&lt;P&gt;CPU ready time was just about the hardest thing for me to get my head around when I started working with vSphere and I'm still not always sure that I get it completely. The hardest part in understanding ready time is remembering that it is a summation of the ready times for all the vCPUs the VM has. However, when VMware talks about when you should worry they talk about ready times on a per vCPU basis. This means that you have to factor in how many vCPUs a machine has.&lt;/P&gt;

&lt;P&gt;VMware says that 1000ms/vCPU should be the warning point and 2000ms/vCPU should be the critical point. Since CPU ready times are collected over a 20 second period (20000ms) these work out to 5% and 10% respectively. The search below is what I use to look at CPU ready times. For any given VM it will look up the VM in the inventory that Splunk generates so that it can divide the SumRdy_ms by the number of CPUs (numCpu). From that I can then get the max values and the average values for my normalized Sum Ready Time.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=vmware source="VirtualMachinePerf" SumRdy_ms="*" perftype="cpu" moname="vmname"
| lookup TimeHierarchyVMSummary moname
| eval SumRdyPerCpu_ms=(SumRdy_ms / numCpu) 
| timechart max(SumRdy_ms) AS "Sum Ready Time" 
max(SumRdyPerCpu_ms) AS "Max Normalized Ready Time" 
avg(SumRdyPerCpu_ms) AS "Average Normalized Ready Time"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Jul 2013 15:17:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/VMware-App-CPU-Ready/m-p/27482#M902</guid>
      <dc:creator>colinj</dc:creator>
      <dc:date>2013-07-03T15:17:07Z</dc:date>
    </item>
  </channel>
</rss>

