2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

Includes more kvm-processes

This commit is contained in:
Jan Egil Vestbø 2017-09-30 17:42:37 +02:00
parent 6cc95f20e9
commit 621744a6f0
4 changed files with 4 additions and 4 deletions

View File

@ -75,7 +75,7 @@ def list_pids():
''' Find the pid of kvm processes
@return a list of pids from running kvm
'''
pid = Popen("pidof qemu-system-x86_64", shell=True, stdout=PIPE)
pid = Popen("pidof qemu-kvm qemu-system-x86_64 kvm", shell=True, stdout=PIPE)
return pid.communicate()[0].split()
def fetch(vms):

View File

@ -92,7 +92,7 @@ def list_pids():
''' Find the pid of kvm processes
@return a list of pids from running kvm
'''
pid = Popen("pidof qemu-system-x86_64", shell=True, stdout=PIPE)
pid = Popen("pidof qemu-kvm qemu-system-x86_64 kvm", shell=True, stdout=PIPE)
return pid.communicate()[0].split()
if __name__ == "__main__":

View File

@ -89,7 +89,7 @@ def list_pids():
''' Find the pid of kvm processes
@return a list of pids from running kvm
'''
pid = Popen("pidof qemu-system-x86_64", shell=True, stdout=PIPE)
pid = Popen("pidof qemu-kvm qemu-system-x86_64 kvm", shell=True, stdout=PIPE)
return pid.communicate()[0].split()
if __name__ == "__main__":

View File

@ -100,7 +100,7 @@ def list_pids():
''' Find the pid of kvm processes
@return a list of pids from running kvm
'''
pid = Popen("pidof qemu-system-x86_64", shell=True, stdout=PIPE)
pid = Popen("pidof qemu-kvm qemu-system-x86_64 kvm", shell=True, stdout=PIPE)
return pid.communicate()[0].split()
def find_vms_tap():