In watcher, an audit generates a set of actions which aims at achieving a given goal (lower energy consumption, ...). It is possible to configure different strategies in order to achieve each goal. Each strategy is written as a Python class which produces a set of actions. Today, the set of possible actions is fixed for a given version of Watcher and enables optimization algorithms to include actions such as instance migration, changing hypervisor state, changing power state (ACPI level, ...). The objective of this patchset is to give the ability to load the actions dynamically in order to apply the Action Plan. DocImpact Partially implements: blueprint watcher-add-actions-via-conf Change-Id: Idf295b94dca549ac65d4636e8889c8ab2ecc0df6
40 lines
1.5 KiB
Python
40 lines
1.5 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 watcher.applier import base
|
|
from watcher.applier.execution import default
|
|
from watcher import objects
|
|
|
|
|
|
class DefaultApplier(base.BaseApplier):
|
|
def __init__(self, manager_applier, context):
|
|
super(DefaultApplier, self).__init__()
|
|
self.manager_applier = manager_applier
|
|
self.context = context
|
|
self.executor = default.DefaultActionPlanExecutor(manager_applier,
|
|
context)
|
|
|
|
def execute(self, action_plan_uuid):
|
|
action_plan = objects.ActionPlan.get_by_uuid(self.context,
|
|
action_plan_uuid)
|
|
# todo(jed) remove direct access to dbapi need filter in object
|
|
filters = {'action_plan_id': action_plan.id}
|
|
actions = objects.Action.dbapi.get_action_list(self.context, filters)
|
|
return self.executor.execute(actions)
|