Changes the agent manager to poll based on pipeline configuration, to support different interval requirement from different publishers. This patch clean up the test case for agent managers. It makes the changes a bit bigger, however, it's not so easy to seprate this cleanup patch with different interval part. For bp publisher-counters-frequency Change-Id: I3c1163e37de6a17261d2c570843845696ebff58f Signed-off-by: Yunhong, Jiang <yunhong.jiang@intel.com>
67 lines
2.2 KiB
Python
67 lines
2.2 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 oslo.config import cfg
|
|
|
|
from ceilometer.openstack.common import log as logging
|
|
|
|
from ceilometer.compute.manager import AgentManager
|
|
|
|
try:
|
|
from nova.conductor import api
|
|
instance_info_source = api.API()
|
|
except ImportError:
|
|
from nova import db as instance_info_source
|
|
|
|
# This module runs inside the nova compute
|
|
# agent, which only configures the "nova" logger.
|
|
# We use a fake logger name in that namespace
|
|
# so that messages from this module appear
|
|
# in the log file.
|
|
LOG = logging.getLogger('nova.ceilometer.notifier')
|
|
|
|
_agent_manager = None
|
|
|
|
|
|
def initialize_manager(agent_manager=None):
|
|
global _agent_manager
|
|
if not agent_manager:
|
|
cfg.CONF(args=[], project='ceilometer', prog='ceilometer-agent')
|
|
# Instantiate a manager
|
|
_agent_manager = AgentManager()
|
|
else:
|
|
_agent_manager = agent_manager
|
|
_agent_manager.setup_notifier_task()
|
|
|
|
|
|
def notify(context, message):
|
|
global _agent_manager
|
|
# Initialize the global config object as though it was in the
|
|
# compute agent process so that the ceilometer copy of the rpc
|
|
# modules will know how to communicate.
|
|
if _agent_manager is None:
|
|
initialize_manager()
|
|
|
|
if message['event_type'] == 'compute.instance.delete.start':
|
|
instance_id = message['payload']['instance_id']
|
|
LOG.debug('polling final stats for %r', instance_id)
|
|
_agent_manager.poll_instance(context,
|
|
instance_info_source.instance_get_by_uuid(
|
|
context,
|
|
instance_id))
|