5.174. 統計
Name | 概要 |
---|---|
| 統計のリストを取得します。 |
5.174.1. list GET
統計のリストを取得します。
たとえば、仮想マシン 123
の統計を取得するには、以下のようなリクエストを送信します。
GET /ovirt-engine/api/vms/123/statistics
結果は以下のようになります。
<statistics> <statistic href="/ovirt-engine/api/vms/123/statistics/456" id="456"> <name>memory.installed</name> <description>Total memory configured</description> <kind>gauge</kind> <type>integer</type> <unit>bytes</unit> <values> <value> <datum>1073741824</datum> </value> </values> <vm href="/ovirt-engine/api/vms/123" id="123"/> </statistic> ... </statistics>
URI の末尾に ID を指定することで、統計の一部のみを取得できます。つまり、以下のようになります。
GET /ovirt-engine/api/vms/123/statistics/456
出力:
<statistic href="/ovirt-engine/api/vms/123/statistics/456" id="456"> <name>memory.installed</name> <description>Total memory configured</description> <kind>gauge</kind> <type>integer</type> <unit>bytes</unit> <values> <value> <datum>1073741824</datum> </value> </values> <vm href="/ovirt-engine/api/vms/123" id="123"/> </statistic>
Name | タイプ | 方向 | 概要 |
---|---|---|---|
| In | 返す統計の最大数を設定します。 | |
| Out |
5.174.1.1. max
返す統計の最大数を設定します。指定されていない場合は、すべての統計が返されます。