
"Rule" tags have got additional parameter ("desc") which is supposed to contain a human-readable description of the rule - i.e. which entities the rule should match in the data (without it the rule can be identified only by its "match" statement, which is absolutely unreadable). Existing workflows have got some approximate descriptions in their Rules. These desc's are logged (at DEBUG level) when the rule is matched against some data - the matched data is outputted as well. Also, additional logging messages added in various locations to do some excessive logging of conductor operations (setting context values, reporting, state transitions, waiting for RMQ messages). As the result, the conductor's log (if HeatClient messages are grepped out) should contain a detailed explanation of conductor's states and the execution routines. Change-Id: I8d4794f522d4218cf58206682cfc9c0ca0f4b102
63 lines
1.9 KiB
Python
63 lines
1.9 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# 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 openstack.common import log as logging
|
|
import xml_code_engine
|
|
from muranocommon.messaging import Message
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class Reporter(object):
|
|
def __init__(self, rmqclient, task_id, environment_id):
|
|
self._rmqclient = rmqclient
|
|
self._task_id = task_id
|
|
self._environment_id = environment_id
|
|
rmqclient.declare('task-reports')
|
|
|
|
def report_generic(self, text, details=None, level='info'):
|
|
return self._report_func(None, None, text, details, level)
|
|
|
|
def _report_func(self, id, entity, text, details=None, level='info',
|
|
**kwargs):
|
|
body = {
|
|
'id': id,
|
|
'entity': entity,
|
|
'text': text,
|
|
'details': details,
|
|
'level': level,
|
|
'environment_id': self._environment_id
|
|
}
|
|
|
|
msg = Message()
|
|
msg.body = body
|
|
msg.id = self._task_id
|
|
|
|
self._rmqclient.send(
|
|
message=msg,
|
|
key='task-reports')
|
|
log.debug("Reported '%s' to API", body)
|
|
|
|
|
|
def _report_func(context, id, entity, text, **kwargs):
|
|
reporter = context['/reporter']
|
|
return reporter._report_func(id, entity, text, **kwargs)
|
|
|
|
|
|
class ReportedException(Exception):
|
|
pass
|
|
|
|
|
|
xml_code_engine.XmlCodeEngine.register_function(_report_func, "report")
|