mirror of https://github.com/apache/activemq.git
AMQ-4760: Added dstat command to activemq karaf commands.
This commit is contained in:
parent
a80a1857d0
commit
ee8b51b27b
|
@ -81,13 +81,13 @@ public class DstatCommand extends AbstractJmxCommand {
|
|||
}
|
||||
}
|
||||
|
||||
private void displayAllDestinations() throws IOException, Exception {
|
||||
private void displayAllDestinations() throws Exception {
|
||||
|
||||
String query = JmxMBeansUtil.createQueryString(queryString, "*");
|
||||
List<?> queueList = JmxMBeansUtil.queryMBeans(createJmxConnection(), query);
|
||||
|
||||
final String header = "%20s %10s %10s %10s %10s";
|
||||
final String tableRow = "%20s %10d %10d %10d %10d";
|
||||
final String header = "%-60s %10s %10s %10s %10s";
|
||||
final String tableRow = "%-60s %10d %10d %10d %10d";
|
||||
|
||||
context.print(String.format(Locale.US, header, "Name", "Pending", "Consumers", "Enqueued", "Dequeued"));
|
||||
|
||||
|
@ -106,13 +106,13 @@ public class DstatCommand extends AbstractJmxCommand {
|
|||
}
|
||||
}
|
||||
|
||||
private void displayQueueStats() throws IOException, Exception {
|
||||
private void displayQueueStats() throws Exception {
|
||||
|
||||
String query = JmxMBeansUtil.createQueryString(queryString, "Queue");
|
||||
List<?> queueList = JmxMBeansUtil.queryMBeans(createJmxConnection(), query);
|
||||
|
||||
final String header = "%20s %10s %10s %10s %10s";
|
||||
final String tableRow = "%20s %10d %10d %10d %10d";
|
||||
final String header = "%-60s %10s %10s %10s %10s";
|
||||
final String tableRow = "%-60s %10d %10d %10d %10d";
|
||||
|
||||
context.print(String.format(Locale.US, header, "Name", "Pending", "Consumers", "Enqueued", "Dequeued"));
|
||||
|
||||
|
@ -131,13 +131,13 @@ public class DstatCommand extends AbstractJmxCommand {
|
|||
}
|
||||
}
|
||||
|
||||
private void displayTopicStats() throws IOException, Exception {
|
||||
private void displayTopicStats() throws Exception {
|
||||
|
||||
String query = JmxMBeansUtil.createQueryString(queryString, "Topic");
|
||||
List<?> topicsList = JmxMBeansUtil.queryMBeans(createJmxConnection(), query);
|
||||
|
||||
final String header = "%20s %10s %10s %10s";
|
||||
final String tableRow = "%20s %10d %10d %10d";
|
||||
final String header = "%-60s %10s %10s %10s";
|
||||
final String tableRow = "%-60s %10d %10d %10d";
|
||||
|
||||
context.print(String.format(Locale.US, header, "Name", "Consumers", "Enqueued", "Dequeued"));
|
||||
|
||||
|
|
|
@ -20,134 +20,160 @@
|
|||
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
|
||||
xmlns:shell="http://karaf.apache.org/xmlns/shell/v1.0.0">
|
||||
|
||||
<!-- ActiveMQ List Command -->
|
||||
<bean id="listcommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="listaction"/>
|
||||
</bean>
|
||||
<!-- ActiveMQ List Command -->
|
||||
<bean id="listcommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="listaction"/>
|
||||
</bean>
|
||||
|
||||
<service ref="listcommand" activation="lazy" >
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="list"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
<service ref="listcommand" activation="lazy">
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="list"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
|
||||
<bean id="listaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.ListCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="listaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.ListCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- ActiveMQ Query Command -->
|
||||
<bean id="querycommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="queryaction"/>
|
||||
</bean>
|
||||
<!-- ActiveMQ Query Command -->
|
||||
<bean id="querycommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="queryaction"/>
|
||||
</bean>
|
||||
|
||||
<service ref="querycommand" activation="lazy" >
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="query"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
<service ref="querycommand" activation="lazy">
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="query"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
|
||||
<bean id="queryaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.QueryCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="queryaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.QueryCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- ActiveMQ Browse Command -->
|
||||
<bean id="browsecommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="browseaction"/>
|
||||
</bean>
|
||||
<!-- ActiveMQ Browse Command -->
|
||||
<bean id="browsecommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="browseaction"/>
|
||||
</bean>
|
||||
|
||||
<service ref="browsecommand" activation="lazy" >
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="browse"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
<service ref="browsecommand" activation="lazy">
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="browse"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
|
||||
<bean id="browseaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.AmqBrowseCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="browseaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.AmqBrowseCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- ActiveMQ Bstat Command -->
|
||||
<bean id="bstatcommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="bstataction"/>
|
||||
</bean>
|
||||
<!-- ActiveMQ Bstat Command -->
|
||||
<bean id="bstatcommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="bstataction"/>
|
||||
</bean>
|
||||
|
||||
<service ref="bstatcommand" activation="lazy" >
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="bstat"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
<service ref="bstatcommand" activation="lazy">
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="bstat"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
|
||||
<bean id="bstataction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.BstatCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="bstataction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.BstatCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- ActiveMQ Purge Command -->
|
||||
<bean id="purgecommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="purgeaction"/>
|
||||
</bean>
|
||||
<!-- ActiveMQ Purge Command -->
|
||||
<bean id="purgecommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="purgeaction"/>
|
||||
</bean>
|
||||
|
||||
<service ref="purgecommand" activation="lazy" >
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="purge"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
<service ref="purgecommand" activation="lazy">
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="purge"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
|
||||
<bean id="purgeaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.PurgeCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="purgeaction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.PurgeCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- ActiveMQ Dstat Command -->
|
||||
<bean id="dstatcommand" class="org.apache.activemq.karaf.commands.ActiveMQCommand">
|
||||
<property name="blueprintContainer" ref="blueprintContainer"/>
|
||||
<property name="blueprintConverter" ref="blueprintConverter"/>
|
||||
<property name="actionId" value="dstataction"/>
|
||||
</bean>
|
||||
|
||||
<service ref="dstatcommand" activation="lazy">
|
||||
<interfaces>
|
||||
<value>org.apache.felix.service.command.Function</value>
|
||||
<value>org.apache.karaf.shell.console.CompletableFunction</value>
|
||||
</interfaces>
|
||||
<service-properties>
|
||||
<entry key="osgi.command.scope" value="activemq"/>
|
||||
<entry key="osgi.command.function" value="dstat"/>
|
||||
</service-properties>
|
||||
</service>
|
||||
|
||||
<bean id="dstataction" class="org.apache.activemq.karaf.commands.ActiveMQCommandSupport"
|
||||
activation="lazy"
|
||||
scope="prototype">
|
||||
<property name="command">
|
||||
<bean class="org.apache.activemq.console.command.DstatCommand"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</blueprint>
|
||||
|
|
Loading…
Reference in New Issue