性能分析工具-JProfiler

一.下载JProfiler,选择各自OS下的版本

http://www.ej-technologies.com/download/jprofiler/files

可视化版本连接远程主机(远程主机linux 见步骤2)

性能分析工具-JProfiler_第1张图片


性能分析工具-JProfiler_第2张图片性能分析工具-JProfiler_第3张图片



性能分析工具-JProfiler_第4张图片

性能分析工具-JProfiler_第5张图片性能分析工具-JProfiler_第6张图片性能分析工具-JProfiler_第7张图片



二.一般应用都部署在linux下,介绍linux下的安装(本例监控ant服务)


第一步中下载linux版本jprofiler_linux_8_1_1.sh,上传到linux

#chmod 777 jprofiler_linux_8_1_1.sh

#./jprofiler_linux_8_1_1.sh –c

按步骤安装。


三.设置/etc/profile环境变量


在/etc/profile文件里添加:export LD_LIBRARY_PATH=/opt/jprofiler6/bin/linux-x64

立即生效 #source /etc/profile


四.在需要监控服务的启动脚本中添加配置


在第一步连接远程服务时,jprofiler提示insert "-agentpath:/opt/jprofiler8/bin/linux-x64/libjprofilerti.so=port=8850";
将-agentpath:/opt/jprofiler8/bin/linux-x64/libjprofilerti.so=port=8850添加到需要监控服务的启动脚本。
ANT服务,在$ANT_HOME/bin下,在ant文件中添加: ANT_OPTS="$ANT_OPTS  -agentpath:/opt/jprofiler8/bin/linux-x64/libjprofilerti.so=port=8850"。
TOMCAT服务,bin目录下catalina.sh中添加JAVA_OPTS="-agentpath:/opt/jprofiler8/bin/linux-x64/libjprofilerti.so=port=8850"





你可能感兴趣的:(工具)