UVAPI allows developers to query hypervisor servers about available hosts, virtual machines, and their properties.

Examples

The following examples demonstrate how to query a different hypervisors for information about their servers, hosts, and virtual machines.

Loading A VMware Server

This example uses the ConnectorBean object created in the Connecting tutorial, vcb, to load all the top-most server and all of its properties.

01.import com.hyper9.uvapi.types.virt.resources.ComputeResourceListBean;
02.import com.hyper9.uvapi.types.virt.resources.entities.ServerBean;
03. 
04....
05. 
06.// Load the server from the hypervisor and query its
07.// cpu, cpu.max, and status properties.
08.ServerBean vserver = vcb.loadServer(
09.    Arrays.asList("cpu", "cpu.max", "status"));
10. 
11.// Print the server's current CPU usage.
12.System.out.println(String.format("%s out of %s",
13.                                 vserver.getCpu(),
14.                                 vserver.getCpuMax());
15. 
16.// Because the ServerBean is a ComputeResourceContainer it
17.// knows about the status values of the compute resources
18.// it contains. Print out the names of any children that
19.// have a status of red.
20.if (vserver.getStatusRed() != null)
21.{
22.    for (ComputeResource cr : vserver.getStatusRed())
23.    {
24.        System.out.println(cr.getName());
25.    }
26.}
27. 
28....

Notice how we were able to retrieve the server's child statuses? This is true for any resource that implements the ComputeResourceContainerBean or ComputeResourceListBean interfaces.

Loading Hosts From A Xen Server

This example uses the ConnectorBean object created in the Connecting tutorial, xcb, to load all available hosts and all of their properties.

01.import com.hyper9.uvapi.types.virt.resources.ComputeResourceListBean;
02.import com.hyper9.uvapi.types.virt.resources.entities.HostBean;
03. 
04....
05. 
06.// Load all of the hosts known to the hypervisor into a
07.// ComputeResourceListBean<HostBean> list along with
08.// all of their properties (an asterik specifies that
09.// the query should retrieve all known properties of
10.// the queried object type).
11.ComputeResourceListBean<HostBean> xhosts =
12.    xcb.loadAllHosts(Arrays.asList("*"));
13. 
14.// Print out the names of the hosts along with their
15.// CPU and memory statistics.
16.for (HostBean hb : xhosts)
17.{
18.    System.out.println(hb.getName());
19.    System.out.println(String.format("cpu: %s out of %s",
20.                                     hb.getCpu(),
21.                                     hb.getCpuMax());
22.    System.out.println(String.format("mem: %s out of %s",
23.                                     hb.getMem(),
24.                                     hb.getMemMax());
25.}
26. 
27....

Loading VMs From A Hyper-V Server

This example uses the ConnectorBean object created in the Connecting tutorial, hcb, to load all available VMs and all of their properties.

01.import com.hyper9.uvapi.types.virt.resources.ComputeResourceListBean;
02.import com.hyper9.uvapi.types.virt.resources.entities.VirtualMachineBean;
03. 
04....
05. 
06.// Load all of the VMs known to the hypervisor into a
07.// ComputeResourceListBean<VirtualMachineBean> list and
08.// load all of their properties.
09.ComputeResourceListBean<VirtualMachineBean> hvms =
10.    hcb.loadAllVMs(Arrays.asList("*"));
11. 
12.// Print out the names of the VMs and the status of the VM.
13.for (VirtualMachineBean vmb : hvms)
14.{
15.    System.out.println(vmb.getName());
16.    System.out.println(vmb.getStatus());
17.}
18. 
19....

Combining The Results

Querying for data is one thing, but one of the more powerful features of UVAPI is the ability to aggregate statistics across multiple types of resource entities and hypervisors.