-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgetNumberOf.py
80 lines (65 loc) · 2.55 KB
/
getNumberOf.py
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
#!/usr/bin/python
#
# Copyright (C) 2011
#
# Douglas Schilling Landgraf <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2 of the License.
#
# This program 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 General Public License for more details.
import urllib2
import base64
import sys
from xml.etree import ElementTree
# Example
ADDR = "192.168.123.176"
API_PORT = "8443"
USER = "[email protected]" # Must provide @DOMAIN
PASSWD = "T0pSecreT!"
def getNumber(apiName):
if apiName == "datacenters":
searchStr = "data_center" + "/name"
elif apiName == "storagedomains":
searchStr = "storage_domains" + "/name"
else:
# [:-1] - remove the last caracter in the string - in this case 's'
# We use this approach to re-use the string of URL into the XML search (see below)
searchStr = apiName[:-1] + "/name"
# Setting URL
URL = "https://" + ADDR + ":" + API_PORT + "/api/" + apiName
request = urllib2.Request(URL)
print "Connecting to: " + URL
base64string = base64.encodestring('%s:%s' % (USER, PASSWD)).strip()
request.add_header("Authorization", "Basic %s" % base64string)
try:
xmldata = urllib2.urlopen(request).read()
except urllib2.URLError, e:
print "Error: cannot connect to REST API: %s" % (e)
print "Try to login using the same user/pass by the Admin Portal and check the error!"
sys.exit(2)
tree = ElementTree.XML(xmldata)
#print searchStr
list = tree.findall(searchStr)
#print len(list)
counter = 0
for item in list:
counter += 1
return counter
if __name__ == "__main__":
print "Number of datacenters %s\n" % (getNumber("datacenters"))
print "Number of hosts %s\n" % (getNumber("hosts"))
print "Number of clusters %s\n" % (getNumber("clusters"))
print "Number of storagedomains %s\n" % (getNumber("storagedomains"))
print "Number of templates %s\n" % (getNumber("templates"))
print "Number of roles %s\n" % (getNumber("roles"))
print "Number of networks %s\n" % (getNumber("networks"))
print "Number of tags %s\n" % (getNumber("tags"))
print "Number of groups %s\n" % (getNumber("groups"))
#print "Number of users %s\n" % (getNumber("users"))
#print "Number of vmpools %s\n" % (getNumber("vmpools"))
print "Number of vms %s\n" % (getNumber("vms"))