Java Management eXtensions is a standard Java API that enables the instrumentation and monitoring of a running Java program.

learn more… | top users | synonyms (1)

0
votes
1answer
111 views

Java MXBean custom types

I am trying to create an MXBean with a custom attribute, but I get javax.management.NotCompliantMBeanException IJmsDestinationMBean.getAttributes has parameter or return type that cannot be translated ...
0
votes
2answers
47 views

Expose a java method using JMX

We can expose a java method either through JMX or as a Webservice. In which situation we use JMX for exposing a java function ? Is there any particular advantage the jmx have over webservice?
1
vote
2answers
55 views

hornetq “listMessagesAsJson” not working

I'm using hornetq for awhile now and it's been ok until recently. I have a problem like this: i have some messages that are "stuck" in the queue (i am working with in client-acknowledge mode, so the ...
0
votes
1answer
50 views

Hyperic 5.0 exporting custom MBeans in JBoss

We're using JBoss AS 7.1.1, and Spring Integration. We're exporting Spring Integration JMX MBean through JBoss native MBeanServer In our company we are using Hyperic 5.0 Enterprise for resource ...
0
votes
0answers
54 views

Monitoring java application using mbean

I want to monitor an existing javamail application for counting number of mails in my gmail account using MBeans. The javamail program is working properly. But how do i write an mbean to monitor the ...
3
votes
4answers
139 views

What does “Perform GC” button do in jconsole?

There is a button "Perform GC" in jconsole, anyone knows what exactly happens if I click that button, it's invoking System.gc()?
1
vote
1answer
112 views

enable SNMP monitoring for Java app with existing MBeans

I'm looking for an example to expose the methods already exposed via MBean server with SNMP. I read that since Java6 this is already supported in the JDK, but I also found snmp4j as a library. But I ...
0
votes
1answer
46 views

Tomcat server remote redeployement

We have a web app using Apache Shiro for security and deployed in a Tomcat 7 server, and an administration application in java swing. One of the purposes of the administration application is to manage ...
0
votes
1answer
61 views

How to dynamically add and register new attributes to mbean

Is it possible to dynamically add and register new attributes to mbean eg : <server> <mbean code="org.jboss.example.MyMbean" name="jboss:service=myMbean,name=MyMbeanExample"> ...
0
votes
0answers
68 views

Jboss snmp-adaptor to send traps from mbean

I am using JBoss AS 5.1. I modification the attributes.xml file by defining mapping for my own my custom mbean with OID and was able to do snmp get/set on custom mbean attribute. The things I ...
0
votes
0answers
359 views

Jboss AS 7.1.1-Final Remote JMX call fails with status “WAITING”

I am trying to connect to remote Jboss 7.1.1-Final from Visual VM over JMX protocol supported as "remoting-jmx". Jboss is running in standalone mode with port 9999 opened for remote access. I can ...
0
votes
1answer
53 views

How I can use JConsole to change logging setting in Websphere?

How I can use JConsole to change logging setting in Websphere? I need set logging level.
0
votes
1answer
117 views

using JMX client to connect to the Websphere JVM

How I can connect to Websphere JVM through JMX client? Can JMX client be used to connect to the Websphere JVM to change logging settings?
0
votes
1answer
207 views

Has LocateRegistry.createRegistry(int port) changed in java 1.7?

We have several server side components in our architecture. Each component uses JMX to expose various internal attributes. Initialization is done as follows: try { Registry registry = ...
0
votes
2answers
195 views

Hibernate and Ehcache statistics via JMX on production

I have a question more about opinions and experience rather then technical solution. What do you think about turning on Hibernate statistics and Ehcache statistics via JMX console on production ...
0
votes
0answers
126 views

How to exclude beans/packages from Spring AOP processing scope

How to exclude beans, or packages from Spring AOP processing scope? I encountered this, while fixing Spring Integration JMX support issue on JBoss. As a development environment, we are using Spring ...
1
vote
1answer
278 views

Unable to see metrics captured with spring metrics annotations

How can I do the equivalent of: @Override public void init(final ServletConfig config) throws ServletException { super.init(config); CsvReporter.enable(new File("/tmp/measurements"), 1, ...
0
votes
2answers
207 views

Name [t3://127.0.0.1:7001/weblogic.management.mbeanservers.domainruntime] is not bound in this Context. Unable to find [t3:]

I have Tomcat 7.0 that has some Java code that I use to connect to a Weblogic 12c server to manage the weblogic server. I can use RMI/IIOP but I cannot use T3. Everyone says make sure the ...
0
votes
1answer
340 views

Automatic start of jconsole from eclipse

I wondered if there is a plugin or someone has a script to start jconsole automatically when I run or debug an application from eclipse. Maybe adding the classpath too. I googled but didnt find ...
0
votes
1answer
51 views

JMX Client Eclipse issue

I am trying to create JMX Client application. I run my JMX application with following command: java -cp . -Dcom.sun.management.jmxremote.port=1234 -Dcom.sun.management.jmxremote.authenticate=false ...
4
votes
1answer
84 views

spring security jmx authneticator

I have a JMX server configured without Spring and am trying to implement Spring Security for the Authorization part. (See here, ...
0
votes
0answers
35 views

Can't seem to instrument the Platform MBeanServer

Using the following pointcut: @Pointcut("execution(* javax.management.MBeanServer+.registerMBean(..)) && args(mbean, objectName)") public void registerMbean(Object mbean, ObjectName ...
0
votes
1answer
62 views

Maintaining JMX connections and load on Remote MBeanServer and JVM

In my application I creating and maintaining Multiple connections with Remote JVM's MBeanServer. I want to pool these connections. But not sure if they put any load on Remote MBeanServer. I want to ...
0
votes
2answers
134 views

Can't expose data as graph in nagios

I am monitoring Message Count attribute of JMS Queue using Nagios. For that I am using check_jmx plugin and it gives the output as "JMX OK MessageCount=400". I configured graph for this service, but ...
0
votes
1answer
71 views

Why number of threads show in JMX does not match the tomcat settings?

My tomcat settings: maxThreads="100" minSpareThreads="25" maxSpareThreads="75" According to JMX, my current busy thread is 3 currentThreadsBusy = 3 But currentThreadCount= 100 Why it used up ...
0
votes
1answer
204 views

JBoss 7.1: java.lang.IllegalStateException: No 'jboss' MBeanServer found

My application is deployed on JBoss 7.1 (standalone). I am getting an exception on the following line: MBeanServerConnection server = MBeanServerLocator.locateJBoss(); The exception is: JBoss: ...
0
votes
0answers
13 views

Do ephemeral ports created by attaching JConsole ever close?

When you attach JConsole to a Java process via the process ID it opens an ephemeral port on the JVM for JConsole to connect to. After closing JConsole the JVM port is still listening. Does this port ...
0
votes
0answers
44 views

how to connect to existing MBeanServer running on one JVM with two Client Programs: JMX API

I have created the MBeanServer using MBeanServerFactory.createMBeanServer(); and also created the JMXConnectorServerFactory for that server this will be running in one JVM. I have also registered one ...
0
votes
2answers
183 views

on setting jmx in catalina.sh, tomcat does not start

I am working on CentOS 6.3 64 bit machine. I have set the following in catalina.sh export CATALINA_OPTS="-Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=7010 ...
0
votes
0answers
34 views

Datanucleus, L2 cache and JMX

I'm using GWT and DataNucleus (JPA) for my project. As I know Level 2 Cache is enabled by default in DataNucleus. Is there a way (via JMX) to see the objects retained into the cache ?
1
vote
3answers
184 views

JMX MBean - synchronized on getters and setters

I just want to clarify my understanding about the thread-safety of a JMX MBean. I have a simple MBean like so: public class Person implements PersonMBean { private String name; public ...
0
votes
1answer
55 views

Invoke Threads using JMX

How can I use JMX to invoke a thread using jConsole or jManage ? I want to initially create 5 threads. Let them run. Then when one of them gets stuck, I want to create a new thread to continue ...
0
votes
1answer
268 views

Securing JMXConnectorServerService (jmx-remoting.sar) in JBoss 5.1.0.GA

I've been trying to understand how to secure the JMXConnectorServerService offered by JBoss 5.1.0.GA by default. Currently, if I paste the following URL into JConsole, I can get to JMX directly ...
-5
votes
1answer
72 views

How do I search for a value in a file and print it using Perl?

I am having trouble searching for a value and printing it. This is what I have so far. What am I doing wrong? How do i get the desired output by searching in the output? my $host = $ARGV[0]; my $port ...
1
vote
1answer
156 views

How to safely handle missing local classes in JMX remote clients

I have been playing with a programmatic remote JMX client, connecting to a WebSphere Application Server's MBean server. So far so good, I can connect using an appropriate JMXServiceURL and subscribe ...
0
votes
2answers
96 views

How to extract the number using perl in linux from the output displayed

# This Perl script open connection and call domains # $jar stands for path of jmxterm jar file open JMX, "| java -jar jmxterm-1.0-alpha-4-uber.jar -n"; // jmx jar file #print JMX "help \n"; my ...
2
votes
2answers
174 views

What protocol provider to connect to JMX on WebSphere via SOAP?

I'd like to connect to the JMX server on a WebSphere application server instance using a SOAP over HTTP connector but I don't know where to find a compatible SOAP protocol provider. I get a ...
1
vote
1answer
99 views

Determine Java version through JMX

I'm looking to remotely determine the version of Java that a particular process is running on through JMX. Specifically, I would like something like "1.6.0_26", which is what ...
2
votes
1answer
136 views

Camel + JMX + LDAP authentication with org.apache.camel.jmx.createRmiConnector

all. Have been trying to get remoted JMX with JAAS authentication to work usin Camel version 2.10.3 + Java 6. The app uses Java DSL and is "hand wired", and runs with system properties: ...
0
votes
0answers
53 views

Different AccessControlContexts when executing JMX operations

I have a custom InvocationHandler/MBeanServerForwarder class set on my JMX server so I can grant permissions to specific methods based on the authenticated user. When an operation is invoked in ...
0
votes
1answer
113 views

Enable jmx on tomcat7-maven-plugin

I'm want to enable JMX on tomcat7-maven-plugin. How do I pass in CATALINA_OPTS to plugin configuration?
0
votes
1answer
42 views

Enterprise manager 12c jmx operations

Wanted to know if OEM Cloud Control 12c supports Custom JMX operations as in JConsole. I've instrumented my java application to add some JMX Operations which take in a String as parameter, does some ...
0
votes
1answer
35 views

Custom JMXAuthenticator and Tomcat?

I want to know if it is possible to use custom JMXAuthenticator in Tomcat. From this link http://tomcat.apache.org/tomcat-6.0-doc/monitoring.html, I know Tomcat can enable JMX remote with ...
0
votes
1answer
222 views

Monitoring JMX attributes with nagios check_jmx plugin

I am monitoring JMX attributes with nagios plugin check_jmx. This plugin spawns mutiple processes named JMXQuery and the system hangs after that. What is the reason for that and how this plugin ...
0
votes
0answers
228 views

Trying to access web application data using JMX in Tomcat 7

I'm trying to allow information gathering from my web application using jmx, I'm using Tomcat 7. I followed this tutorial Besides the part about the mbean-descriptor.xml and server.xml that seems ...
1
vote
2answers
169 views

Access Camel MBeans in JConsole exposed via WebSphere 7

I'm trying to expose Apache Camels MBeans through JMX so that I can manage the deployed Camel instance in a WebSphere Application Server (7.0). Actually, I don't know if this is even related to ...
0
votes
1answer
102 views

Profiling Camel routes using JConsole

I have an application consisting of number of Camel routes; I would need to profile them using JConsole. I have noticed upon bringing up the JConsole and selecting the local JVM that is running these ...
0
votes
0answers
46 views

JMX client query

Please help answer the below. Which of the following acts as JMX client Weblogic Administration Console WLST WLNav
0
votes
1answer
190 views

monitor JDBC connections

I am trying to monitor JDBC connections in tomcat using JMX. But it is giving information only regarding the Datasource resources, I want the status of connection defined in Database.properties ...
0
votes
1answer
18 views

Query regarding JMX

Need answers to below two questions: Q1) Which JMX layer consists of resources Options: 1.Agent 2.Instrumentation 3.Distributed Services 4.None and Q2) JMX does not contain Options: ...

1 2 3 4 5 18