This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
この記事は Ruby の Advent Calendar に参加しようとして用意しましたが、間に合わなかったものです。 | |
Ruby 2.0でdtrace対応が入りました。この機能はLinuxのsystemtapからもアクセス出来ます。でも、どこにもドキュメントがないのでいっちょ使い方を解説しようという、そういう趣旨の記事です。 | |
まず、基本の使い方ですが、以下の様に | |
process(プロセス名).provider("ruby").mark(Rubyで定義されてるprobe名) で引っ掛けるイベント名を | |
記述して、tapscriptを記述します | |
ruby.stp | |
<blockquote><pre>probe process("./ruby").provider("ruby").mark("find__require__entry") |