Some of the subclasses of ServicePlugin allow overriding the service_api_url using args. This could be useful for all plugins so move that code into ServicePlugin. Also allow overriding of process_names, search_pattern, overwrite and template_dir. Remove the code in the ironic and trove plugins that duplicated this code. Added a unit test for this code. Change-Id: Ibd97effa6d5bff0cf621e4bdcbe6f5b781d195f4
24 lines
678 B
Python
24 lines
678 B
Python
import logging
|
|
import monasca_setup.detection
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class Ironic(monasca_setup.detection.ServicePlugin):
|
|
|
|
"""Detect Ironic 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': 'Baremetal',
|
|
'process_names': ['ironic-api', 'ironic-conductor'],
|
|
'service_api_url': "http://localhost:6385",
|
|
'search_pattern': '.*200 OK.*',
|
|
}
|
|
|
|
super(Ironic, self).__init__(service_params)
|