1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
#!/usr/bin/env python
# Copyright (C) 2009-2010:
# Gabes Jean, naparuba@gmail.com
# Gerhard Lausser, Gerhard.Lausser@consol.de
# Gregory Starck, g.starck@gmail.com
# Hartmut Goebel <h.goebel@goebel-consult.de>
#
# This file is part of Shinken.
#
# Shinken is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Shinken is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Shinken. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import shlex
import shutil
import optparse
from subprocess import Popen, PIPE
# Try to load json (2.5 and higer) or simplejson if failed (python2.4)
try:
import json
except ImportError:
# For old Python version, load
# simple json (it can be hard json?! It's 2 functions guy!)
try:
import simplejson as json
except ImportError:
sys.exit("Error: you need the json or simplejson module for this script")
VERSION = '0.1'
# Split and clean the rules from a string to a list
def _split_rules(rules):
return [r.strip() for r in rules.split('|')]
# Apply all rules on the objects names
def _apply_rules(name, rules):
if 'nofqdn' in rules:
name = name.split('.', 1)[0]
if 'lower' in rules:
name = name.lower()
return name
# Get all vmware hosts from a VCenter and return the list
def get_vmware_hosts(check_esx_path, vcenter, user, password):
list_host_cmd = [check_esx_path, '-D', vcenter, '-u', user, '-p', password,
'-l', 'runtime', '-s', 'listhost']
output = Popen(list_host_cmd, stdout=PIPE).communicate()
parts = output[0].split(':')
if len(parts) == 1 or not '|' in parts[1]:
print "ERROR : there was an error with the esx3.pl command. Plase fix it : '%s'" % " ".join(parts)
sys.exit(2)
hsts_raw = parts[1].split('|')[0]
hsts_raw_lst = hsts_raw.split(',')
hosts = []
for hst_raw in hsts_raw_lst:
hst_raw = hst_raw.strip()
# look as server4.mydomain(UP)
elts = hst_raw.split('(')
hst = elts[0]
hosts.append(hst)
return hosts
# For a specific host, ask all VM on it to the VCenter
def get_vm_of_host(check_esx_path, vcenter, host, user, password):
print "Listing host", host
list_vm_cmd = [check_esx_path, '-D', vcenter, '-H', host,
'-u', user, '-p', password,
'-l', 'runtime', '-s', 'list']
output = Popen(list_vm_cmd, stdout=PIPE).communicate()
parts = output[0].split(':')
# Maybe we got a 'CRITICAL - There are no VMs.' message,
# if so, we bypass this host
if len(parts) < 2:
return None
vms_raw = parts[1].split('|')[0]
vms_raw_lst = vms_raw.split(',')
lst = []
for vm_raw in vms_raw_lst:
vm_raw = vm_raw.strip()
# look as MYVM(UP)
elts = vm_raw.split('(')
vm = elts[0]
lst.append(vm)
return lst
# Create all tuples of the links for the hosts
def create_all_links(res, rules):
r = []
for host in res:
for vm in res[host]:
# First we apply rules on the names
host_name = _apply_rules(host, rules)
vm_name = _apply_rules(vm, rules)
v = (('host', host_name), ('host', vm_name))
r.append(v)
return r
def write_output(elements, path, rules):
try:
f = open(path + '.tmp', 'wb')
for e in elements:
e = e.strip()
e = _apply_rules(e, rules)
f.write('%s\n' % e)
f.close()
shutil.move(path + '.tmp', path)
print "File %s wrote" % path
except IOError, exp:
sys.exit("Error writing the file %s: %s" % (path, exp))
def main(check_esx_path, vcenter, user, password, output, rules, vm_only, esx_only):
rules = _split_rules(rules)
res = {}
hosts = get_vmware_hosts(check_esx_path, vcenter, user, password)
if esx_only:
write_output(hosts, output, rules)
print "Created %d hosts" % len(hosts)
sys.exit(0)
vms = []
for host in hosts:
lst = get_vm_of_host(check_esx_path, vcenter, host, user, password)
if lst:
vms.extend(lst)
write_output(vms, output, rules)
print "Created %d hosts" % len(vms)
print "Finished!"
# Here we go!
if __name__ == "__main__":
# Manage the options
parser = optparse.OptionParser(
version="Shinken VMware links dumping script version %s" % VERSION)
parser.add_option("-o", "--output",
help="Path of the generated mapping file.")
parser.add_option("-x", "--esx3-path", dest='check_esx_path',
default='/usr/local/nagios/libexec/check_esx3.pl',
help="Full path of the check_esx3.pl script (default: %default)")
parser.add_option("-V", "--vcenter", '--Vcenter',
help="tThe IP/DNS address of your Vcenter host.")
parser.add_option("-u", "--user",
help="User name to connect to this Vcenter")
parser.add_option("-p", "--password",
help="The password of this user")
parser.add_option('-r', '--rules', default='',
help="Rules of name transformation. Valid names are: "
"`lower`: to lower names, "
"`nofqdn`: keep only the first name (server.mydomain.com -> server)."
"You can use several rules like `lower|nofqdn`")
parser.add_option('--esx', default='', dest='esx_only', action='store_true',
help="Dump only the ESX hosts")
parser.add_option('--vm', default='', dest='vm_only', action='store_true',
help="Dump only the VM hosts")
opts, args = parser.parse_args()
if args:
parser.error("does not take any positional arguments")
if not opts.vm_only and not opts.esx_only:
parser.error("missing --esx or --vm option. Please choose one")
if opts.vcenter is None:
parser.error("missing -V or --Vcenter option for the vcenter IP/DNS address")
if opts.user is None:
parser.error("missing -u or --user option for the vcenter username")
if opts.password is None:
error = True
parser.error("missing -p or --password option for the vcenter password")
if not os.path.exists(opts.check_esx_path):
parser.error("the path %s for the check_esx3.pl script is wrong, missing file" % opts.check_esx_path)
if opts.output is None:
parser.error("missing -o or --output option for the output mapping file")
main(**opts.__dict__)
|