Search in sources :

Example 6 with HostsService

use of org.ovirt.engine.sdk4.services.HostsService in project ovirt-engine-sdk-java by oVirt.

the class RemoveHost method main.

public static void main(String[] args) throws Exception {
    // Create the connection to the server:
    Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
    // Find the service that manages hosts:
    HostsService hostsService = connection.systemService().hostsService();
    // Find the host:
    Host host = hostsService.list().search("name=myhost").send().hosts().get(0);
    // Find the service that manages the host:
    HostService hostService = hostsService.hostService(host.id());
    // If the host isn't down or in maintenance then move it to maintenance:
    if (host.status() != HostStatus.MAINTENANCE) {
        hostService.deactivate().send();
    }
    // Remove the host:
    hostService.remove().send();
    // Close the connection to the server:
    connection.close();
}
Also used : HostService(org.ovirt.engine.sdk4.services.HostService) Connection(org.ovirt.engine.sdk4.Connection) HostsService(org.ovirt.engine.sdk4.services.HostsService) Host(org.ovirt.engine.sdk4.types.Host)

Example 7 with HostsService

use of org.ovirt.engine.sdk4.services.HostsService in project ovirt-engine-sdk-java by oVirt.

the class ListHostStatistics method main.

public static void main(String[] args) throws Exception {
    // Create the connection to the server:
    Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
    // Find the host:
    HostsService hostsService = connection.systemService().hostsService();
    Host host = hostsService.list().search("name=myhost").send().hosts().get(0);
    // Follow the link to the statistics and print their names and values:
    List<Statistic> stats = connection.followLink(host.statistics());
    for (Statistic stat : stats) {
        System.out.printf("%s: %s\n", stat.name(), stat.values().get(0).datum());
    }
    // Close the connection to the server:
    connection.close();
}
Also used : Statistic(org.ovirt.engine.sdk4.types.Statistic) Connection(org.ovirt.engine.sdk4.Connection) HostsService(org.ovirt.engine.sdk4.services.HostsService) Host(org.ovirt.engine.sdk4.types.Host)

Aggregations

HostsService (org.ovirt.engine.sdk4.services.HostsService)7 Connection (org.ovirt.engine.sdk4.Connection)6 HostService (org.ovirt.engine.sdk4.services.HostService)6 Host (org.ovirt.engine.sdk4.types.Host)6 ArrayList (java.util.ArrayList)1 Test (org.junit.Test)1 FenceAgentService (org.ovirt.engine.sdk4.services.FenceAgentService)1 FenceAgentsService (org.ovirt.engine.sdk4.services.FenceAgentsService)1 Agent (org.ovirt.engine.sdk4.types.Agent)1 IscsiDetails (org.ovirt.engine.sdk4.types.IscsiDetails)1 Option (org.ovirt.engine.sdk4.types.Option)1 Statistic (org.ovirt.engine.sdk4.types.Statistic)1