a88f102726
Detects Barbican daemons and setup configuration for monitoring. Default values for service_api_url, process_names and search_pattern are provided. Allows overriding the default values via the args parameter. Updated 'service_name' to 'key-manager' Change-Id: Iadac18bcd700f5f7e1749b7a234fbb5438c56892
20 lines
612 B
Python
20 lines
612 B
Python
import monasca_setup.detection
|
|
|
|
|
|
class Barbican(monasca_setup.detection.ServicePlugin):
|
|
|
|
"""Detect Barbican 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': 'key-manager',
|
|
'process_names': ['barbican-api'],
|
|
'service_api_url': 'http://localhost:9311',
|
|
'search_pattern': '.*v1.*'
|
|
}
|
|
|
|
super(Barbican, self).__init__(service_params)
|