95a8101de2
Guru Meditation Report (a.k.a. GMR) is useful for debugging especially when troubleshooting slow steps or something being stuck. Allow generating GMR not only for server processes but also for agent processes so that operators can use the same trick to observe detailed behavior of agents, with agents kept running. Change-Id: I519b543b65a96e9d4444d74ad0abceebe924851e
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
# Copyright 2015 OpenStack Foundation.
|
|
#
|
|
# 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.
|
|
|
|
import sys
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from neutron.agent.metadata import agent
|
|
from neutron.common import cache_utils as cache
|
|
from neutron.common import config
|
|
from neutron.common import utils
|
|
from neutron.conf.agent import common as agent_conf
|
|
from neutron.conf.agent.metadata import config as meta
|
|
from neutron.conf import service as service_conf
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def main():
|
|
config.register_common_config_options()
|
|
meta.register_meta_conf_opts(meta.SHARED_OPTS)
|
|
meta.register_meta_conf_opts(meta.UNIX_DOMAIN_METADATA_PROXY_OPTS)
|
|
meta.register_meta_conf_opts(meta.METADATA_PROXY_HANDLER_OPTS)
|
|
cache.register_oslo_configs(cfg.CONF)
|
|
agent_conf.register_agent_state_opts_helper(cfg.CONF)
|
|
service_conf.register_service_opts(service_conf.RPC_EXTRA_OPTS, cfg.CONF)
|
|
|
|
config.init(sys.argv[1:])
|
|
config.setup_logging()
|
|
config.setup_gmr()
|
|
utils.log_opt_values(LOG)
|
|
proxy = agent.UnixDomainMetadataProxy(cfg.CONF)
|
|
proxy.run()
|