groonga - An open-source fulltext search engine and column store.

7.3.19. status

7.3.19.1. 名前

status - groongaプロセスの状態表示

7.3.19.2. 書式

status

7.3.19.3. 説明

groonga組込コマンドの一つであるstatusについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。

statusコマンドは、groongaプロセスの状態を表示します。主にgroongaサーバプロセスに対して使用することを想定しています。

7.3.19.4. 引数

ありません。

7.3.19.5. 返値

7.3.19.5.1. json形式

下記の項目がハッシュ形式で出力されます。

``alloc_count``

  groongaプロセスの内部でアロケートされ、まだ解放されてないメモリブロックの数を示します。groongaをbuildする際に、configureオプションで --enable-exact-alloc-countが指定されていたならば、正確な値を返します。それ以外の場合は不正確な値を返す場合があります。

``starttime``

  groongaプロセスが起動した時刻のtvsec値を返します。

``uptime``

  groongaプロセスが起動してから経過した秒数を返します。

7.3.19.6. 例

status
{"alloc_count":104,
 "starttime":1268213679,
 "uptime":1}

Table Of Contents

Previous topic

7.3.18. shutdown

Next topic

7.3.20. suggest

This Page