5.174. 통계
이름 | 요약 |
---|---|
| 통계 목록을 검색합니다. |
5.174.1. GET나열
통계 목록을 검색합니다.
예를 들어 가상 머신의 statistics를 검색하려면 다음과 같은 요청을 보냅니다.
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>
이름 | 유형 | direction | 요약 |
---|---|---|---|
| in | 반환할 최대 통계 수를 설정합니다. | |
| out |
5.174.1.1. 최대
반환할 최대 통계 수를 설정합니다. 지정하지 않으면 모든 통계가 반환됩니다.