Get Load Balancer statistics#
ロードバランサーの統計情報を表示します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://loadbalancer.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://loadbalancer.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v2.0/lbaas/loadbalancers/{loadbalancer_id}/stats
HTTPステータスコード#
正常時:200
エラー時:401, 403, 404, 500
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
loadbalancer_id | path | uuid | 必須 | ロードバランサーID |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
stats | object | 統計情報オブジェクト |
active_connections | integer | 現在のアクティブコネクション数 |
bytes_in | integer | 総受信バイト数 |
bytes_out | integer | 総送信バイト数 |
request_errors | integer | 処理できなかったリスエスト数 |
total_connections | integer | 処理された総コネクション数 |
レスポンス例#
{ "stats": { "active_connections": 0, "bytes_in": 5343, "bytes_out": 95150, "request_errors": 32, "total_connections": 95 } }