89a4c4cb5a
We use DATETIME SQL type for created/updated columns everywhere through the database. In SQL standard DATETIME defaults to DATETIME(6) which is 6 digit fraction second part. However MySQL defaults it to DATETIME(0) for backward compatibility. In result status messages timestamps get rounded to the second boundary and if there are several status messages were generated within a second after table sort they might be shown in a different order. This commit adds MySQL migration that increases resolution for the status table and adds subseconds to the generated status repor timestamps. Change-Id: Ice8c2d82c6a320c7f73c27f4c60c87bef55b8d95 Related-Bug: #1462270
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
# Copyright (c) 2014 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_config import cfg
|
|
import oslo_messaging as messaging
|
|
from oslo_utils import timeutils
|
|
import six
|
|
|
|
from murano.common import uuidutils
|
|
from murano.dsl import dsl
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
@dsl.name('io.murano.system.StatusReporter')
|
|
class StatusReporter(object):
|
|
transport = None
|
|
|
|
def __init__(self, environment):
|
|
if StatusReporter.transport is None:
|
|
StatusReporter.transport = messaging.get_transport(CONF)
|
|
self._notifier = messaging.Notifier(
|
|
StatusReporter.transport,
|
|
publisher_id=uuidutils.generate_uuid(),
|
|
topic='murano')
|
|
if isinstance(environment, six.string_types):
|
|
self._environment_id = environment
|
|
else:
|
|
self._environment_id = environment.id
|
|
|
|
def _report(self, instance, msg, details=None, level='info'):
|
|
body = {
|
|
'id': (self._environment_id if instance is None
|
|
else instance.id),
|
|
'text': msg,
|
|
'details': details,
|
|
'level': level,
|
|
'environment_id': self._environment_id,
|
|
'timestamp': timeutils.isotime(subsecond=True)
|
|
}
|
|
self._notifier.info({}, 'murano.report_notification', body)
|
|
|
|
def report(self, instance, msg):
|
|
self._report(instance, msg)
|
|
|
|
def report_error_(self, instance, msg):
|
|
self._report(instance, msg, None, 'error')
|
|
|
|
@dsl.name('report_error')
|
|
def report_error(self, instance, msg):
|
|
self._report(instance, msg, None, 'error')
|