Merge "update the description of hypervisor statistics response"

This commit is contained in:
Zuul 2018-06-29 05:44:47 +00:00 committed by Gerrit Code Review
commit 4c9f63463a
2 changed files with 63 additions and 9 deletions

View File

@ -159,16 +159,16 @@ Response
- hypervisor_statistics: hypervisor_statistics
- count: hypervisor_count
- current_workload: current_workload
- disk_available_least: disk_available_least
- free_disk_gb: hypervisor_free_disk_gb
- free_ram_mb: free_ram_mb
- local_gb: local_gb
- local_gb_used: local_gb_used
- memory_mb: memory_mb
- memory_mb_used: memory_mb_used
- disk_available_least: disk_available_least_total
- free_disk_gb: hypervisor_free_disk_gb_total
- free_ram_mb: free_ram_mb_total
- local_gb: local_gb_total
- local_gb_used: local_gb_used_total
- memory_mb: memory_mb_total
- memory_mb_used: memory_mb_used_total
- running_vms: running_vms_total
- vcpus: hypervisor_vcpus
- vcpus_used: hypervisor_vcpus_used
- vcpus: hypervisor_vcpus_total
- vcpus_used: hypervisor_vcpus_used_total
**Example Show Hypervisor Statistics: JSON response**

View File

@ -2233,6 +2233,12 @@ disk_available_least:
in: body
required: true
type: integer
disk_available_least_total:
description: |
The actual free disk on all hypervisors(in GB).
in: body
required: true
type: integer
disk_bus:
description: |
Disk bus type, some hypervisors (currently only libvirt) support
@ -3111,6 +3117,12 @@ free_ram_mb:
in: body
required: true
type: integer
free_ram_mb_total:
description: |
The free RAM on all hypervisors(in MB).
in: body
required: true
type: integer
from_port:
description: |
The port at start of range.
@ -3390,6 +3402,12 @@ hypervisor_free_disk_gb:
in: body
required: true
type: integer
hypervisor_free_disk_gb_total:
description: |
The free disk remaining on all hypervisors(in GB).
in: body
required: true
type: integer
hypervisor_hostname:
description: |
The hypervisor host name provided by the Nova virt driver. For the Ironic driver,
@ -3497,12 +3515,24 @@ hypervisor_vcpus:
in: body
required: true
type: integer
hypervisor_vcpus_total:
description: |
The number of vcpu on all hypervisors.
in: body
required: true
type: integer
hypervisor_vcpus_used:
description: |
The number of vcpu used in this hypervisor.
in: body
required: true
type: integer
hypervisor_vcpus_used_total:
description: |
The number of vcpu used on all hypervisors.
in: body
required: true
type: integer
hypervisor_version:
description: |
The hypervisor version.
@ -4101,12 +4131,24 @@ local_gb_simple_tenant_usage_optional:
in: body
required: false
type: integer
local_gb_total:
description: |
The disk on all hypervisors(in GB).
in: body
required: true
type: integer
local_gb_used:
description: |
The disk used in this hypervisor(in GB).
in: body
required: true
type: integer
local_gb_used_total:
description: |
The disk used on all hypervisors(in GB).
in: body
required: true
type: integer
lock:
description: |
The action to lock a server.
@ -4187,12 +4229,24 @@ memory_mb_simple_tenant_usage_optional:
in: body
required: false
type: integer
memory_mb_total:
description: |
The memory of all hypervisors(in MB).
in: body
required: true
type: integer
memory_mb_used:
description: |
The memory used in this hypervisor(in MB).
in: body
required: true
type: integer
memory_mb_used_total:
description: |
The memory used on all hypervisors(in MB).
in: body
required: true
type: integer
message:
description: |
The related error message for when an action fails.