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();
}
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();
}
Aggregations