deb-murano/murano/engine/system/instance_reporter.py
Ruslan Kamaldinov 86a4c4710d Rename muranoapi to murano
Partially-implements blueprint: rename-murano-api-to-murano

Change-Id: I2d7f52ef4073bce800cedc77f81f5d242c4d5d98
2014-05-27 15:14:44 +04:00

78 lines
2.5 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 oslo import messaging
from murano.common import config
from murano.common import uuidutils
from murano.dsl import murano_class
from murano.openstack.common import log as logging
LOG = logging.getLogger(__name__)
UNCLASSIFIED = 0
APPLICATION = 100
OS_INSTANCE = 200
@murano_class.classname('io.murano.system.InstanceNotifier')
class InstanceReportNotifier(object):
transport = None
def initialize(self, environment):
if InstanceReportNotifier.transport is None:
InstanceReportNotifier.transport = \
messaging.get_transport(config.CONF)
self._notifier = messaging.Notifier(
InstanceReportNotifier.transport,
publisher_id=uuidutils.generate_uuid(),
topic='murano')
self._environment_id = environment.object_id
def _track_instance(self, instance, instance_type,
type_title, unit_count):
payload = {
'instance': instance.object_id,
'environment': self._environment_id,
'instance_type': instance_type,
'type_name': instance.type.name,
'type_title': type_title,
'unit_count': unit_count
}
self._notifier.info({}, 'murano.track_instance', payload)
def _untrack_instance(self, instance, instance_type):
payload = {
'instance': instance.object_id,
'environment': self._environment_id,
'instance_type': instance_type,
}
self._notifier.info({}, 'murano.untrack_instance', payload)
def trackApplication(self, instance, title=None, unitCount=None):
self._track_instance(instance, APPLICATION, title, unitCount)
def untrackApplication(self, instance):
self._untrack_instance(instance, APPLICATION)
def trackCloudInstance(self, instance):
self._track_instance(instance, OS_INSTANCE, None, 1)
def untrackCloudInstance(self, instance):
self._untrack_instance(instance, OS_INSTANCE)