Java Management eXtensions is a standard Java API that enables the instrumentation and monitoring of a running Java program.
-1
votes
0answers
7 views
ActiveMQ and consumer count using JMX
I am using ActiveMQ JMX to get the consumer count associated with a queue which works fine.
I have 4 JBoss instances each having 0 to N consumers connected to Active MQ.
Let's consider the ...
0
votes
1answer
4 views
Where is the value OperatingSystem.OpenFileDescriptorCount gotten from?
I have a graph that is generated using JMX. It is something that comes from the graph tool that is used (dont know the name). I wonder where the value OperatingSystem.OpenFileDescriptorCount comes ...
0
votes
1answer
19 views
Spring with JMX authentication
I can register a Class into MBean but could not connect via jconsole. Why I could not connect running this application though I have disabled the jmx authentication via JVM parameters.
Here is my ...
-2
votes
0answers
18 views
best way to manage my java application [closed]
I have a java application and I want some tool to manage it. It should provide but not limited to the following functionalities:
1. Can run my jar or kill my jar
2. monitor the health of my ...
0
votes
0answers
11 views
enable JMX in embedded jetty
I want to enable JMX in jetty 9 for collecting statistics.
According to the documentation I have to do this as follows
Server _server = new Server();
// Setup JMX
MBeanContainer mbContainer=new ...
0
votes
0answers
40 views
Is there a way for a C or C++ application to connect to remote JVM via JMX? [closed]
I would like to know if is a way to connect a C or C++ application to a remote JVM via JMX?
Best regards,
SK
0
votes
0answers
21 views
spring web application reloaded after jmx service starts
I am developing a spring-mvc application.
Whenever I deploy the application for the first time (after starting netbeans), the application is being initialized twice. applicationContext.xml is ...
0
votes
1answer
14 views
Jolokia / JMX authentication in Javascript app
I develop a javascript-based frontend for JMX / jolokia backend. Basically, the tool should be a prettier html5-based JConsole for people, who don't code in Java.
My question is, how am I supposed ...
0
votes
2answers
24 views
programmatically get server load information from Apache ServiceMix using JMX
Is it possible to get the server load information of a webserver deployed on a ServiceMix / Fuse ESB.
I dont want to use Jconsole but get the information by running a java file and writing the values ...
0
votes
1answer
19 views
Overhead with multiple MBeans
Do having multiple MBeans pose performance issues?
Trying to track multiple transactions run in the application. I may end creating 30+ MBeans.
I am really concerned if it will be too chatty with ...
0
votes
0answers
15 views
JMX monitoring of tomcat parallel deployments
Tomcat 7 is able to deploy versioned war files that look like this:
ROOT##1234.war
But when I connect to this instance with JMX, I need to use a path like this in order to get the JDBC pool number ...
0
votes
0answers
20 views
jboss 6.1 jmx remote access and log files
I need to enable jxm remote access on a jboss 6.1.final instance, so I placed this configurations on my run.conf file:
# stuff for JMX
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote=true"
...
0
votes
1answer
17 views
Polling MBeans Attributes with out refresh
This is what I did:
Step 1: Exposed MBeans Attributes:
Step 2 Polling Options
What else do I have to?
Still I don't see attribute values getting updated without clicking on refresh.
0
votes
2answers
26 views
Execute a method with JMX without JConsole
How to execute a method with JMX without JConsole?
I want to invoke methods through JMX from Java code. With the code below I can get the name of all methods of the MBean interface but I am not yet ...
1
vote
0answers
8 views
How to retrieve connection data in MBeanServer?
I'm new in JMX RMI. I need to authenticate many clients in one server. I use SSL certificates and I would like to retrieve some data from data from certificate to identify client. How to do it? How to ...
0
votes
1answer
15 views
JMX output in graph format
Is it possible to show JMX Bean output in a graph?
I am currently using Javamelody but it doesn't show JMX Bean output in graph. Tried using Splunk but I have no idea, how does it gets integrated with ...
0
votes
0answers
5 views
Executing MBean through tomcat manager
I have written a MBean which is working fine, when I invoke it from jconsole. Now is it possible to list and invoke MBeans through tomcat-manager (I am using tomcat7.0.33)? If so how can i do as of ...
0
votes
0answers
6 views
Change the CSS of JMX Bean output in Javamelody
Is it possible to change the style of JMX Bean output on the page? I am using JavaMelody to show JMX output.
1
vote
3answers
44 views
how to shut down a thread from a different one?
In my application each request has its own thread. I use JMX/JConsole to monitor them, measure the elapsed time. If a a request needs too much time I'd like to stop it by interrupting the underlying ...
0
votes
0answers
5 views
Glassfish 3.2 having exception when restarting
After adding a JVM option into server.cfg, I got following error when restarting to active this setting.
I cleaned the cache
rm -rf $AS_HOME/glassfish/domains/domain1/osgi-cache/*
,but it did ...
0
votes
0answers
9 views
spring jmx visual diagram or components interaction
I am a new bie to the world of JMX and I was going through spring JMX and specially the spring recipes book also so that can learn more about spring jmx , while I was also going through this url ...
0
votes
1answer
16 views
Does the type of deploy affect the application in any way?
My team and I are trying to automatize some of our proccesses and it includes programmatically remote deployment. A colleague of mine asked me a question about JBoss' deployment:
Does the type of ...
0
votes
1answer
34 views
MongoDB JMX registration exception: Class does not expose a management interface
Recently i've been having an issue on application startup, using MongoDB 2.10.1, with my JavaEE application running on Jboss 4.2.3GA.
AM com.mongodb.DBPortPool$Holder get
WARNING: JMX registration ...
-1
votes
0answers
19 views
NoSuchMethodError: org.springframework.transaction.support.TransactionSynchronizationManager.unbindResourceIfPossible( [closed]
Trying to integrate my own web pages with spring batch admin.
Getting below error :
15:22:41,112 ERROR [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-12) Context ...
0
votes
1answer
21 views
Spring JMX and OC4J MBean notifications, can't enable
I'm deploying a spring application to OC4J, however keep encountering a strange problem whereby i can access the exposed mbeans, however only use the attributes and operations. The notifications can ...
2
votes
2answers
54 views
CPU percent being used by GC using JMX
I am trying to write a program that uses JMX to find the percentage of CPU being used for GC activity by the JVM at that moment of time(or for a small subset of time say 1 sec), similar to what ...
0
votes
0answers
18 views
Permission required to query JNDIName of datasource in websphere
As any user when I try to get the JNDIName of a datasource configured in websphere using JMX mbean I get
Access is denied for the getJndiName operation on DataSource MBean because of insufficient ...
0
votes
1answer
37 views
Access Infinispan MBeans programatically
I am using Infinispan 5.2.1 and tried to access the MBeans via my Java program. But no luck. I assume Infinispan MBeans are registered in Platform MBean server. I can see all the MBeans correctly in ...
0
votes
1answer
37 views
what else do I need to configure jconsole on server
I want to use jmx with Jconsole.Here is the relevant line in the .sh file
## enable jconsole access
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9999
...
0
votes
1answer
30 views
camel change route policy at runtime via jmx
is it possible to change at runtime the route policy? for instance, if i have the code below
CronScheduledRoutePolicy startPolicy = new CronScheduledRoutePolicy();
startPolicy.setRouteStartTime("* 0 ...
0
votes
1answer
22 views
Regarding adding spring jmx functionality in the below application
I am new to the world of JMX , so far I have explored that mostly it is used in monitoring and managing the applications , since I am very much interested in spring JMX , I have developed this ...
0
votes
0answers
13 views
JMX connection over ssl
I am trying to connect over SSL to jmx but it fails in my code Any thing i need to pass to validate certificate?
<Error>
Failed to connect to JMXService URL at ...
0
votes
1answer
11 views
InvocationException on connecting to MBean server from Spring
I am trying to connect to MBean server from my Spring application. Below is the code:
public void connect() throws Exception {
MBeanServerConnectionFactoryBean bean = new ...
0
votes
1answer
21 views
Dynamically adding JMX objects - client access notification
I'd like to expose the files in a directory via JMX objects. When a file is added or removed this should reflect in a new JMX bean.
But the beans should only be created if there is actually a client ...
0
votes
1answer
13 views
call jmx operation on a local running process
I have a java process on a linux server, which runs with this option: -Dcom.sun.management.jmxremote
So I cannot just connect to this process via jconsole running on my local pc (because neither port ...
0
votes
3answers
63 views
Difference between MBean and MXBean
What is the difference between MBean and MXBean?
When should we use MBean and when to go for MXBean?
1
vote
0answers
47 views
Subject.getSubject() always return null after jdk1.6.0_39
We use following code to get subject in JMX Server. The Subject.getSubject(acc) always return null event the user is authenticated. It is Ok for JDK older than 1.6.0_39.
So, is there any body knows if ...
-3
votes
0answers
19 views
Accessing Custom MBeans in Clustered Environment [closed]
How can I access my custom MBeans in custom environments?
One Of the MBean is registered like this:
MBeanServer mbs = null;
PerformanceMetadata metadataObj = null;
ObjectName name;
...
0
votes
1answer
27 views
Register MBean Everytime before using it
I am registering MBean in a common class while booting up tomcat application. Trying to access this bean in some other class to record some statistics. But JMX Bean values are not getting updated in ...
1
vote
1answer
20 views
JMXBean entries are not showing up
Implementation of JMXBean
PerformanceMetadata jmxBean = new PerformanceMetadata();
responseDocument = (Document) serviceOperation.invoke(serviceComponent,RequestDocument);
...
0
votes
1answer
18 views
Why the emphasis on typed attributes/methods in MBean definition?
From Oracle's definition of MBeans:
MBeans are managed beans, Java objects that represent resources to be
managed. An MBean has a management interface consisting of:
Named and typed ...
3
votes
1answer
49 views
What is the difference between a standard MBean and dynamic MBean?
What is the different between:
Standard MBeans
Dynamic MBeans
What are the pros and cons of each and when should we choose either of these two components to manage a resource?
0
votes
1answer
37 views
Register more than one MBean of same MBean class
I want to register more than one MBean of same class.
I have Hello class implementing the HelloMBean interface.
Now in main i have two object of Hello class and I want to register them both
...
0
votes
1answer
19 views
Error while publishing Bean through JMX
I am trying to register a bean on JMX. I am getting error on line mbs.registerMBean(metadataObj, name);. Error says
Multiple markers at this line
- Syntax error on token "(", delete
this ...
0
votes
1answer
45 views
Difference between normal Interface and MBean Interface
I have doubt about the difference between normal Interface and MBean interface.
public interface TryMBean
{
// method declaration
}
public class Try implements TryMBeans
{
// method ...
0
votes
1answer
20 views
JMX Bean for few types of Requests
I want to show performance statistics for particular request type. When Controller class gets the HTTP Request from browser, it then marshals request xml in to a request object. From request object I ...
0
votes
1answer
41 views
mbean annotations @MBean missing in JDK7
I have been trying to code Mbeans using annotations only. There are a few examples I found on stackoverflow that show how to do this, however I think the @MBean is not present in JDK7. ...
0
votes
0answers
21 views
How to interpret maxThreads value?
I have set maxThreads as 200. If there are 0 users logged into my server, ActiveThreadCount value displayed is 50 in jmx-console.
I carried out load test on my server. I had put 200 concurrent users. ...
0
votes
1answer
26 views
JMX: Converting AttributeList to Map
I'm coding a monitoring app that utilizes JMX. I'd like to convert the AttributeList returned into a Map whose keys are the attribute names and values the attribute values. In my search, I've only ...
0
votes
0answers
17 views
JMX batch client?
I am looking for a JMX client that can invoke an mbean operation from a batch file. Actually a cron job should invoke an operation via JMX in Weblogic server.
Unfortunately VisualVM does not work in ...


