タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

javaとprofilerに関するdecoy2004のブックマーク (2)

  • [Java][Profiler]Java Interactive Profiler

    What is JIP? JIP is a code profiling tool much like the hprof tool that ships with the JDK. There are, however, a few differences: Interactivity. hprof is not an interactive profiler. It starts when your program starts and ends when the JVM exits. In many cases this doesn't give you a true measure of performance since the Just In Time compiler doesn't compile code on the first pass. In addition, t

  • Java5でも動くCPUプロファイラJIPの使い方 - Qiita

    概要 JavaCPUプロファイラであるJIP(The Java Interactive Profiler)のメモです。 以下を示します。 インストール方法及び使い方 Tomcat上のアプリをプロファイル対象とした例 パフォーマンスへ与える影響 JIPの特徴 CPUプロファイラです。メソッド単位での処理時間や呼ばれた回数等を取得できます。 Java6以降であればvisualvmやMissionControl等ありますが、JIPはJava5でも動きます。 Java5でデフォルトで利用できるhprofよりも優れた点として以下が挙げられます。 パフォーマンスへの影響が小さい 任意のタイミングでon/offできる フィルター設定(プロファイル対象のパッケージ/クラスを指定可能)等が可能 インストールと使い方 ダウンロード

    Java5でも動くCPUプロファイラJIPの使い方 - Qiita
    decoy2004
    decoy2004 2014/08/27
    『JIP設定してOFFのままでもそれなりにオーバーヘッドがあったので、本番環境等でJIP設定してOFFにしておいて何かあったらONにするみたいな使い方ができなそうです。』
  • 1