7

その JVM インスタンスから JVM の JMX サーバーにアクセスすることは可能ですか? または、標準のソケット/ポート リモート インターフェイスを介して接続する必要がありますか?

+----------------------------------------+   Option 2: Connect
|       +---------------------------+    |   through sockets like
|       | My Notification Listener  |+----->----------+ a remote
|       |                           |    |            | monitor.
|       +---------------------------+    |            |
|                           +            |            |
|          Option 1: connect|            |            |
|          to the internal  |            |            |
|          JMX server. I'm  |            |            |
|          trying to find   |            |            |
|          if this is possible.          |            |
|                           |            |            |
|                           |            |            |
|    A single JVM instance. |            |            |
|                           |            |            |
|        +------------+-----v------+--+  |            |
|        |            | GuageMXBean|<-+<--------------+
|        |            +------------+  |  |
|        | JMX MXBean Server          |  |
|        +----------------------------+  |
+----------------------------------------+

コンテキスト: JVM の状態、特にメモリ使用量に応答し、作業データをディスクにキャッシュして RAM に保持する「インテリジェント」システムを実装しようとしています。JMX リスナーの設定は、次のようなバックグラウンド スレッドを実行するよりも洗練されているように見えました。

Runtime RTime = Runtime.getRuntime();
while(!shutdown)
{
    if((RTime.totalMemory / RTime.maxMemory) > upperThreshold) cachmode = CACHETODISK;
    if((RTime.totalMemory / RTime.maxMemory) < lowerThreshold) cachmode = CACHETORAM;
    Sleep(1000);
}

それが違いを生むなら、デスクトップアプリケーション。

これは私の最初のSO投稿なので、質問の改善などのヒントは大歓迎です。

4

1 に答える 1

7

このコードを使用して、プラットフォーム MBean サーバーを簡単に取得できます。

ManagementFactory.getPlatformMBeanServer();

JVM の状態に関する情報を収集するための便利な MBean が多数あります。ここに簡単な例があります

List<GarbageCollectorMXBean> gcBeans = ManagementFactory.getGarbageCollectorMXBeans(); 

// generate heap state report 
String report = "";     
for (GarbageCollectorMXBean gc : gcBeans) {
    report += "\nGC Name         : " + gc.getName();
    report += "\nCollection count: " + gc.getCollectionCount();
    report += "\nCollection Time : " + gc.getCollectionTime() + " milli seconds";
    report += "\n";
}       

List<MemoryPoolMXBean> memoryPoolMXBeans = ManagementFactory.getMemoryPoolMXBeans();
for (MemoryPoolMXBean pool : memoryPoolMXBeans) {
    report += "\nMemory Pool: " + pool.getName();
    MemoryUsage usage = pool.getUsage();
    report += "\n   Max : " + usage.getMax() / 1024000 + "MB"; 
    report += "\n   Used: " + usage.getUsed() / 1024000 + "MB";
    report += "\n";
}
于 2012-12-22T04:54:47.270 に答える