We want a simplest way to validate the input parameters of an Action through a schema. APIImpact DocImpact Partially implements: blueprint watcher-add-actions-via-conf Change-Id: I139775f467fe7778c7354b0cfacf796fc27ffcb2
80 lines
3.0 KiB
Python
80 lines
3.0 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright (c) 2015 b<>com
|
|
#
|
|
# Authors: Jean-Emile DARTOIS <jean-emile.dartois@b-com.com>
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
from oslo_log import log
|
|
|
|
from watcher.decision_engine.model import hypervisor as obj_hypervisor
|
|
from watcher.decision_engine.model import model_root
|
|
from watcher.decision_engine.model import resource
|
|
from watcher.decision_engine.model import vm as obj_vm
|
|
from watcher.metrics_engine.cluster_model_collector import api
|
|
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
|
|
class NovaClusterModelCollector(api.BaseClusterModelCollector):
|
|
def __init__(self, wrapper):
|
|
super(NovaClusterModelCollector, self).__init__()
|
|
self.wrapper = wrapper
|
|
|
|
def get_latest_cluster_data_model(self):
|
|
LOG.debug("Getting latest cluster data model")
|
|
|
|
cluster = model_root.ModelRoot()
|
|
mem = resource.Resource(resource.ResourceType.memory)
|
|
num_cores = resource.Resource(resource.ResourceType.cpu_cores)
|
|
disk = resource.Resource(resource.ResourceType.disk)
|
|
cluster.create_resource(mem)
|
|
cluster.create_resource(num_cores)
|
|
cluster.create_resource(disk)
|
|
|
|
flavor_cache = {}
|
|
hypervisors = self.wrapper.get_hypervisors_list()
|
|
for h in hypervisors:
|
|
service = self.wrapper.nova.services.find(id=h.service['id'])
|
|
# create hypervisor in cluster_model_collector
|
|
hypervisor = obj_hypervisor.Hypervisor()
|
|
hypervisor.uuid = service.host
|
|
hypervisor.hostname = h.hypervisor_hostname
|
|
# set capacity
|
|
mem.set_capacity(hypervisor, h.memory_mb)
|
|
disk.set_capacity(hypervisor, h.free_disk_gb)
|
|
num_cores.set_capacity(hypervisor, h.vcpus)
|
|
hypervisor.state = h.state
|
|
hypervisor.status = h.status
|
|
cluster.add_hypervisor(hypervisor)
|
|
vms = self.wrapper.get_vms_by_hypervisor(str(service.host))
|
|
for v in vms:
|
|
# create VM in cluster_model_collector
|
|
vm = obj_vm.VM()
|
|
vm.uuid = v.id
|
|
# nova/nova/compute/vm_states.py
|
|
vm.state = getattr(v, 'OS-EXT-STS:vm_state')
|
|
|
|
# set capacity
|
|
self.wrapper.get_flavor_instance(v, flavor_cache)
|
|
mem.set_capacity(vm, v.flavor['ram'])
|
|
disk.set_capacity(vm, v.flavor['disk'])
|
|
num_cores.set_capacity(vm, v.flavor['vcpus'])
|
|
|
|
cluster.get_mapping().map(hypervisor, vm)
|
|
cluster.add_vm(vm)
|
|
return cluster
|