第15章 Data Grid Server 統計の設定
Data Grid が metrics
ポイントに、または JMX MBean を介してエクスポートする統計を有効にします。JMX MBean を登録すると、リモートで実行できる管理操作も公開されます。
15.1. Data Grid 統計の有効化
Cache Manager およびキャッシュの統計をエクスポートするように Data Grid を設定します。
Data Grid Server は、デフォルトで Cache Manager の統計を有効にします。キャッシュの統計を明示的に有効にする必要があります。
手順
以下のいずれかの方法で、Data Grid 統計が有効化されるように設定を変更します。
-
宣言型:
statistics="true"
属性を追加します。 -
プログラマティック:
.statistics()
メソッドを呼び出します。
宣言型
<!-- Enables statistics for the Cache Manager. --> <cache-container statistics="true"> <!-- Enables statistics for the named cache. --> <local-cache name="mycache" statistics="true"/> </cache-container>
プログラマティック
GlobalConfiguration globalConfig = new GlobalConfigurationBuilder() //Enables statistics for the Cache Manager. .cacheContainer().statistics(true) .build(); Configuration config = new ConfigurationBuilder() //Enables statistics for the named cache. .statistics().enable() .build();