我正在研究 openstack,我想监控虚拟机 cpu 的使用情况。为此,我想通过父(中央)openstack 实例找到他们的 PID。我用了
ps辅助| grep
我确实收到了输出。但是,我想确认这是否是正确的 PID。他们有什么办法可以检查吗?
或者他们是否有其他方法可以找到虚拟机的 PID?
更新。该命令不起作用。它给了我一个总是变化的PID。它不是恒定的。谢谢
我正在研究 openstack,我想监控虚拟机 cpu 的使用情况。为此,我想通过父(中央)openstack 实例找到他们的 PID。我用了
ps辅助| grep
我确实收到了输出。但是,我想确认这是否是正确的 PID。他们有什么办法可以检查吗?
或者他们是否有其他方法可以找到虚拟机的 PID?
更新。该命令不起作用。它给了我一个总是变化的PID。它不是恒定的。谢谢
好吧,libvirt 对此有一些接口。这里有一些 python 可以为你提取数据到数据结构中:
#!/usr/bin/env python
# Modules
import subprocess
import traceback
import commands
import signal
import time
import sys
import re
import os
import getopt
import pprint
try:
import libvirt
except:
print "no libvirt detected"
sys.exit(0)
from xml.dom.minidom import parseString
global instances
global virt_conn
global tick
global virt_exist
def virtstats():
global virt_exist
global virt_conn
global instances
cpu_stats = []
if virt_exist == True:
if virt_conn == None:
print 'Failed to open connection to the hypervisor'
virt_exist = False
if virt_exist == True:
virt_info = virt_conn.getInfo()
for x in range(0, virt_info[2]):
cpu_stats.append(virt_conn.getCPUStats(x,0))
virt_capabilities = virt_conn.getCapabilities()
domcpustats = 0
# domcpustats = virDomain::GetcpuSTATS()
totmem = 0
totvcpu = 0
totcount = 0
vcpu_stats = []
for id in virt_conn.listDomainsID():
dom = virt_conn.lookupByID(id)
totvcpu += dom.maxVcpus()
vcpu_stats.append(dom.vcpus())
totmem += dom.maxMemory()
totcount += 1
dom = parseString(virt_capabilities)
xmlTag = dom.getElementsByTagName('model')[0].toxml()
xmlData=xmlTag.replace('<model>','').replace('</model>','')
for info in virt_info:
print info
for stat in cpu_stats:
print "cpu %s" % stat
for vstat in vcpu_stats:
print "vcpu:\n"
pprint.pprint(vstat)
print "CPU ( %s ) Use - %s vCPUS ( %s logical processors )" % (xmlData, totvcpu, virt_info[2])
sys.exit(0)
def main():
try:
global virt_conn
global virt_exist
virt_conn = libvirt.openReadOnly(None)
virt_exist = True
except:
virt_exist = False
print "OK: not a compute node"
sys.exit(0)
virtstats()
if __name__ == "__main__":
main()
现在你从使用方面得到的是 cpu 时间。
vcpu 块基本上是这样的布局:
1st: vCPU number, starting from 0. 2nd: vCPU state. 0: offline 1: running 2: blocked on resource 3rd: CPU time used in nanoseconds 4th: real CPU number
一旦你意识到这就是 libvirt 中的内容,CPU 块就很明显了。
希望有帮助!
如果您的虚拟实例(域)具有显示输出集,则通过使用 libvirt、python、lxml 和 lsof,您可以恢复 pid。(VNC,香料,...)
这是代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from lxml import etree
import libvirt
from subprocess import check_output
def get_port_from_XML(xml_desc):
tree = etree.fromstring(xml_desc)
ports = tree.xpath('//graphics/@port')
if len(ports):
return ports[0]
return None
def get_pid_from_listen_port(port):
if port is None:
return ''
return check_output(['lsof', '-i:%s' % port, '-t']).replace('\n','')
conn = libvirt.openReadOnly('')
if conn is None:
print 'Failed to open connection to the hypervisor'
sys.exit(1)
for domain_id in conn.listDomainsID():
domain_instance = conn.lookupByID(domain_id)
name = domain_instance.name()
xml_desc = domain_instance.XMLDesc(0)
port = get_port_from_XML(xml_desc)
pid = get_pid_from_listen_port(port)
print '%s (port:%s) (pid:%s)' % (name, port, pid)
grep "79d87652-8c8e-4afa-8c13-32fbcbf98e76" --include=libvirt.xml /path/to/nova/instances -r -A 2 | grep "<name" | cut -d " " -f 3
允许找到可以映射到“-name”参数的 ps aux 输出的“instance-”。所以你可以将openstack实例id映射到pid。
最简单的方法是使用 cgroups:
在 Ubuntu 中:
cat /sys/fs/cgroup/cpuset/libvirt/qemu/<machine-name>/tasks