deb-ceilometer/ceilometer/compute/nova_notifier.py
Julien Danjou 8229941dcf Add nova_notifier notification driver for nova
This adds a new notification driver to be used by nova in order to intercept
instance deletion message before the instance is deleted. With this, we are
able to poll an instance about to be deleted before it disappers and
therefore not miss any meter.

This fixes bug #1005944

Change-Id: Ie039681e8e440cb9be2f30e3d72d9a2bc4ddf5ba
Signed-off-by: Julien Danjou <julien@danjou.info>
2012-09-18 00:31:08 +02:00

38 lines
1.3 KiB
Python

# -*- encoding: utf-8 -*-
#
# Copyright © 2012 New Dream Network, LLC (DreamHost)
#
# Author: Julien Danjou <julien@danjou.info>
#
# 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 nova import db
from ceilometer.compute.manager import AgentManager
class CeilometerNovaNotifier(object):
"""Special notifier for Nova, doing special jobs for Ceilometer."""
def __init__(self):
self.manager = AgentManager()
self.manager.init_host()
def __call__(self, context, message):
if message['event_type'] == 'compute.instance.delete.start':
instance_id = message['payload']['instance_id']
self.manager.poll_instance(context,
db.instance_get(context,
instance_id))
notify = CeilometerNovaNotifier()