VMware Cloud Community
sxnxr
Commander
Commander

Metric Config for EPO Agent

I am looking for a more accurate way of reporting on memory usage with in a vm so I deployed the EPO agent to a test vcenter and I am able to get an accurate reading of the active memory within the VM. I was then looking to add this to a dashboard so a user can search a vm (object list), select the VM and that will show the CPU and Memory utilization in a metric graph. To do this I normally create a Metric config file. I already have several for the VMware adapter but this is the first time u have tried to use the EPO adapter. I have tried several versions of the below and I cant get it to work. I get an internal error coming up. I think it might be a problem with the ResourceKind resourceKindKey but not sure

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<AdapterKinds>

   <AdapterKind adapterKindKey="EP Ops Adapter">

      <ResourceKind resourceKindKey="Windows">

         <Metric attrkey="UTILIZATION|UsedMemory" />

      </ResourceKind>

   </AdapterKind>

0 Kudos
1 Reply
vishalchand
Enthusiast
Enthusiast

Try something like this but its for scoreboard


<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<AdapterKinds>

    <AdapterKind adapterKindKey="EP Ops Adapter">

   <ResourceKind resourceKindKey="MSSQL">

   <Metric attrkey="UTILIZATION|%ProcessorTime" label="% Processor Time" unit="%"/>

   </ResourceKind>  

   </AdapterKind>

</AdapterKinds>

0 Kudos