java性能监控工具jconsole-windows
jconsole
Starts a graphical console that lets you monitor and manage Java applications.
Synopsis
jconsole [ options ] [ connection ... ]
options
-
The command-line options. See Options.
- connection = pid | host:port | jmxURL
-
The
pidvalue is the process ID of a local Java Virtual Machine (JVM). The JVM must be running with the same user ID as the user ID running thejconsolecommand.Thehost:portvalues are the name of the host system on which the JVM is running, and the port number specified by the system propertycom.sun.management.jmxremote.portwhen the JVM was started.ThejmxUrlvalue is the address of the JMX agent to be connected to as described in JMXServiceURL.For more information about the
connectionparameter, see Monitoring and Management Using JMX Technology athttp://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.htmlSee also the
JMXServiceURLclass description athttp://docs.oracle.com/javase/8/docs/api/javax/management/remote/JMXServiceURL.html
Description
The jconsole command starts a graphical console tool that lets you monitor and manage Java applications and virtual machines on a local or remote machine.
On Windows, the jconsole command does not associate with a console window. It does, however, display a dialog box with error information when the jconsole command fails.
Options
- -interval=n
-
Sets the update interval to n seconds (default is 4 seconds).
- -notile
-
Does not tile windows initially (for two or more connections).
- -pluginpath plugins
-
Specifies a list of directories or JAR files to be searched for
JConsoleplug-ins. The plugins path should contain a provider-configuration file namedMETA-INF/services/com.sun.tools.jconsole.JConsolePluginthat contains one line for each plug-in. The line specifies the fully qualified class name of the class implementing thecom.sun.tools.jconsole.JConsolePluginclass. - -version
-
Displays release information and exits.
- -help
-
Displays a help message.
- -Jflag
-
Passes
flagto the JVM on which thejconsolecommand is run.
See Also
Using JConsole at
http://docs.oracle.com/javase/8/docs/technotes/guides/management/jconsole.htmlMonitoring and Management Using JMX Technology at
http://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.htmlThe
JMXServiceURLclass description athttp://docs.oracle.com/javase/8/docs/api/javax/management/remote/JMXServiceURL.html
java性能监控工具jconsole-windows的更多相关文章
- Java JVM监控工具JConsole简介
Java JVM监控工具JConsole简介 jconsole命令 功能:打开java监视管理控制台 方法: jconsole [选项1] [选项2] …… [选项n] 常用选项: -help ...
- (转载)Java自带的GUI性能监控工具Jconsole以及JisualVM简介
原文链接:http://blog.csdn.net/chendc201/article/details/22905503 1 Jconsole 1.1 简介以及连接 JConsole是一个基于JMX的 ...
- 五大最佳开源java性能监控工具
如果你正在寻找性能监控工具,不妨看看以下推荐的这五款开源工具,这些工具目前已经可以替代付费工具了,你可以看看是否是你的最佳选择.本文推荐的五款开源工具目前是开源社区中最受欢迎的. 1. Stagemo ...
- Java性能监控工具:VisualVM
VisualVM是JDK自带的一款全能型性能监控和故障分析工具,包括对CPU使用.JVM堆内存消耗.线程.类加载的实时监控,内存dump文件分析,垃圾回收运行情况的可视化分析等,对故障排查和性能调优很 ...
- java性能监控工具jstat
jstat Monitors Java Virtual Machine (JVM) statistics. This command is experimental and unsupported. ...
- java性能监控工具jstat-windows
jstat Monitors Java Virtual Machine (JVM) statistics. This command is experimental and unsupported. ...
- java性能监控工具jmc-windows
jmc Java Mission Control is a Profiling, Monitoring, and Diagnostics Tools Suite. Synopsis jmc [ opt ...
- JProfiler 8(一个很好的java性能监控工具) 下载和注册码
windows x64 zip下载地址:http://download-aws.ej-technologies.com/jprofiler/jprofiler_windows-x64_8_0_1.zi ...
- java性能监控工具:jmap命令详解
.命令基本概述 Jmap是一个可以输出所有内存中对象的工具,甚至可以将VM 中的heap,以二进制输出成文本.打印出某个java进程(使用pid)内存内的,所有‘对象’的情况(如:产生那些对象,及其数 ...
随机推荐
- const用法归纳总结 C++
非常好的一篇分析const的总结归纳, 在此谢谢原作者:http://blog.csdn.net/zcf1002797280/article/details/7816977 在普通的非 const成员 ...
- PTA 11-散列2 Hashing (25分)
题目地址 https://pta.patest.cn/pta/test/16/exam/4/question/679 5-17 Hashing (25分) The task of this pro ...
- map/set/object/array对比
map () { //数据结构横向对比, 增,查,改,删 let map = new Map() let array = [] //增 map.set('t',1) array.push({t:1}) ...
- 【bzoj1925】[Sdoi2010]地精部落 组合数学+dp
题目描述 传说很久以前,大地上居住着一种神秘的生物:地精. 地精喜欢住在连绵不绝的山脉中.具体地说,一座长度为 N 的山脉 H可分 为从左到右的 N 段,每段有一个独一无二的高度 Hi,其中Hi是1到 ...
- BZOJ 2806 [Ctsc2012]Cheat ——后缀自动机 单调队列优化DP
先建出广义后缀自动机. 然后跑出文章中每一个位置的最大匹配距离. 然后定义$f[i]$表示匹配到以$i$结尾的串时,最长的匹配距离. 显然可以二分$L$的取值. 然后容易得到$DP$方程 $f[i]= ...
- Linux rpm 命令参数使用
RPM是RedHat Package Manager(RedHat软件包管理工具)类似Windows里面的“添加/删除程序” rpm 执行安装包二进制包(Binary)以及源代码包(Source)两种 ...
- Mysql常用语句记录
建表语句,带自增字段 create table test ( id int auto_increment primary key, name ) not null, password ) not nu ...
- spring boot-html和templates
静态页面 spring boot项目只有src目录,没有webapp目录,会将静态访问(html/图片等)映射到其自动配置的静态目录,如下 /static /public /resources / ...
- Intellij IDE使用 ideavim,不能复制文档到系统粘贴板
vim的yank命令默认不会复制到系统粘贴板,而是粘贴到寄存器.你可以使用* 或 +寄存器来访问系统粘贴板. 在~/.ideavimrc (如果不存在就创建) 中添加下列选项 set clipboar ...
- POJ3671 Dining Cows
Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8126 Accepted: 3441 Description The c ...