~ubuntu-cloud-archive/ubuntu/precise/ceilometer/trunk

« back to all changes in this revision

Viewing changes to ceilometer/openstack/common/notifier/log_notifier.py

  • Committer: Ubuntu
  • Date: 2013-01-16 14:00:41 UTC
  • Revision ID: ubuntu@server-bb5d7af3-612c-4306-801d-9265ae6fcca3.canonistack-20130116140041-hklvv3jquzb8zbl9
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2011 OpenStack LLC.
 
2
# All Rights Reserved.
 
3
#
 
4
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
#    not use this file except in compliance with the License. You may obtain
 
6
#    a copy of the License at
 
7
#
 
8
#         http://www.apache.org/licenses/LICENSE-2.0
 
9
#
 
10
#    Unless required by applicable law or agreed to in writing, software
 
11
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
#    License for the specific language governing permissions and limitations
 
14
#    under the License.
 
15
 
 
16
 
 
17
from ceilometer.openstack.common import cfg
 
18
from ceilometer.openstack.common import jsonutils
 
19
from ceilometer.openstack.common import log as logging
 
20
 
 
21
 
 
22
CONF = cfg.CONF
 
23
 
 
24
 
 
25
def notify(_context, message):
 
26
    """Notifies the recipient of the desired event given the model.
 
27
    Log notifications using openstack's default logging system"""
 
28
 
 
29
    priority = message.get('priority',
 
30
                           CONF.default_notification_level)
 
31
    priority = priority.lower()
 
32
    logger = logging.getLogger(
 
33
        'ceilometer.openstack.common.notification.%s' %
 
34
        message['event_type'])
 
35
    getattr(logger, priority)(jsonutils.dumps(message))