Search:

Search all manuals
Search this manual
Manual
Couchbase Server マニュアル 2.0
Community Wiki and Resources
Couchbase Server 2.0をダウンロード
Couchbase 開発者ガイド 2.0
クライアントライブラリ
Couchbase Server フォーラム
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
8 REST APIの利用
Chapter Sections
Chapters

8.10. システムログの使用

Couchbase ServerはREST APIを介して利用可能な様々なメッセージを記録します。これらのログメッセージは任意の方法でそのモジュールによって分類されます。最新のログエントリの一般的なリスト、もしくは特定のカテゴリの最新のログエントリを取得することができます。システムログのURIに対するGETリクエストを実行すると、Couchbase Serverはメッセージのすべてのカテゴリを返します。

メッセージは"info"、 "crit"、または"warn"に分類されます。システムが保護されている場合、ログにアクセスするには管理者の資格情報が必要です。

HTTP Request
GET /pools/default/logs?cat=crit
Host: localhost:8091
Authorization: Basic xxxxxxxxxxxxxxxxxxx
Accept: application/json
X-memcachekv-Store-Client-Specification-Version: 0.1
HTTP Response
201: bucket was created and valid URIs returned
HTTP/1.1
200 OK
Content-Type: application/json
Content-Length: nnn
[
    {
        "cat":"info",
        "date": "",
        "code": "302",
        "message": "Some information for you."
    },
    {
        "cat":"warn",
        "date": "",
        "code": "502",
        "message": "Something needs attention."
    }
]