ActiveMQ 获取消息数据

ActiveMQ版本:apache-activemq-5.5.1


1.修改配置文件,开放ActiveMQ的监控功能

step1:修改${ACTIVEMQ_HOME}/conf/activemq.xml


step2:修改启动脚本${ACTIVEMQ_HOME}/bin/activemq,找到下面几行,解除注释


                                                                           ↓


step3:重启服务


2.编写Java代码

step1:连接到activemq的JMX服务

RemoteJMXBrokerFacade createConnector = new RemoteJMXBrokerFacade();
// 填写链接属性
System.setProperty("webconsole.jmx.url","service:jmx:rmi:///jndi/rmi://127.0.0.1:11099/jmxrmi");
System.setProperty("webconsole.jmx.user", "admin");
System.setProperty("webconsole.jmx.password", "activemq");
// 创建配置
SystemPropertiesConfiguration configuration = new SystemPropertiesConfiguration();
// 创建链接
createConnector.setConfiguration(configuration);


step2:获取 Queue的数据

Collection<QueueViewMBean> queueViewList = createConnector.getQueues();
for (QueueViewMBean queueViewMBean : queueViewList) {
<span style="white-space:pre">	</span>System.out.println("Queue Name = " + queueViewMBean.getName());
<span style="white-space:pre">	</span>System.out.println("PendingMgs = " + queueViewMBean.getQueueSize());
<span style="white-space:pre">	</span>System.out.println("ConsumerCount = "+ queueViewMBean.getConsumerCount());
<span style="white-space:pre">	</span>System.out.println("DequeueCount = "<span style="white-space:pre">	</span>+ queueViewMBean.getDequeueCount());
<span style="white-space:pre">	</span>System.out.println("EnqueueCount = "<span style="white-space:pre">	</span>+ queueViewMBean.getEnqueueCount());
<span style="white-space:pre">	</span>System.out.println("MemoryPercentUsage = "+ queueViewMBean.getMemoryPercentUsage());
<span style="white-space:pre">	</span>System.out.println("MemoryLimit = " + queueViewMBean.getMemoryLimit());
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值