This patch set excludes nodes and instances from auditing if appropriate metrics aren't available. Change-Id: I87c6c249e3962f45d082f92d7e6e0be04e101799 Closes-Bug: #1736982
311 lines
9.5 KiB
Python
311 lines
9.5 KiB
Python
# 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.
|
|
|
|
import oslo_utils
|
|
|
|
|
|
class FakeGnocchiMetrics(object):
|
|
def __init__(self):
|
|
self.emptytype = ""
|
|
|
|
def empty_one_metric(self, emptytype):
|
|
self.emptytype = emptytype
|
|
|
|
# TODO(alexchadin): This method is added as temporary solution until
|
|
# all strategies use datasource_backend property.
|
|
def temp_mock_get_statistics(self, resource_id, metric, period, aggregate,
|
|
granularity=300):
|
|
return self.mock_get_statistics(resource_id, metric, granularity,
|
|
0, 0, aggregation='mean')
|
|
|
|
def mock_get_statistics(self, resource_id, metric, granularity,
|
|
start_time, stop_time, aggregation='mean'):
|
|
result = 0
|
|
meter_name = metric
|
|
if meter_name == "hardware.cpu.util":
|
|
result = self.get_usage_node_cpu(resource_id)
|
|
elif meter_name == "compute.node.cpu.percent":
|
|
result = self.get_usage_node_cpu(resource_id)
|
|
elif meter_name == "hardware.memory.used":
|
|
result = self.get_usage_node_ram(resource_id)
|
|
elif meter_name == "cpu_util":
|
|
result = self.get_average_usage_instance_cpu(resource_id)
|
|
elif meter_name == "memory.resident":
|
|
result = self.get_average_usage_instance_memory(resource_id)
|
|
elif meter_name == "hardware.ipmi.node.outlet_temperature":
|
|
result = self.get_average_outlet_temperature(resource_id)
|
|
elif meter_name == "hardware.ipmi.node.airflow":
|
|
result = self.get_average_airflow(resource_id)
|
|
elif meter_name == "hardware.ipmi.node.temperature":
|
|
result = self.get_average_inlet_t(resource_id)
|
|
elif meter_name == "hardware.ipmi.node.power":
|
|
result = self.get_average_power(resource_id)
|
|
return result
|
|
|
|
def mock_get_statistics_nn(self, resource_id, period,
|
|
aggregation, granularity=300):
|
|
result = 0.0
|
|
if period == 100:
|
|
result = self.get_average_l3_cache_current(resource_id)
|
|
if period == 200:
|
|
result = self.get_average_l3_cache_previous(resource_id)
|
|
return result
|
|
|
|
@staticmethod
|
|
def get_average_l3_cache_current(uuid):
|
|
"""The average l3 cache used by instance"""
|
|
mock = {}
|
|
mock['73b09e16-35b7-4922-804e-e8f5d9b740fc'] = 35 * oslo_utils.units.Ki
|
|
mock['cae81432-1631-4d4e-b29c-6f3acdcde906'] = 30 * oslo_utils.units.Ki
|
|
mock['INSTANCE_3'] = 40 * oslo_utils.units.Ki
|
|
mock['INSTANCE_4'] = 35 * oslo_utils.units.Ki
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 25 * oslo_utils.units.Ki
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_l3_cache_previous(uuid):
|
|
"""The average l3 cache used by instance"""
|
|
mock = {}
|
|
mock['73b09e16-35b7-4922-804e-e8f5d9b740fc'] = 34.5 * (
|
|
oslo_utils.units.Ki)
|
|
mock['cae81432-1631-4d4e-b29c-6f3acdcde906'] = 30.5 * (
|
|
oslo_utils.units.Ki)
|
|
mock['INSTANCE_3'] = 60 * oslo_utils.units.Ki
|
|
mock['INSTANCE_4'] = 22.5 * oslo_utils.units.Ki
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 25 * oslo_utils.units.Ki
|
|
return mock[str(uuid)]
|
|
|
|
def mock_get_statistics_wb(self, resource_id, metric, period, aggregate,
|
|
granularity=300):
|
|
result = 0.0
|
|
if metric == "cpu_util":
|
|
result = self.get_average_usage_instance_cpu_wb(resource_id)
|
|
elif metric == "memory.resident":
|
|
result = self.get_average_usage_instance_memory_wb(resource_id)
|
|
return result
|
|
|
|
@staticmethod
|
|
def get_average_outlet_temperature(uuid):
|
|
"""The average outlet temperature for host"""
|
|
mock = {}
|
|
mock['Node_0'] = 30
|
|
# use a big value to make sure it exceeds threshold
|
|
mock['Node_1'] = 100
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 100
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_usage_node_ram(uuid):
|
|
mock = {}
|
|
# Gnocchi returns hardware.memory.used samples in KB.
|
|
mock['Node_0'] = 7 * oslo_utils.units.Ki
|
|
mock['Node_1'] = 5 * oslo_utils.units.Ki
|
|
mock['Node_2'] = 29 * oslo_utils.units.Ki
|
|
mock['Node_3'] = 8 * oslo_utils.units.Ki
|
|
mock['Node_4'] = 4 * oslo_utils.units.Ki
|
|
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 8
|
|
|
|
return float(mock[str(uuid)])
|
|
|
|
@staticmethod
|
|
def get_average_airflow(uuid):
|
|
"""The average outlet temperature for host"""
|
|
mock = {}
|
|
mock['Node_0'] = 400
|
|
# use a big value to make sure it exceeds threshold
|
|
mock['Node_1'] = 100
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 200
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_inlet_t(uuid):
|
|
"""The average outlet temperature for host"""
|
|
mock = {}
|
|
mock['Node_0'] = 24
|
|
mock['Node_1'] = 26
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 28
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_power(uuid):
|
|
"""The average outlet temperature for host"""
|
|
mock = {}
|
|
mock['Node_0'] = 260
|
|
mock['Node_1'] = 240
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 200
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_usage_node_cpu(*args, **kwargs):
|
|
"""The last VM CPU usage values to average
|
|
|
|
:param uuid: instance UUID
|
|
:return: float value
|
|
"""
|
|
uuid = args[0]
|
|
# Normalize
|
|
mock = {}
|
|
# node 0
|
|
mock['Node_0_hostname_0'] = 7
|
|
mock['Node_1_hostname_1'] = 7
|
|
# node 1
|
|
mock['Node_2_hostname_2'] = 80
|
|
# node 2
|
|
mock['Node_3_hostname_3'] = 5
|
|
mock['Node_4_hostname_4'] = 5
|
|
mock['Node_5_hostname_5'] = 10
|
|
|
|
# node 3
|
|
mock['Node_6_hostname_6'] = 8
|
|
# This node doesn't send metrics
|
|
mock['LOST_NODE_hostname_7'] = None
|
|
mock['Node_19_hostname_19'] = 10
|
|
# node 4
|
|
mock['INSTANCE_7_hostname_7'] = 4
|
|
|
|
mock['Node_0'] = 7
|
|
mock['Node_1'] = 5
|
|
mock['Node_2'] = 10
|
|
mock['Node_3'] = 4
|
|
mock['Node_4'] = 2
|
|
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 8
|
|
|
|
if mock[str(uuid)] is not None:
|
|
return float(mock[str(uuid)])
|
|
else:
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_usage_instance_cpu(*args, **kwargs):
|
|
"""The last VM CPU usage values to average
|
|
|
|
:param uuid: instance UUID
|
|
:return: int value
|
|
"""
|
|
uuid = args[0]
|
|
# Normalize
|
|
mock = {}
|
|
# node 0
|
|
mock['INSTANCE_0'] = 7
|
|
mock['INSTANCE_1'] = 7
|
|
# node 1
|
|
mock['INSTANCE_2'] = 10
|
|
# node 2
|
|
mock['INSTANCE_3'] = 5
|
|
mock['INSTANCE_4'] = 5
|
|
mock['INSTANCE_5'] = 10
|
|
|
|
# node 3
|
|
mock['INSTANCE_6'] = 8
|
|
|
|
# node 4
|
|
mock['INSTANCE_7'] = 4
|
|
|
|
mock['LOST_INSTANCE'] = None
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 8
|
|
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_usage_instance_memory(uuid):
|
|
mock = {}
|
|
# node 0
|
|
mock['INSTANCE_0'] = 2
|
|
mock['INSTANCE_1'] = 5
|
|
# node 1
|
|
mock['INSTANCE_2'] = 5
|
|
# node 2
|
|
mock['INSTANCE_3'] = 8
|
|
mock['INSTANCE_4'] = 5
|
|
mock['INSTANCE_5'] = 16
|
|
|
|
# node 3
|
|
mock['INSTANCE_6'] = 8
|
|
|
|
# node 4
|
|
mock['INSTANCE_7'] = 4
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 10
|
|
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_usage_instance_disk(uuid):
|
|
mock = {}
|
|
# node 0
|
|
mock['INSTANCE_0'] = 2
|
|
mock['INSTANCE_1'] = 2
|
|
# node 1
|
|
mock['INSTANCE_2'] = 2
|
|
# node 2
|
|
mock['INSTANCE_3'] = 10
|
|
mock['INSTANCE_4'] = 15
|
|
mock['INSTANCE_5'] = 20
|
|
|
|
# node 3
|
|
mock['INSTANCE_6'] = 8
|
|
|
|
# node 4
|
|
mock['INSTANCE_7'] = 4
|
|
|
|
if uuid not in mock.keys():
|
|
mock[uuid] = 4
|
|
|
|
return mock[str(uuid)]
|
|
|
|
@staticmethod
|
|
def get_average_usage_instance_cpu_wb(uuid):
|
|
"""The last VM CPU usage values to average
|
|
|
|
:param uuid: instance UUID
|
|
:return: float value
|
|
"""
|
|
# query influxdb stream
|
|
|
|
# compute in stream
|
|
|
|
# Normalize
|
|
mock = {}
|
|
# node 0
|
|
mock['INSTANCE_1'] = 80
|
|
mock['73b09e16-35b7-4922-804e-e8f5d9b740fc'] = 50
|
|
# node 1
|
|
mock['INSTANCE_3'] = 20
|
|
mock['INSTANCE_4'] = 10
|
|
return float(mock[str(uuid)])
|
|
|
|
@staticmethod
|
|
def get_average_usage_instance_memory_wb(uuid):
|
|
mock = {}
|
|
# node 0
|
|
mock['INSTANCE_1'] = 30
|
|
# node 1
|
|
mock['INSTANCE_3'] = 12
|
|
mock['INSTANCE_4'] = 12
|
|
if uuid not in mock.keys():
|
|
# mock[uuid] = random.randint(1, 4)
|
|
mock[uuid] = 12
|
|
|
|
return mock[str(uuid)]
|