1jconsoleJ(a1v)a Troubleshooting, Profiling, Monitoring and Management Tojoclosnsole(1)
2
3
4
6 jconsole - Starts a graphical console that lets you monitor and manage
7 Java applications.
8
10 jconsole [ options ] [ connection ... ]
11
12
13 options
14 The command-line options. See Options.
15
16 connection = pid | host:port | jmxURL
17 The pid value is the process ID of a local Java Virtual Machine
18 (JVM). The JVM must be running with the same user ID as the user
19 ID running the jconsole command.The host:port values are the
20 name of the host system on which the JVM is running, and the
21 port number specified by the system property
22 com.sun.management.jmxremote.port when the JVM was started.The
23 jmxUrl value is the address of the JMX agent to be connected to
24 as described in JMXServiceURL.
25
26 For more information about the connection parameter, see
27 Monitoring and Management Using JMX Technology at
28 http://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html
29
30 See also the JMXServiceURL class description at
31 http://docs.oracle.com/javase/8/docs/api/javax/management/remote/JMXServiceURL.html
32
34 The jconsole command starts a graphical console tool that lets you
35 monitor and manage Java applications and virtual machines on a local or
36 remote machine.
37
38 On Windows, the jconsole command does not associate with a console
39 window. It does, however, display a dialog box with error information
40 when the jconsole command fails.
41
43 -interval=n
44 Sets the update interval to n seconds (default is 4 seconds).
45
46 -notile
47 Does not tile windows initially (for two or more connections).
48
49 -pluginpath plugins
50 Specifies a list of directories or JAR files to be searched for
51 JConsole plug-ins. The plugins path should contain a provider-
52 configuration file named META-
53 INF/services/com.sun.tools.jconsole.JConsolePlugin that contains
54 one line for each plug-in. The line specifies the fully
55 qualified class name of the class implementing the
56 com.sun.tools.jconsole.JConsolePlugin class.
57
58 -version
59 Displays release information and exits.
60
61 -help
62 Displays a help message.
63
64 -Jflag
65 Passes flag to the JVM on which the jconsole command is run.
66
68 · Using JConsole at
69 http://docs.oracle.com/javase/8/docs/technotes/guides/management/jconsole.html
70
71 · Monitoring and Management Using JMX Technology at
72 http://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html
73
74 · The JMXServiceURL class description at
75 http://docs.oracle.com/javase/8/docs/api/javax/management/remote/JMXServiceURL.html
76
77
78
79JDK 8 21 November 2013 jconsole(1)