Settings

Theme

How to spy on a Ruby program

jvns.ca

229 points by bartbes 10 years ago · 27 comments

Reader

amagumori 10 years ago

You know, sometimes i get slightly eye-rolly at the tone of Julia's articles, but fuck, this sort of attitude in programming is so much better than the alternative (i.e. lkml). Bringing more positivity and jolliness into programming is important. Fuck the traditional macho programmer attitude. I'm gonna try to be more like Julia.

eeZi 10 years ago

For Python, you can just use Pyrasite (https://github.com/lmacken/pyrasite) and inject a script which prints a stack trace for all threads.

I've done this to debug OpenStack in the past and it worked very well. There are many similar projects for Python, I used this one since it's in the RHEL repo.

Useful summary on StackOverflow: https://stackoverflow.com/questions/4163964/python-is-it-pos...

gabetax 10 years ago

If this sort of stuff is relevant to you, http://patshaughnessy.net/ruby-under-a-microscope is an essential book to read.

lamontcg 10 years ago

When I've needed to dump a stack trace, I've just included an interrupt handler which prints the call stack to a debug log.

That has been good enough for the problem of "wtf is this ruby process doing for _minutes_ at a time?" That doesn't get you flame graphs, but you can take a few snapshots and get an idea of what is happening.

For more involved perf debugging I've used ruby-prof.

parennoob 10 years ago

From the article:

“I'm constantly surprised by how many people don't know you can do this. It's amazing.”

I'm probably nitpicking, but sad to see this in the article. One of the things I love about Julia's writing otherwise is that it is free of this sort of 'I'm surprised that you don't know this simple thing.' expressions.

  • gkop 10 years ago

    http://xkcd.com/1053/ opened my eyes to this category of behavior and presents an alternative.

  • jvns 10 years ago

    hey! Thanks for pointing this out. As you say, I do normally try to audit my writing for feigned suprise like this!!

    I'll fix it when I get home.

Freaky 10 years ago

Don't forget if you're on a system with DTrace, Ruby supports a nice bunch of probes for various events: http://ruby-doc.org/core-2.3.0/doc/dtrace_probes_rdoc.html

jon-wood 10 years ago

If you're planning ahead you can have your application load rbtrace which then allows connecting to a running process to see what it's doing, with options to limit to slow calls, IO, of specific method calls.

camperman 10 years ago

I hadn't heard of perf - very handy indeed. It's in the linux-tools package for distros using apt. You will need to install both the generic package and the one for your kernel version.

jzwinck 10 years ago

Of course there are equivalent programs for C. On GNU/Linux it's pstack aka gstack. Also gcore if you want an entire core dump you can analyze later with gdb.

http://linux.die.net/man/1/pstack

nxzero 10 years ago

One issue I've run across is spying on JRuby's native Java classes. Anyone have a solution?

  • ch4s3 10 years ago

    I've only ever used VirtualVM, maybe Charles Nutter or Chris Seaton will appear and enlighten us both.

    • chrisseaton 10 years ago

      I'm not sure what you want to do. Is your problem that you do want to see the native Java classes, or you want to hide them and focus on the Ruby code? Or is the key thing you want a Java flame graph?

      • ch4s3 10 years ago

        Interesting, it looks like Sam Saffron's FlameGraph gem https://github.com/SamSaffron/flamegraph has worked with JRuby for about a year and I hadn't noticed.

      • ch4s3 10 years ago

        Java classes and a flame graph would be nice sometimes. I really only know how to use pry and Virtual VM with JRuby.

        • chrisseaton 10 years ago

          It looks like some people are using flame graphs for the JVM.

          http://techblog.netflix.com/2015/07/java-in-flames.html

          I'm still puzzled that there seems to be no simple gprof-style graph profiler included with the JVM.

          • aardvark179 10 years ago

            I"m surprised as well.

            Last time I needed this I knocked something up that could use the internals of Mission Control or Visual VM to turn their profile formats into flame graphs, but I doubt it would keep working across versions, and it really needed more work to be something anybody else could use sensibly.

            It was however very easy to do (maybe half an hour's work) and produced very useful results. If you're using an invokeDynamic based language implementation however you will want to filter a lot of internal stack frames out of the graph, or you'll have trouble seeing past the LambdaForms to what's really going on.

        • ch4s3 10 years ago

          Good find, thanks Chris. Yeah, you'd think the JVM folks would work to add some tooling like that.

xjlin0 10 years ago

Nice write. The FlameGraph link in Julia's article is broken, maybe points to this one? https://github.com/brendangregg/FlameGraph

guptaneil 10 years ago

> maybe it doesn't exist because a Linux-only Ruby debugging tool is sort of a weird thing?

Linux-only seems perfectly acceptable, especially as more and more development moves to Docker containers.

Great write up, looking forward to seeing a completed tool!

jsnk 10 years ago

"I was going to paste the strace output of what gdb is actually doing, but it is 20 megabytes of system calls."

I think this is why you shouldn't run this on production server itself. Each call is very resource intensive on the production server.

I believe the right way to analyze memory is to use "gcore", dump the memory, download it to the local machine's VM instance that's running the same OS as the production using scp. Also download the same ruby binary that production is running, and use gdb on the VM to analyze memory dump.

  • jeffdavis 10 years ago

    That may be "right" given the current options, but that doesn't mean we can't have better options.

    And that's exactly what this blog post is about.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection