clusterfuzz
clusterfuzz copied to clipboard
Live Debugging with Clusterfuzz in GCP
I am trying to debug why our cluster is no longer picking up jobs and we would like to use the GCP live debugger tool documented here.
https://cloud.google.com/debugger/docs/setup/python
So I placed the following code src/appengine/main.py near the end
try: import module_init module_init.appengine() except ImportError: pass
** try: import googleclouddebugger googleclouddebugger.enable( breakpoint_enable_canary=False ) except ImportError: pass ** import server
And i put the following line in /src/appengine/gae_requirements.txt and /src/requirements.txt google-python-cloud-debugger
But it looks like this does not work. The main thing I notice is that the gae_requirements.txt and requirements.txt does not pick up the google-python-cloud-debugger library and from the logs it looks like my changes get overwritten or does not use the ones I updated.
Have you guys used google's debugger tool and if so is there any guidance on how to get it to work on the clusterfuzz appengine?
@urbanenomad - have you progressed? I would like to debug it as well...