2014-09-27 114 views
0

我已经编写了一个代码,通过JMX Bean从我的JVM应用程序公开数据。我可以在JConsole中看到这些值。我如何从jconsole获取这些值,是否需要编写另一个程序?JMX和REST API。我怎样才能在他们之间架起一座桥梁?

而且,我该如何使用REST API将这些JMX Bean数据显示为Rich UI格式?

我已经使用Jolokia,我收到了这个回复。我没有得到任何信息。

我在我的代码中使用jolokia作为JVM参数。但我得到的唯一答复是这

{ 
timestamp: 1411988073, 
status: 200, 
request: { 
type: "version" 
}, 
value: { 
protocol: "7.2", 
config: { 
maxDepth: "15", 
maxCollectionSize: "1000", 
maxObjects: "0", 
discoveryEnabled: "true", 
agentContext: "/jolokia", 
historyMaxEntries: "10", 
agentId: "10.91.240.11-4524-5f2e712f-jvm", 
agentType: "jvm", 
debug: "false", 
debugMaxEntries: "100" 
}, 
agent: "1.2.2", 
info: { } 
} 
} 

为什么没有信息?

我的代码是这样的:

/* 
* Main.java - main class for the Hello MBean and QueueSampler MXBean example. 
* Create the Hello MBean and QueueSampler MXBean, register them in the platform 
* MBean server, then wait forever (or until the program is interrupted). 
*/ 

package com.example; 

public class Main implements HelloMBean { 
public static void main(String[] args) throws Exception { 
    // Get the Platform MBean Server 
    MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); 

    // Construct the ObjectName for the Hello MBean we will register 
    ObjectName mbeanName = new ObjectName(
      "com.example:type=Tiger, name=Info"); 

    // Create the Hello World MBean 
    Hello mbean = new Hello(); 
    System.out.println(mbean); 
    System.out.println(mbeanName); 
    // Register the Hello World MBean 
    mbs.registerMBean(mbean, mbeanName); 
    if (System.getProperty("com.sun.management.jmxremote") == null) { 
     System.out.println("JMX remote is disabled"); 
    } else { 
     String portString = System.getProperty("com.sun.management.jmxremote.port"); 
     if (portString != null) { 
      System.out.println("JMX running on port " 
       + Integer.parseInt(portString)); 
     }} 


    // Wait forever 
    System.out.println("Waiting for incoming requests..."); 
    Thread.sleep(Long.MAX_VALUE); 
} 

/* 
* private final String name = "Reginald"; private int cacheSize = 
* DEFAULT_CACHE_SIZE; private static final int DEFAULT_CACHE_SIZE = 200; 
*/ 
@Override 
public void sayHello() { 
    // TODO Auto-generated method stub 

} 

@Override 
public int add(int x, int y) { 
    // TODO Auto-generated method stub 
    return 0; 
} 

@Override 
public String getName() { 
    // TODO Auto-generated method stub 
    return null; 
} 

@Override 
public int getCacheSize() { 
    // TODO Auto-generated method stub 
    return 0; 
} 

@Override 
public void setCacheSize(int size) { 
    // TODO Auto-generated method stub 

} 
} 

接口为:

package com.example; 

public interface HelloMBean { 
public void sayHello(); 
public int add(int x, int y); 
public String getName(); 

// a read-write attribute called CacheSize of type int 
public int getCacheSize(); 
public void setCacheSize(int size); 
} 

而且因为这实现:

package com.example; 

import javax.management.*; 

public class Hello 
extends NotificationBroadcasterSupport implements HelloMBean { 

public void sayHello() { 
System.out.println("hello, world"); 
} 

public int add(int x, int y) { 
return x + y; 
} 


public String getName() { 
return this.name; 
} 


public int getCacheSize() { 
return this.cacheSize; 
} 

public synchronized void setCacheSize(int size) { 
int oldSize = this.cacheSize; 
this.cacheSize = size; 


System.out.println("Cache size now " + this.cacheSize); 


Notification n = 
    new AttributeChangeNotification(this, 
        sequenceNumber++, 
        System.currentTimeMillis(), 
        "CacheSize changed", 
        "CacheSize", 
        "int", 
        oldSize, 
        this.cacheSize); 


sendNotification(n); 
} 

@Override 
public MBeanNotificationInfo[] getNotificationInfo() { 
String[] types = new String[] { 
    AttributeChangeNotification.ATTRIBUTE_CHANGE 
}; 
String name = AttributeChangeNotification.class.getName(); 
String description = "An attribute of this MBean has changed"; 
MBeanNotificationInfo info = 
    new MBeanNotificationInfo(types, name, description); 
return new MBeanNotificationInfo[] {info}; 
} 

private final String name = "Reginald"; 
private int cacheSize = DEFAULT_CACHE_SIZE; 
private static final int DEFAULT_CACHE_SIZE = 200; 


private long sequenceNumber = 1; 
} 

回答

1

看看一个Jolokia;它暴露的MBean为JSON通过HTTP ...

...这是一个基于代理的方法,并立与JSR-160,但采用更开放的HTTP其运输业务,其中有效载荷数据以JSON序列化。这为不同的非Java客户端打开了一个全新的世界。除了此协议开关外,Jolokia为JMX远程处理提供了新功能,这些功能在JSR-160连接器中不可用:批量请求允许通过单个远程服务器往返进行多个JMX操作。细粒度的安全机制可以限制对特定JMX操作的JMX访问。 JSR-160代理模式或历史追踪等其他功能也是Jolokia所特有的。

编辑:

您需要发出一个查询;例如如果你的域名是测试(例如用对象名称test:name=counter,发出该查询http://127.0.0.1:7777/jolokia/read/test:name=counter

或者,使用http://127.0.0.1:7777/jolokia/read/test:*你会得到下test域所有MBean。

一个MBean见the documentation

+0

虽然这个链接可能会回答这个问题,最好在这里包含答案的重要部分,并提供参考链接。如果链接页面发生变化,链接专有的答案可能会失效。 – 2014-09-27 09:47:10

+0

我认为这有点苛刻。完善的项目 – 2014-09-27 15:49:13

+0

该评论是ans的标准评论我们提供了一个链接而且很少有其他的东西。没有对Jolokia暗示或打算的判断。 – 2014-09-27 16:02:53