Questions tagged [jconsole]

A Java debugging aid that redirects any System.{out,err} to a console window.

"Java Console" explains:

Java Console is a simple debugging aid that redirects any System.out and System.err to the console window. It is available for applets running with Java Plug-in and applications running with Java Web Start.

See also How do I enable and view the Java Console?

JConsole may also refer to the eponymous Java Virtual Machine monitoring tool.

450 questions
0
votes
1 answer

Retrieve vm summary on Jconsole

I need to access the VM arguements from the VM summary tab on jconsole programmatically.. i.e using java. Am using JMX to create connection to a remote server. using method MBeanServerConnection connection =…
user3457017
  • 55
  • 1
  • 6
0
votes
0 answers

Why is JConsole not backward compatible when connecting via a proxy?

I have a remote application running on JDK 1.7. When I attempt to attach to it using from JDK 1.6 or JDK 1.8 via a proxy jconsole -J-DsocksProxyHost=localhost -J-DsocksProxyPort=${proxy_port}…
eebbesen
  • 5,070
  • 8
  • 48
  • 70
0
votes
1 answer

org.springframework.jdbc.cannotgetjdbcconnectionexception Rmi class loader disabled

Rather new to Java coming from a c# background. What I am trying to achieve is just to expose a method to jConsole via jmx and rim. When I run my service and open jConsole I can see the method there and all looks good, now the problem comes in when…
Ernie
  • 567
  • 2
  • 6
  • 23
0
votes
1 answer

jconsole not detecting jboss eap 6.1

We have recently migrated from Jboss 5.0 to Jboss6.1 EAP. As part of performance monitoring,I want to connect Jconsole to the jboss process. Whenever I try to run jconsole from the standalone server ,it doesnt detect the locally running Jboss…
Rips
  • 1,964
  • 1
  • 23
  • 45
0
votes
1 answer

Want to use JConsole in Performance Testing

Just want to know that is JConsole is good to use for perfoamance testing. Is JConsole create any issue under load test??
0
votes
1 answer

View the console of a application running on a remote server

I have an application which I can run locally via Putty. This lets me view and track activity on that application. I use the command below to execute the application: java -jar my_server.jar I would like to view the console of my application…
hawx
  • 1,629
  • 5
  • 21
  • 37
0
votes
1 answer

How to pass client-side environment to MBean method invocation

One of our apps exposes management MBeans that allow developers to prod it in various ways. These are typically long-running operations such as reprocessing historical inputs, refreshing reference data, etc. If these operations fail or encounter…
Andrzej Doyle
  • 102,507
  • 33
  • 189
  • 228
0
votes
2 answers

Connecting using jconsole to a java process without jmx parameters

I have a java program in a weird condition where it has stopped running a certain thread. I would like to connect to it using JMX, but I didn't provide the JMX arguments. I could restart but then I would loss the information of the current…
user967710
  • 1,815
  • 3
  • 32
  • 58
0
votes
1 answer

Is JConsole CPU usage only for the Java process?

I want to know if the cpu usage data in jconsole is for the entire server or just the java process which the JConsole is monitoring?
Karthik
  • 990
  • 10
  • 19
0
votes
1 answer

Console code to Userscript?

I'm having trouble creating a userscript for a shopping page. I want to automate a click so that when I am on a page that has a grid of items, the script will select a product that matches the users input. This will go that specific's webpage where…
zweed4u
  • 207
  • 5
  • 18
0
votes
1 answer

JConsole always returning successful even though exceptions occur

I am trying to get a JMX MBean operation to return something other than "Method successfully invoked", from JConsole. When an exception occurs in the invoked method, I would like to see "Method failed" from JConsole, rather than "Method…
sworded
  • 2,419
  • 4
  • 31
  • 48
0
votes
2 answers

can i create a custom console log function in js?

is there a way to make a function that runs console.log for a string of variables. running once for the name of the variable name and once to show its val function multilog(text){ var text=text.split(",") for(i=0;i
0
votes
3 answers

Ajax Doesn't give me anything in the console?

Updated Question to better reflect the communities support Based on community support I have changed the Ajax function to be as such: (function($){ $(document).ready(function(){ $('a').click(function(e){ var el =…
TheWebs
  • 12,470
  • 30
  • 107
  • 211
0
votes
0 answers

Neo4J jconsole don't show all attributes

I dont't get all attributes in MBeans -> org.neo4j Why jconsole don't show me locking transaction and so on? I have test on server and embedded version but always the same. (Neo4J 1.9.1 & Glassfish 3.1.2)
0
votes
1 answer

Viewing Tomcat 6.0's MBeans in Jconsole

I'm trying to write a small agent to control tomcat, and right now it looks like JMX is the best option for me. Using the manager http service I can see that there are all sorts of neat mbeans registered that give me all the info I need. Only…
Brian
  • 3
  • 1
  • 3