Search:

Search all manuals
Search this manual
Manual
Couchbaseクライアントライブラリ: Java 1.0
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
Couchbaseクライアントライブラリ: Java 1.0
Chapters

第8章 統計操作

Couchbase Javaクライアントライブラリは CouchbaseClient に定義されている全てのサーバに関する統計情報の取得をサポートしています。コマンドの要約を以下に示します。

表8.1 Javaクライアントライブラリの統計メソッド

MethodTitle
client.getStats() Get the statistics from all connections
client.getStats(statname) Get the statistics from all connections

API Callclient.getStats()
Asynchronousno
Description Get the database statistics
ReturnsObject ( Binary object )
Arguments 
 None  

getStats() コマンドの一つ目の形式では CouchbaseClient オブジェクトに設定された全てのサーバから統計情報を取得します。統計情報はネストした Map で返却されます。まずサーバのアドレス、そして各サーバの個々の統計情報が格納されます。

API Callclient.getStats(statname)
Asynchronousno
Description Get the database statistics
ReturnsObject ( Binary object )
Arguments 
String statname Group name of a statistic for selecting individual statistic value

getStats() コマンドの二つ目の形式では特定の統計情報グループを MemcachedClient オブジェクトで設定されている全てのサーバから取得します。統計情報はネストした Map で返却されます。まずサーバのアドレス、そして書くサーバの個々の統計情報が格納されます。