monasca-agent/monasca_setup/detection/plugins/trove.py
Craig Bryant 032c043727 Allow overriding values using args in ServicePlugin
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
2015-10-30 12:53:28 -06:00

24 lines
688 B
Python

import logging
import monasca_setup.detection
log = logging.getLogger(__name__)
class Trove(monasca_setup.detection.ServicePlugin):
"""Detect Trove 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': 'database',
'process_names': ['trove-api', 'trove-taskmanager', 'trove-conductor'],
'service_api_url': "http://localhost:8779",
'search_pattern': '.*v1.*'
}
super(Trove, self).__init__(service_params)