forked from rubrikinc/rubrik-scripts-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm_getprocesses.py
51 lines (40 loc) · 1.28 KB
/
vm_getprocesses.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
from pyVmomi import vim
from pyvim.connect import SmartConnect, Disconnect, SmartConnectNoSSL
import argparse
def get_obj(content, vimtype, name):
obj = None
container = content.viewManager.CreateContainerView(
content.rootFolder, vimtype, True)
for c in container.view:
if name:
if c.name == name:
obj = c
break
else:
obj = c
break
return obj
parser = argparse.ArgumentParser()
parser.add_argument('--u')
parser.add_argument('--p')
parser.add_argument('--vc')
parser.add_argument('--vm')
parser.add_argument('--vmu')
parser.add_argument('--vmp')
args= parser.parse_args()
vc_port = '443'
# This will connect us to vCenter
s = SmartConnectNoSSL(host=args.vc, user=args.u, pwd=args.p, port=vc_port)
# Establish the vCenter Obj
content = s.RetrieveContent()
# Assemble Creds
creds = vim.vm.guest.NamePasswordAuthentication(username=args.vmu, password=args.vmp)
# Lookup VM by Name
vm_obj = get_obj(content, [vim.VirtualMachine], args.vm)
# Establish ProcessMgr Obj
pm = content.guestOperationsManager.processManager
# Grab Processes from machine
pl = pm.ListProcessesInGuest(vm_obj, creds)
# Print process names - note there is more info in the hash if you need.
for p in pl:
print (p.name)