JMX activemq (1)

Source: Internet
Author: User

We know that the management interface of activemq broker is provided through JMX.

A simple access method is to enter

service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi

Note that:

1. The default JMX function is not enabled. You need to add usejmx = "true" to the broker configuration of activemq. xml"

2. In managementcontext, change it to createconnector = "true". (You can also modify the JMX port and domain here)

(See http://activemq.apache.org/jmx.html)

It is not easy to operate through jconsole. In particular, we need to integrate the management of brokers and queue into our management system.

At this time, we need to use the JMX programming interface to interact with the broker.

You can first write a small program to see what is provided in the broker's JMX.

package kk;import java.util.Iterator;import java.util.Set;import javax.management.MBeanAttributeInfo;import javax.management.MBeanInfo;import javax.management.MBeanOperationInfo;import javax.management.MBeanServerConnection;import javax.management.ObjectInstance;import javax.management.ObjectName;import javax.management.remote.JMXConnector;import javax.management.remote.JMXConnectorFactory;import javax.management.remote.JMXServiceURL;public class TestJMX {public static void main(String[] args) throws Exception {String surl = "service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi";JMXServiceURL url = new JMXServiceURL(surl);JMXConnector jmxc = JMXConnectorFactory.connect(url, null);MBeanServerConnection mbsc = jmxc.getMBeanServerConnection();System.out.println("Domains:---------------");String domains[] = mbsc.getDomains();for (int i = 0; i < domains.length; i++) {System.out.println("\tDomain[" + i + "] = " + domains[i]);}System.out.println("all ObjectName:---------------");Set<ObjectInstance> set = mbsc.queryMBeans(null, null);for (Iterator<ObjectInstance> it = set.iterator(); it.hasNext();) {ObjectInstance oi = (ObjectInstance) it.next();System.out.println("\t" + oi.getObjectName());}System.out.println("org.apache.activemq:BrokerName=localhost,Type=Broker:---------------");ObjectName mbeanName = new ObjectName("org.apache.activemq:BrokerName=localhost,Type=Broker");MBeanInfo info = mbsc.getMBeanInfo(mbeanName);System.out.println("Class: " + info.getClassName());if (info.getAttributes().length > 0){for(MBeanAttributeInfo m : info.getAttributes())System.out.println("\t ==> Attriber:" + m.getName());}if (info.getOperations().length > 0){for(MBeanOperationInfo m : info.getOperations())System.out.println("\t ==> Operation:" + m.getName());}jmxc.close();}}

Output result:

Domains:---------------Domain[0] = JMImplementationDomain[1] = com.sun.managementDomain[2] = java.langDomain[3] = org.apache.activemqDomain[4] = java.util.loggingall ObjectName:---------------java.lang:type=OperatingSystemjava.lang:type=MemoryPool,name=Perm Genjava.lang:type=MemoryJMImplementation:type=MBeanServerDelegateorg.apache.activemq:BrokerName=localhost,Type=Producer,destinationType=Queue,destinationName=kk.qq,clientId=ID_bsb3-1381-1372146822218-0_1,producerId=ID_bsb3-1381-1372146822218-1_1_1_1org.apache.activemq:BrokerName=localhost,Type=Connection,ConnectorName=openwire,Connection=ID_bsb3-1381-1372146822218-0_1org.apache.activemq:BrokerName=localhost,Type=Subscription,persistentMode=Non-Durable,destinationType=Queue,destinationName=kk.qq,clientId=ID_bsb3-1381-1372146822218-0_1,consumerId=ID_bsb3-1381-1372146822218-1_1_1_1org.apache.activemq:BrokerName=localhost,Type=Connection,ConnectorName=openwire,ViewType=address,Name=tcp_//127.0.0.1_1347java.lang:type=GarbageCollector,name=MarkSweepCompactorg.apache.activemq:BrokerName=localhost,Type=Brokerorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Producer.Topic.kk.dporg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Topicjava.lang:type=MemoryManager,name=CodeCacheManagerorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Connectionorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Queueorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Consumer.Topic.kk.dporg.apache.activemq:BrokerName=localhost,Type=Connection,ConnectorName=openwire,Connection=ID_bsb3-1346-1372146798953-0_1java.lang:type=Compilationorg.apache.activemq:BrokerName=localhost,Type=Connection,ConnectorName=openwire,ViewType=address,Name=tcp_//127.0.0.1_1382java.util.logging:type=Loggingjava.lang:type=MemoryPool,name=Tenured Genorg.apache.activemq:BrokerName=localhost,Type=Subscription,persistentMode=Non-Durable,destinationType=Topic,destinationName=ActiveMQ.Advisory.TempQueue_ActiveMQ.Advisory.TempTopic,clientId=ID_bsb3-1346-1372146798953-0_1,consumerId=ID_bsb3-1346-1372146798953-1_1_-1_1java.lang:type=MemoryPool,name=Survivor Spacejava.lang:type=Runtimeorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Producer.Queue.kk.qqjava.lang:type=GarbageCollector,name=Copyorg.apache.activemq:BrokerName=localhost,Type=Queue,Destination=kk.qqorg.apache.activemq:BrokerName=localhost,Type=Subscription,persistentMode=Durable,subscriptionID=kk-dp-dc,destinationType=Topic,destinationName=kk.dp,clientId=kk-dpjava.lang:type=MemoryPool,name=Eden Spaceorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=ActiveMQ.Advisory.Consumer.Queue.kk.qqjava.lang:type=Threadingorg.apache.activemq:BrokerName=localhost,Type=Topic,Destination=kk.dpcom.sun.management:type=HotSpotDiagnosticjava.lang:type=ClassLoadingorg.apache.activemq:BrokerName=localhost,Type=Subscription,persistentMode=Non-Durable,destinationType=Topic,destinationName=ActiveMQ.Advisory.TempQueue_ActiveMQ.Advisory.TempTopic,clientId=ID_bsb3-1381-1372146822218-0_1,consumerId=ID_bsb3-1381-1372146822218-1_1_-1_1java.lang:type=MemoryPool,name=Code Cacheorg.apache.activemq:BrokerName=localhost,Type=Connector,ConnectorName=openwireorg.apache.activemq:BrokerName=localhost,Type=Broker:---------------Class: org.apache.activemq.broker.jmx.BrokerView ==> Attriber:Uptime ==> Attriber:BrokerVersion ==> Attriber:Slave ==> Attriber:BrokerName ==> Attriber:Persistent ==> Attriber:TransportConnectors ==> Attriber:BrokerId ==> Attriber:Topics ==> Attriber:Queues ==> Attriber:TemporaryTopics ==> Attriber:TemporaryQueues ==> Attriber:TopicSubscribers ==> Attriber:DurableTopicSubscribers ==> Attriber:QueueSubscribers ==> Attriber:TemporaryTopicSubscribers ==> Attriber:TemporaryQueueSubscribers ==> Attriber:InactiveDurableTopicSubscribers ==> Attriber:TopicProducers ==> Attriber:QueueProducers ==> Attriber:TemporaryTopicProducers ==> Attriber:TemporaryQueueProducers ==> Attriber:DynamicDestinationProducers ==> Attriber:TotalEnqueueCount ==> Attriber:TotalDequeueCount ==> Attriber:TotalConsumerCount ==> Attriber:TotalProducerCount ==> Attriber:TotalMessageCount ==> Attriber:MemoryPercentUsage ==> Attriber:MemoryLimit ==> Attriber:StoreLimit ==> Attriber:StorePercentUsage ==> Attriber:TempLimit ==> Attriber:TempPercentUsage ==> Attriber:StatisticsEnabled ==> Attriber:OpenWireURL ==> Attriber:StompURL ==> Attriber:SslURL ==> Attriber:StompSslURL ==> Attriber:VMURL ==> Attriber:DataDirectory ==> Attriber:JMSJobScheduler ==> Operation:gc ==> Operation:stop ==> Operation:enableStatistics ==> Operation:addConnector ==> Operation:removeConnector ==> Operation:addNetworkConnector ==> Operation:removeNetworkConnector ==> Operation:stopGracefully ==> Operation:resetStatistics ==> Operation:disableStatistics ==> Operation:terminateJVM ==> Operation:addTopic ==> Operation:addQueue ==> Operation:removeTopic ==> Operation:removeQueue ==> Operation:createDurableSubscriber ==> Operation:destroyDurableSubscriber ==> Operation:reloadLog4jProperties ==> Operation:getTransportConnectorByType ==> Operation:start

The broker attributes and operations are obtained above, and the attributes and operation lists of other objects can also be obtained.
Based on this, we can get the object objects such as broker, connector, producer, consumer, queue, topic, and subctor, and further operate on them.

To be continued.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.