- Fix a typo in MemoryAllocatedToVirtualServers metric
(https://bugzilla.redhat.com/show_bug.cgi?id=532070#c7)
- %{_sysconfdir}/sysconfig/vhostmd: Use libvirt default URI
(https://bugzilla.redhat.com/show_bug.cgi?id=537828)
- %{_sysconfdir}/init.d/vhostmd: If using libvirt's default URI, then pass
the root URI to vhostmd (the default URI changes in some circumstances
when vhostmd switches to the non-root user).
155 lines
5.3 KiB
XML
155 lines
5.3 KiB
XML
<?xml version="1.0" ?>
|
|
<!DOCTYPE vhostmd SYSTEM "vhostmd.dtd">
|
|
|
|
<!--
|
|
|
|
Configuration file for virtual host metrics daemon (vhostmd).
|
|
|
|
A better, less noisy, more minimal configuration file
|
|
which doesn't depend on Xen.
|
|
|
|
Supported metric types are: int32, uint32, int64, uint64, real32,
|
|
real64, and string.
|
|
|
|
A metric's value is set to the output produced by executing its action.
|
|
|
|
'action' can include the special token NAME, in which case the name of
|
|
the vm currently under inspection is substituted for NAME. Only useful
|
|
within the vm element.
|
|
|
|
-->
|
|
|
|
<vhostmd>
|
|
<globals>
|
|
<disk>
|
|
<name>host-metrics-disk</name>
|
|
<path>/dev/shm/vhostmd0</path>
|
|
<!-- must be between [128 KB, 256 MB] in size -->
|
|
<size unit="k">256</size>
|
|
</disk>
|
|
<update_period>60</update_period>
|
|
<path>/bin:/sbin:/usr/bin:/usr/sbin:/usr/share/vhostmd/scripts</path>
|
|
<transport>vbd</transport>
|
|
<!-- <transport>xenstore</transport> -->
|
|
</globals>
|
|
<metrics>
|
|
<metric type="string" context="host">
|
|
<name>HostName</name>
|
|
<action>hostname</action>
|
|
</metric>
|
|
<metric type="uint64" context="host">
|
|
<name>Time</name>
|
|
<action>date +%s</action>
|
|
</metric>
|
|
<metric type="string" context="host">
|
|
<name>VirtualizationVendor</name>
|
|
<action>rpm -qi libvirt| grep Vendor: |awk '{print substr($0, index($0,$5)) }'</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="string" context="host">
|
|
<name>VirtProductInfo</name>
|
|
<action>virsh -r CONNECT version | grep API | gawk -F': ' '{print $2}'</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="string" context="host">
|
|
<name>HostSystemInfo</name>
|
|
<action>hostname -s</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint32" context="host">
|
|
<name>NumberOfPhysicalCPUsUtilized</name>
|
|
<action>virsh -r CONNECT nodeinfo | grep 'CPU(s):' | gawk -F': +' '{print $2}'</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint64" context="host">
|
|
<name>MemoryAllocatedToVirtualServers</name>
|
|
<action>virsh -r CONNECT nodeinfo | grep 'Memory size:' | gawk -F' +' '{ printf "%d\n", $3/1024 }'</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint64" context="host">
|
|
<name>FreePhysicalMemory</name>
|
|
<action>
|
|
free|egrep -i '^[[:space:]]*(Mem:)' \
|
|
|awk 'BEGIN { sum = 0; }
|
|
{ sum += $4; }
|
|
END { printf "%10d\n", sum/1024; }'
|
|
</action>
|
|
</metric>
|
|
<metric type="uint64" context="host">
|
|
<name>UsedPhysicalMemory</name>
|
|
<action>
|
|
free|egrep -i '^[[:space:]]*(Mem:)' \
|
|
|awk 'BEGIN { sum = 0; }
|
|
{ sum += $3; }
|
|
END { printf "%10d\n", sum/1024; }'
|
|
</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint64" context="host">
|
|
<name>FreeVirtualMemory</name>
|
|
<action>
|
|
free|egrep -i '^[[:space:]]*(Mem:|Swap:)' \
|
|
|awk 'BEGIN { sum = 0; }
|
|
{ sum += $4; }
|
|
END { printf "%10d\n", sum/1024; }'
|
|
</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint64" context="host">
|
|
<name>UsedVirtualMemory</name>
|
|
<action>
|
|
free|egrep -i '^[[:space:]]*(Mem:|Swap:)' \
|
|
|awk 'BEGIN { sum = 0; }
|
|
{ sum += $3; }
|
|
END { printf "%10d\n", sum/1024; }'
|
|
</action>
|
|
</metric>
|
|
<metric type="uint64" context="host">
|
|
<name>PagedInMemory</name>
|
|
<action>echo "$((`vmstat -s | gawk '/pages paged in/ {print $1}'` / 1024))"</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint64" context="host">
|
|
<!-- TODO: CHECK -->
|
|
<name>PagedOutMemory</name>
|
|
<action>echo "$((`vmstat -s | gawk '/pages paged out/ {print $1}'` / 1024))"</action>
|
|
</metric>
|
|
<metric type="group" context="host">
|
|
<name>PageRates</name>
|
|
<action>pagerate.pl</action>
|
|
<!-- SAP "CIM" -->
|
|
<variable name="PageInRate" type="uint64"/>
|
|
<variable name="PageFaultRate" type="uint64"/>
|
|
</metric>
|
|
<!--<metric type="real64" context="host">
|
|
<name>TotalCPUTime</name>
|
|
<action>virsh -r CONNECT dominfo 0 | sed 's/: */:/' | \
|
|
gawk -F: '/CPU time/ {print $2;}'</action>
|
|
</metric>-->
|
|
<!-- SAP "CIM" -->
|
|
<metric type="real64" context="vm">
|
|
<name>TotalCPUTime</name>
|
|
<action>virsh -r CONNECT dominfo NAME | sed 's/: */:/' | \
|
|
gawk -F: '/CPU time/ {print $2;}'</action>
|
|
</metric>
|
|
<metric type="uint32" context="vm">
|
|
<name>NumberOfAssignedPhysicalCPUs</name>
|
|
<action>virsh -r CONNECT dominfo NAME | grep 'CPU(s):' | gawk -F': +' '{print $2}'</action>
|
|
</metric>
|
|
<!-- SAP "CIM" -->
|
|
<metric type="uint64" context="vm">
|
|
<name>PhysicalMemoryAllocatedToVirtualSystem</name>
|
|
<action>virsh -r CONNECT dominfo NAME | grep 'Max memory:' | gawk -F' +' '{printf "%d\n", $3/1024}'</action>
|
|
</metric>
|
|
<!-- will only be supported by Fedora -->
|
|
<!-- <metric type="uint64" context="vm">
|
|
<name>UsedMem</name>
|
|
<action>virsh -r CONNECT dominfo NAME | grep 'Used memory:' | gawk -F' +' '{printf "%d\n", $3/1024}'</action>
|
|
</metric> -->
|
|
</metrics>
|
|
</vhostmd>
|
|
<!--
|
|
vi:ts=2:sw=2:expandtab:ignorecase:
|
|
-->
|
|
<!-- EOF -->
|