Getting stack trace from a running Python application - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T08:35:13Zhttp://stackoverflow.com/feeds/question/132058http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application20Getting stack trace from a running Python applicationSebastjan TrepĨa2008-09-25T08:06:06Z2009-09-16T06:44:42Z
<p>I have this Python application that gets stuck from time to time and I can't find out where.</p>
<p>Is there any way to signal Python interpreter to show you the exact code that he's running (somekind of stacktrace on-the-fly)?</p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/132108#1321084Answer by Gustavo Rubio for Getting stack trace from a running Python applicationGustavo Rubio2008-09-25T08:24:24Z2008-09-25T08:24:24Z<p><em>python -dv yourscript.py</em></p>
<p>That will make the interpreter to run in debug mode and to give you a trace of what the interpreter is doing.</p>
<p>If you want to interactively debug the code you should run it like this:</p>
<p><em>python -m pdb yourscript.py</em></p>
<p>That tells the python interpreter to run your script with the module "pdb" which is the python debugger, if you run it like that the interpreter will be executed in interactive mode, much like GDB</p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/132114#1321147Answer by Adam for Getting stack trace from a running Python applicationAdam2008-09-25T08:27:16Z2009-04-04T00:29:50Z<p>The <a href="http://www.python.org/doc/2.5.2/lib/module-traceback.html" rel="nofollow"><strong>traceback</strong></a> module has some nice functions, among them: print_stack:</p>
<pre><code>import traceback
traceback.print_stack()
</code></pre>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/132123#13212315Answer by Torsten Marek for Getting stack trace from a running Python applicationTorsten Marek2008-09-25T08:29:32Z2008-09-25T09:32:24Z<pre><code>>>> import traceback
>>> def x():
>>> print traceback.extract_stack()
>>> x()
[('<stdin>', 1, '<module>', None), ('<stdin>', 2, 'x', None)]
</code></pre>
<p>You can also nicely format the stack trace, see the <a href="http://docs.python.org/lib/module-traceback.html" rel="nofollow">docs</a>.</p>
<p><strong>Edit</strong>: To simulate Java's behavior, as suggested by @<a href="#132260" rel="nofollow">Douglas Leeder</a>, add this:</p>
<pre><code>import signal
import traceback
signal.signal(signal.SIGUSR1, lambda sig, stack: traceback.print_stack(stack))
</code></pre>
<p>to the startup code in your application. Then you can print the stack by sending <code>SIGUSR1</code> to the running Python process.</p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/132260#1322601Answer by Douglas Leeder for Getting stack trace from a running Python applicationDouglas Leeder2008-09-25T09:06:39Z2008-09-25T09:06:39Z<p>I don't know of anything similar to <a href="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/stack.html" rel="nofollow">java's response to SIGQUIT</a>, so you might have to build it in to your application. Maybe you could make a server in another thread that can get a stacktrace on response to a message of some kind?</p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/132268#1322682Answer by Armin Ronacher for Getting stack trace from a running Python applicationArmin Ronacher2008-09-25T09:09:54Z2008-09-25T09:09:54Z<p>There is no way to hook into a running python process and get reasonable results. What I do if processes lock up is hooking strace in and trying to figure out what exactly is happening.</p>
<p>Unfortunately often strace is the observer that "fixes" race conditions so that the output is useless there too.</p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/133384#13338425Answer by Brian for Getting stack trace from a running Python applicationBrian2008-09-25T13:38:45Z2008-09-25T18:07:29Z<p>I have module I use for situations like this - where a process will be running for a long time but gets stuck sometimes for unknown and irreproducable reasons. Its a bit hacky, and only works on unix (requires signals):</p>
<pre><code>import code, traceback, signal
def debug(sig, frame):
"""Interrupt running process, and provide a python prompt for
interactive debugging."""
d={'_frame':frame} # Allow access to frame object.
d.update(frame.f_globals) # Unless shadowed by global
d.update(frame.f_locals)
i = code.InteractiveConsole(d)
message = "Signal recieved : entering python shell.\nTraceback:\n"
message += ''.join(traceback.format_stack(frame))
i.interact(message)
def listen():
signal.signal(signal.SIGUSR1, debug) # Register handler
</code></pre>
<p>To use, just call the listen() function at some point when your program starts up (You could even stick it in site.py to have all python programs use it), and let it run. At any point, send the process a SIGUSR1 signal, using kill, or in python:</p>
<pre><code> os.kill(pid, signal.SIGUSR1)
</code></pre>
<p>This will cause the program to break to a python console at the point it is currently at, showing you the stack trace, and letting you manipulate the variables. Use control-d (EOF) to continue running (though note that you will probably interrupt any I/O etc at the point you signal, so it isn't fully non-intrusive.</p>
<p>I've another script that does the same thing, except it communicates with the running process through a pipe (to allow for debugging backgrounded processes etc). Its a bit large to post here, but I've added it as a python cookbook recipe <a href="http://code.activestate.com/recipes/576515/" rel="nofollow">here</a></p>
<p>[Edit] added remote debug <a href="http://code.activestate.com/recipes/576515/" rel="nofollow">recipe</a></p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/147114#1471149Answer by spiv for Getting stack trace from a running Python applicationspiv2008-09-29T00:44:13Z2008-09-29T00:44:13Z<p>The suggestion to install a signal handler is a good one, and I use it a lot. For example, <a href="http://bazaar-vcs.org/" rel="nofollow">bzr</a> by default installs a SIGQUIT handler that invokes <code>pdb.set_trace()</code> to immediately drop you into a <a href="http://docs.python.org/lib/module-pdb.html" rel="nofollow">pdb</a> prompt. (See the <a href="http://bazaar.launchpad.net/~bzr/bzr/trunk/annotate/head:/bzrlib/breakin.py" rel="nofollow">bzrlib.breakin</a> module's source for the exact details.) With pdb you can not only get the current stack trace but also inspect variables, etc. </p>
<p>However, sometimes I need to debug a process that I didn't have the foresight to install the signal handler in. On linux, you can attach gdb to the process and get a python stack trace with some gdb macros. Put <a href="http://svn.python.org/projects/python/trunk/Misc/gdbinit" rel="nofollow">http://svn.python.org/projects/python/trunk/Misc/gdbinit</a> in <code>~/.gdbinit</code>, then:</p>
<ul>
<li>Attach gdb: <code>gdb -p</code> <em><code>PID</code></em></li>
<li>Get the python stack trace: <code>pystack</code></li>
</ul>
<p>It's not totally reliable unfortunately, but it works most of the time.</p>
<p>Finally, attaching <code>strace</code> can often give you a good idea what a process is doing.</p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/490172#4901721Answer by rcoup for Getting stack trace from a running Python applicationrcoup2009-01-29T01:28:29Z2009-01-29T01:28:29Z<p>It's worth looking at <a href="http://bashdb.sourceforge.net/pydb/" rel="nofollow">Pydb</a>, "an expanded version of the Python debugger loosely based on the gdb command set". It includes signal managers which can take care of starting the debugger when a specified signal is sent.</p>
<p>A 2006 Summer of Code project looked at adding remote-debugging features to pydb in a module called <a href="http://svn.python.org/projects/sandbox/trunk/pdb/" rel="nofollow">mpdb</a>. </p>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/618748#6187482Answer by Gunnlaugur for Getting stack trace from a running Python applicationGunnlaugur2009-03-06T12:49:11Z2009-03-06T12:49:11Z<p>What really helped me here is <a href="http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/147114#147114">spiv's tip</a> (which I would vote up and comment on if I had the reputation points) for getting a stack trace out of an <em>unprepared</em> Python process. Except it didn't work until I <a href="http://lists.osafoundation.org/pipermail/chandler-dev/2007-January/007519.html" rel="nofollow">modified the gdbinit script</a>. So:</p>
<ul>
<li><p>download <a href="http://svn.python.org/projects/python/trunk/Misc/gdbinit" rel="nofollow">http://svn.python.org/projects/python/trunk/Misc/gdbinit</a> and put it in <code>~/.gdbinit</code></p></li>
<li><p>edit it, changing this line:</p>
<pre><code>if $pc > PyEval_EvalFrame && $pc < PyEval_EvalCodeEx
</code></pre>
<p>to:</p>
<pre><code>if $pc > PyEval_EvalFrameEx && $pc < PyEval_EvalCodeEx
</code></pre></li>
<li><p>Attach gdb: <code>gdb -p PID</code></p></li>
<li><p>Get the python stack trace: <code>pystack</code></p></li>
</ul>
http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/1431341#14313410Answer by Bhaskar for Getting stack trace from a running Python applicationBhaskar2009-09-16T06:44:42Z2009-09-16T06:44:42Z<p>use the inspect module.</p>
<blockquote>
<blockquote>
<blockquote>
<p>import inspect
help(inspect.stack)
Help on function stack in module inspect:</p>
</blockquote>
</blockquote>
</blockquote>
<p>stack(context=1)
Return a list of records for the stack above the caller's frame.</p>
<p>I find it very helpful indeed.</p>
<p>--Anonymous fool.</p>