2016-06-14 09:49:24 -05:00
|
|
|
# Copyright 2012-2013 OpenStack Foundation
|
2013-03-11 18:07:48 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
"""Hypervisor action implementations"""
|
|
|
|
|
2020-11-17 12:33:40 +00:00
|
|
|
import json
|
2015-02-20 22:23:30 -08:00
|
|
|
import re
|
2016-05-13 16:14:09 -05:00
|
|
|
|
2024-05-09 17:51:02 +01:00
|
|
|
from openstack import exceptions as sdk_exceptions
|
2022-08-15 23:52:55 +00:00
|
|
|
from openstack import utils as sdk_utils
|
2020-11-17 12:33:40 +00:00
|
|
|
from osc_lib.cli import format_columns
|
2016-05-13 17:27:12 -05:00
|
|
|
from osc_lib.command import command
|
2020-12-03 13:07:03 +00:00
|
|
|
from osc_lib import exceptions
|
2016-05-13 16:14:09 -05:00
|
|
|
from osc_lib import utils
|
2013-03-11 18:07:48 -05:00
|
|
|
|
2021-07-27 11:00:06 +01:00
|
|
|
from openstackclient.common import pagination
|
2016-05-14 15:12:57 +08:00
|
|
|
from openstackclient.i18n import _
|
2013-03-11 18:07:48 -05:00
|
|
|
|
|
|
|
|
2022-08-15 23:52:55 +00:00
|
|
|
def _get_hypervisor_columns(item, client):
|
|
|
|
column_map = {'name': 'hypervisor_hostname'}
|
|
|
|
hidden_columns = ['location', 'servers']
|
|
|
|
|
|
|
|
if sdk_utils.supports_microversion(client, '2.88'):
|
2023-05-08 10:48:54 +01:00
|
|
|
hidden_columns.extend(
|
|
|
|
[
|
|
|
|
'current_workload',
|
|
|
|
'disk_available',
|
|
|
|
'local_disk_free',
|
|
|
|
'local_disk_size',
|
|
|
|
'local_disk_used',
|
|
|
|
'memory_free',
|
|
|
|
'memory_size',
|
|
|
|
'memory_used',
|
|
|
|
'running_vms',
|
|
|
|
'vcpus_used',
|
|
|
|
'vcpus',
|
|
|
|
]
|
|
|
|
)
|
2022-08-15 23:52:55 +00:00
|
|
|
else:
|
2023-05-08 10:48:54 +01:00
|
|
|
column_map.update(
|
|
|
|
{
|
|
|
|
'disk_available': 'disk_available_least',
|
|
|
|
'local_disk_free': 'free_disk_gb',
|
|
|
|
'local_disk_size': 'local_gb',
|
|
|
|
'local_disk_used': 'local_gb_used',
|
|
|
|
'memory_free': 'free_ram_mb',
|
|
|
|
'memory_used': 'memory_mb_used',
|
|
|
|
'memory_size': 'memory_mb',
|
|
|
|
}
|
|
|
|
)
|
2022-08-15 23:52:55 +00:00
|
|
|
|
|
|
|
return utils.get_osc_show_columns_for_sdk_resource(
|
2023-05-08 10:48:54 +01:00
|
|
|
item, column_map, hidden_columns
|
|
|
|
)
|
2022-08-15 23:52:55 +00:00
|
|
|
|
|
|
|
|
2016-01-10 21:54:53 +09:00
|
|
|
class ListHypervisor(command.Lister):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("List hypervisors")
|
2013-03-11 18:07:48 -05:00
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
2022-08-15 23:52:55 +00:00
|
|
|
parser = super().get_parser(prog_name)
|
2013-03-11 18:07:48 -05:00
|
|
|
parser.add_argument(
|
2020-12-03 13:07:03 +00:00
|
|
|
'--matching',
|
|
|
|
metavar='<hostname>',
|
2023-03-26 13:08:49 +09:00
|
|
|
help=_(
|
|
|
|
"Filter hypervisors using <hostname> substring"
|
|
|
|
"Hypervisor Type and Host IP are not returned "
|
|
|
|
"when using microversion 2.52 or lower"
|
2023-05-08 10:48:54 +01:00
|
|
|
),
|
2014-06-20 10:06:05 -05:00
|
|
|
)
|
2021-07-27 11:00:06 +01:00
|
|
|
pagination.add_marker_pagination_option_to_parser(parser)
|
2016-10-26 23:48:58 -07:00
|
|
|
parser.add_argument(
|
|
|
|
'--long',
|
|
|
|
action='store_true',
|
2023-05-08 10:48:54 +01:00
|
|
|
help=_("List additional fields in output"),
|
2016-10-26 23:48:58 -07:00
|
|
|
)
|
2013-03-11 18:07:48 -05:00
|
|
|
return parser
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
2022-08-15 23:52:55 +00:00
|
|
|
compute_client = self.app.client_manager.sdk_connection.compute
|
2020-12-03 13:07:03 +00:00
|
|
|
|
|
|
|
list_opts = {}
|
|
|
|
|
|
|
|
if parsed_args.matching and (parsed_args.marker or parsed_args.limit):
|
2023-05-08 10:48:54 +01:00
|
|
|
msg = _('--matching is not compatible with --marker or --limit')
|
2020-12-03 13:07:03 +00:00
|
|
|
raise exceptions.CommandError(msg)
|
|
|
|
|
|
|
|
if parsed_args.marker:
|
2022-08-15 23:52:55 +00:00
|
|
|
if not sdk_utils.supports_microversion(compute_client, '2.33'):
|
2020-12-03 13:07:03 +00:00
|
|
|
msg = _(
|
|
|
|
'--os-compute-api-version 2.33 or greater is required to '
|
|
|
|
'support the --marker option'
|
|
|
|
)
|
|
|
|
raise exceptions.CommandError(msg)
|
|
|
|
list_opts['marker'] = parsed_args.marker
|
|
|
|
|
|
|
|
if parsed_args.limit:
|
2022-08-15 23:52:55 +00:00
|
|
|
if not sdk_utils.supports_microversion(compute_client, '2.33'):
|
2020-12-03 13:07:03 +00:00
|
|
|
msg = _(
|
|
|
|
'--os-compute-api-version 2.33 or greater is required to '
|
|
|
|
'support the --limit option'
|
|
|
|
)
|
|
|
|
raise exceptions.CommandError(msg)
|
|
|
|
list_opts['limit'] = parsed_args.limit
|
|
|
|
|
2023-03-26 13:08:49 +09:00
|
|
|
if parsed_args.matching:
|
|
|
|
list_opts['hypervisor_hostname_pattern'] = parsed_args.matching
|
|
|
|
|
2022-08-15 23:52:55 +00:00
|
|
|
column_headers = (
|
2013-03-11 18:07:48 -05:00
|
|
|
"ID",
|
2016-10-26 23:48:58 -07:00
|
|
|
"Hypervisor Hostname",
|
|
|
|
"Hypervisor Type",
|
|
|
|
"Host IP",
|
2023-05-08 10:48:54 +01:00
|
|
|
"State",
|
2022-08-15 23:52:55 +00:00
|
|
|
)
|
2023-05-08 10:48:54 +01:00
|
|
|
columns = ('id', 'name', 'hypervisor_type', 'host_ip', 'state')
|
2023-03-26 13:08:49 +09:00
|
|
|
|
2016-10-26 23:48:58 -07:00
|
|
|
if parsed_args.long:
|
2022-08-15 23:52:55 +00:00
|
|
|
if not sdk_utils.supports_microversion(compute_client, '2.88'):
|
|
|
|
column_headers += (
|
|
|
|
'vCPUs Used',
|
|
|
|
'vCPUs',
|
|
|
|
'Memory MB Used',
|
2023-05-08 10:48:54 +01:00
|
|
|
'Memory MB',
|
2022-08-15 23:52:55 +00:00
|
|
|
)
|
|
|
|
columns += (
|
|
|
|
'vcpus_used',
|
|
|
|
'vcpus',
|
|
|
|
'memory_used',
|
2023-05-08 10:48:54 +01:00
|
|
|
'memory_size',
|
2022-08-15 23:52:55 +00:00
|
|
|
)
|
2013-03-11 18:07:48 -05:00
|
|
|
|
2023-03-26 13:08:49 +09:00
|
|
|
data = compute_client.hypervisors(**list_opts, details=True)
|
2013-03-11 18:07:48 -05:00
|
|
|
|
2020-12-03 13:07:03 +00:00
|
|
|
return (
|
2022-08-15 23:52:55 +00:00
|
|
|
column_headers,
|
2020-12-03 13:07:03 +00:00
|
|
|
(utils.get_item_properties(s, columns) for s in data),
|
|
|
|
)
|
2013-03-11 18:07:48 -05:00
|
|
|
|
|
|
|
|
2016-01-10 21:54:53 +09:00
|
|
|
class ShowHypervisor(command.ShowOne):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("Display hypervisor details")
|
2013-03-11 18:07:48 -05:00
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
2022-08-15 23:52:55 +00:00
|
|
|
parser = super().get_parser(prog_name)
|
2013-03-11 18:07:48 -05:00
|
|
|
parser.add_argument(
|
2015-03-05 19:35:39 -08:00
|
|
|
"hypervisor",
|
|
|
|
metavar="<hypervisor>",
|
2023-05-08 10:48:54 +01:00
|
|
|
help=_("Hypervisor to display (name or ID)"),
|
2016-05-14 15:12:57 +08:00
|
|
|
)
|
2013-03-11 18:07:48 -05:00
|
|
|
return parser
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
2022-08-15 23:52:55 +00:00
|
|
|
compute_client = self.app.client_manager.sdk_connection.compute
|
2024-08-07 13:38:52 +01:00
|
|
|
|
|
|
|
hypervisor_id = compute_client.find_hypervisor(
|
|
|
|
parsed_args.hypervisor, ignore_missing=False, details=False
|
|
|
|
).id
|
|
|
|
hypervisor = compute_client.get_hypervisor(hypervisor_id).copy()
|
2022-08-15 23:52:55 +00:00
|
|
|
|
|
|
|
# Some of the properties in the hypervisor object need to be processed
|
|
|
|
# before they get reported to the user. We spend this section
|
|
|
|
# extracting the relevant details to be reported by modifying our
|
|
|
|
# copy of the hypervisor object.
|
|
|
|
aggregates = compute_client.aggregates()
|
|
|
|
hypervisor['aggregates'] = list()
|
|
|
|
service_details = hypervisor['service_details']
|
2013-03-11 18:07:48 -05:00
|
|
|
|
2015-06-30 14:36:51 -04:00
|
|
|
if aggregates:
|
|
|
|
# Hypervisors in nova cells are prefixed by "<cell>@"
|
2022-08-15 23:52:55 +00:00
|
|
|
if "@" in service_details['host']:
|
|
|
|
cell, service_host = service_details['host'].split('@', 1)
|
2015-06-30 14:36:51 -04:00
|
|
|
else:
|
|
|
|
cell = None
|
2022-08-15 23:52:55 +00:00
|
|
|
service_host = service_details['host']
|
2015-06-30 14:36:51 -04:00
|
|
|
|
|
|
|
if cell:
|
|
|
|
# The host aggregates are also prefixed by "<cell>@"
|
2023-05-08 10:48:54 +01:00
|
|
|
member_of = [
|
|
|
|
aggregate.name
|
|
|
|
for aggregate in aggregates
|
|
|
|
if cell in aggregate.name
|
|
|
|
and service_host in aggregate.hosts
|
|
|
|
]
|
2015-06-30 14:36:51 -04:00
|
|
|
else:
|
2023-05-08 10:48:54 +01:00
|
|
|
member_of = [
|
|
|
|
aggregate.name
|
|
|
|
for aggregate in aggregates
|
|
|
|
if service_host in aggregate.hosts
|
|
|
|
]
|
2022-08-15 23:52:55 +00:00
|
|
|
hypervisor['aggregates'] = member_of
|
2015-06-30 14:36:51 -04:00
|
|
|
|
2016-08-11 14:57:57 +09:00
|
|
|
try:
|
2022-08-15 23:52:55 +00:00
|
|
|
if sdk_utils.supports_microversion(compute_client, '2.88'):
|
|
|
|
uptime = hypervisor['uptime'] or ''
|
|
|
|
del hypervisor['uptime']
|
|
|
|
else:
|
|
|
|
del hypervisor['uptime']
|
|
|
|
uptime = compute_client.get_hypervisor_uptime(
|
2023-05-08 10:48:54 +01:00
|
|
|
hypervisor['id']
|
|
|
|
)['uptime']
|
2016-08-11 14:57:57 +09:00
|
|
|
# Extract data from uptime value
|
|
|
|
# format: 0 up 0, 0 users, load average: 0, 0, 0
|
|
|
|
# example: 17:37:14 up 2:33, 3 users,
|
|
|
|
# load average: 0.33, 0.36, 0.34
|
|
|
|
m = re.match(
|
2019-06-14 11:51:52 +01:00
|
|
|
r"\s*(.+)\sup\s+(.+),\s+(.+)\susers?,\s+load average:\s(.+)",
|
2023-05-08 10:48:54 +01:00
|
|
|
uptime,
|
|
|
|
)
|
2016-08-11 14:57:57 +09:00
|
|
|
if m:
|
2022-08-15 23:52:55 +00:00
|
|
|
hypervisor['host_time'] = m.group(1)
|
|
|
|
hypervisor['uptime'] = m.group(2)
|
|
|
|
hypervisor['users'] = m.group(3)
|
|
|
|
hypervisor['load_average'] = m.group(4)
|
2024-05-09 17:51:02 +01:00
|
|
|
except sdk_exceptions.HttpException as exc:
|
|
|
|
if exc.status_code != 501:
|
|
|
|
raise
|
2015-02-20 22:23:30 -08:00
|
|
|
|
2022-08-15 23:52:55 +00:00
|
|
|
hypervisor['service_id'] = service_details['id']
|
|
|
|
hypervisor['service_host'] = service_details['host']
|
|
|
|
del hypervisor['service_details']
|
2013-03-11 18:07:48 -05:00
|
|
|
|
2022-08-15 23:52:55 +00:00
|
|
|
if not sdk_utils.supports_microversion(compute_client, '2.28'):
|
2020-11-17 12:33:40 +00:00
|
|
|
# microversion 2.28 transformed this to a JSON blob rather than a
|
|
|
|
# string; on earlier fields, do this manually
|
2022-08-15 23:52:55 +00:00
|
|
|
hypervisor['cpu_info'] = json.loads(hypervisor['cpu_info'] or '{}')
|
|
|
|
display_columns, columns = _get_hypervisor_columns(
|
2023-05-08 10:48:54 +01:00
|
|
|
hypervisor, compute_client
|
|
|
|
)
|
2020-11-17 12:33:40 +00:00
|
|
|
data = utils.get_dict_properties(
|
2023-05-08 10:48:54 +01:00
|
|
|
hypervisor,
|
|
|
|
columns,
|
2020-11-17 12:33:40 +00:00
|
|
|
formatters={
|
|
|
|
'cpu_info': format_columns.DictColumn,
|
2023-05-08 10:48:54 +01:00
|
|
|
},
|
|
|
|
)
|
2020-11-17 12:33:40 +00:00
|
|
|
|
2022-08-15 23:52:55 +00:00
|
|
|
return display_columns, data
|