Enable tracing and log collection in the vcsim container

pull/31769/merge
James Tanner 7 years ago committed by jctanner
parent e5eedfe4b8
commit cc287daa3b

@ -41,6 +41,16 @@ def m_index():
return 'vcsim controller'
@app.route('/log')
def get_log():
"""Read and return the vcsim log"""
fdata = ''
if os.path.isfile('vcsim.log'):
with open('vcsim.log', 'rb') as f:
fdata = f.read()
return fdata
@app.route('/kill/<int:number>')
def kill_one(number):
"""Kill any arbitrary process id"""
@ -133,6 +143,10 @@ def spawn_vcsim():
'%s:%s' % (hostname, port),
]
# trace soap requests+responses
if trace:
cmd.append('-trace')
# esx only allows certain arguments
if request.args.get('esx'):
cmd.append('-esx')
@ -151,7 +165,7 @@ def spawn_vcsim():
default = request.args.get(name)
cmd.append('-%s=%s' % (name, default))
cmd = ' '.join(cmd)
cmd += ' 2>&1 > vcsim.log'
cmd += ' > vcsim.log 2>&1'
# run it with environment settings
p = subprocess.Popen(

@ -1,3 +1,3 @@
#!/bin/bash
docker build -t ansible:vcenter-simulator .
docker build --no-cache -t ansible:vcenter-simulator .

Loading…
Cancel
Save