Show Orchestration Engine Status#

オーケストレーションエンジンのステータスを一覧表示します。

APIエンドポイント#

リージョン APIエンドポイント
西日本リージョン3の場合 https://orchestration.jp-west-3.cloud.global.fujitsu.com
東日本リージョン3の場合 https://orchestration.jp-east-3.cloud.global.fujitsu.com

HTTPメソッドとURI#

GET

/v1/{tenant_id}/services

HTTPステータスコード#

正常時:200

エラー時:403, 503

リクエストパラメータの説明#

名前 In Type デフォルト値
/必須指定
Description
tenant_id path string 必須 プロジェクトID

レスポンスボディ(正常系)の説明#

名前 Type Description
services array エンジンのリスト
binary string エンジンの実行ファイルの名前
created_at string エンジンの作成日時
deleted_at string エンジンの削除日時
engine_id string エンジンのUUID
host string エンジンが起動するホスト
hostname string エンジンが起動するホストの名
id string エンジンのサービスレコードのUUID
1つのエンジンに複数のレコードがある場合があります。
report_interval integer レポート間隔(秒単位)
エンジンの作成終了まで、この間隔でレポートが発行されます。
status string エンジンのステータス
topic string エンジンからのメッセージのトピック
updated_at string エンジンの更新日時

レスポンス例#

{
    "services": [
        {
            "binary": "heat-engine",
            "created_at": "2015-02-03T05:55:59.000000",
            "deleted_at": null,
            "engine_id": "9d9242c3-4b9e-45e1-9e74-7615fbf20e5d",
            "host": "engine-1",
            "hostname": "mrkanag",
            "id": "e1908f44-42f9-483f-b778-bc814072c33d",
            "report_interval": 60,
            "status": "up",
            "topic": "engine",
            "updated_at": "2015-02-03T05:57:59.000000"
        },
        {
            "binary": "heat-engine",
            "created_at": "2015-02-03T06:03:14.000000",
            "deleted_at": null,
            "engine_id": "2d2434bf-adb6-4453-9c6b-b22fb8bd2306",
            "host": "engine",
            "hostname": "mrkanag",
            "id": "582b5657-6db7-48ad-8483-0096350faa21",
            "report_interval": 60,
            "status": "down",
            "topic": "engine",
            "updated_at": "2015-02-03T06:09:55.000000"
        }
    ]
}