Add neutron-lbaas-agent (LBaaS V1) and neutron-lbaasv2-agent (LBaaS V2) to the neutron detection plugin. Because the string "neutron-lbaas-agent" can be both a process name and log file name, the process monitor is susceptible to false positive matching on that string. Use a longer part of the python path to disambiguate this Change-Id: I3081639a6f36a276bab2f9eb1b9b39a5bef452f1
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
import monasca_setup.detection
|
|
|
|
|
|
class Neutron(monasca_setup.detection.ServicePlugin):
|
|
|
|
"""Detect Neutron daemons and setup configuration to monitor them.
|
|
|
|
"""
|
|
|
|
def __init__(self, template_dir, overwrite=True, args=None):
|
|
service_params = {
|
|
'args': args,
|
|
'template_dir': template_dir,
|
|
'overwrite': overwrite,
|
|
'service_name': 'networking',
|
|
'process_names': ['neutron-server', 'neutron-openvswitch-agent',
|
|
'neutron-rootwrap', 'neutron-dhcp-agent',
|
|
'neutron-vpn-agent', 'neutron-metadata-agent',
|
|
'neutron-metering-agent', 'neutron-l3-agent',
|
|
'neutron-ns-metadata-proxy',
|
|
'/opt/stack/service/neutron/venv/bin/neutron-lbaas-agent',
|
|
'/opt/stack/service/neutron/venv/bin/neutron-lbaasv2-agent'],
|
|
'service_api_url': 'http://localhost:9696',
|
|
'search_pattern': '.*v2.0.*'
|
|
}
|
|
|
|
super(Neutron, self).__init__(service_params)
|
|
|
|
def build_config(self):
|
|
"""Build the config as a Plugins object and return."""
|
|
# Skip the http check if neutron-server is not on this box
|
|
if 'neutron-server' not in self.found_processes:
|
|
self.service_api_url = None
|
|
self.search_pattern = None
|
|
|
|
return monasca_setup.detection.ServicePlugin.build_config(self)
|