-
Notifications
You must be signed in to change notification settings - Fork 29
/
listHAWorkers.py
executable file
·181 lines (163 loc) · 5.05 KB
/
listHAWorkers.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
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
#!/usr/bin/python
# Copyright 2015, Schuberg Philis BV
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# Script to list all VMs in a given cluster
# Remi Bergsma - [email protected]
import time
import sys
import getopt
from cloudstackops import cloudstacksql
import os.path
from random import choice
from prettytable import PrettyTable
# Function to handle our arguments
def handleArguments(argv):
global DEBUG
DEBUG = 0
global DRYRUN
DRYRUN = 0
global mysqlHost
mysqlHost = ''
global mysqlPasswd
mysqlPasswd = ''
global hypervisorName
hypervisorName = ''
global plainDisplay
plainDisplay = 0
global onlyNonRunning
onlyNonRunning = 0
global vmnameFilter
vmnameFilter = ""
# Usage message
help = "Usage: ./" + os.path.basename(__file__) + ' [options] ' + \
'\n --mysqlserver -s <mysql hostname>\tSpecify MySQL server to ' \
'read HA worker table from' + \
'\n --mysqlpassword <passwd>\t\tSpecify password to cloud ' + \
'MySQL user' + \
'\n --hostname -n <hostname>\t\tLimit search to this hypervisor ' + \
'hostname' + \
'\n --name-filter <name>\t\t\tFilter on this VM name' + \
'\n --non-running\t\t\t\tOnly show HA entries of VMs that ' + \
'have non-running current state' + \
'\n --plain-display\t\t\tEnable plain display, no pretty tables' + \
'\n --debug\t\t\t\tEnable debug mode' + \
'\n --exec\t\t\t\tExecute for real (not needed for list* scripts)'
try:
opts, args = getopt.getopt(argv, "hs:n:", [
"mysqlserver=",
"mysqlpassword=",
"hostname=",
"name-filter=",
"non-running",
"plain-display",
"debug",
"exec"
])
except getopt.GetoptError as e:
print "Error: " + str(e)
print help
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print help
sys.exit()
elif opt in ("-s", "--mysqlserver"):
mysqlHost = arg
elif opt in ("-p", "--mysqlpassword"):
mysqlPasswd = arg
elif opt in ("-n", "--hostname"):
hypervisorName = arg
elif opt in ("--name-filter"):
vmnameFilter = arg
elif opt in ("--plain-display"):
plainDisplay = 1
elif opt in ("--non-running"):
onlyNonRunning = 1
elif opt in ("--debug"):
DEBUG = 1
elif opt in ("--exec"):
DRYRUN = 0
# We need at least these vars
if len(mysqlHost) == 0:
print help
sys.exit()
# Parse arguments
if __name__ == "__main__":
handleArguments(sys.argv[1:])
# Init our class
s = cloudstacksql.CloudStackSQL(DEBUG, DRYRUN)
if DEBUG == 1:
print "Warning: Debug mode is enabled!"
if DRYRUN == 1:
print "Warning: dry-run mode is enabled, not running any commands!"
# Connect MySQL
result = s.connectMySQL(mysqlHost, mysqlPasswd)
if result > 0:
print "Error: MySQL connection failed"
sys.exit(1)
elif DEBUG == 1:
print "DEBUG: MySQL connection successful"
print s.conn
haworkers = s.getHAWorkerData(hypervisorName)
counter = 0
t = PrettyTable([
"Domain",
"VM",
"Type",
"VM state",
"Created (-2H)",
"HAworker step taken",
"Step",
"Hypervisor",
"Mgt server"
])
t.align["VM"] = "l"
if plainDisplay == 1:
t.border = False
t.header = False
t.padding_width = 1
for (domain,vmname, vm_type, state, created, taken, step, hypervisor, mgtname,
hastate) in haworkers:
if onlyNonRunning == 1 and state == "Running":
continue
if len(vmnameFilter) > 0 and vmname.find(vmnameFilter) < 0:
continue
if vmname == None:
continue
counter = counter + 1
displayname = (vmname[:28] + '..') if len(vmname) >= 31 else vmname
if mgtname is not None:
mgtname = mgtname.split(".")[0]
hvname = hypervisor.split(".")[0]
t.add_row([
domain,
displayname,
vm_type,
state,
created,
taken,
step,
hvname,
mgtname
])
# Disconnect MySQL
s.disconnectMySQL()
print t.get_string(sortby="VM")
if plainDisplay == 0:
print "Note: Found " + str(counter) + " HA workers."