Files
monasca-agent/monasca_setup/detection/plugins/ntp.py
Michael James Hoppal e1f28a1285 Change match by when searching ntp process to ntpd
Change-Id: I828b5829bcf56f4a07944874498db48ab3f58f7e
2016-10-31 10:03:30 -06:00

54 lines
1.7 KiB
Python

# (C) Copyright 2015,2016 Hewlett Packard Enterprise Development LP
import logging
import os
import re
import monasca_setup.agent_config
import monasca_setup.detection
log = logging.getLogger(__name__)
class Ntp(monasca_setup.detection.Plugin):
"""Detect NTP daemon and setup configuration to monitor them.
"""
def _detect(self):
"""Run detection, set self.available True if the service is detected.
"""
if monasca_setup.detection.find_process_cmdline('ntpd') is not None:
self.available = True
def build_config(self):
"""Build the config as a Plugins object and return.
"""
config = monasca_setup.agent_config.Plugins()
log.info("\tEnabling the ntp plugin")
if os.path.exists('/etc/ntp.conf'):
with open('/etc/ntp.conf', 'r') as ntp_config:
ntp_conf = ntp_config.read()
match = re.search('^server (.*?)( #|$)', ntp_conf, re.MULTILINE)
if match is None:
ntp_server = 'pool.ntp.org'
else:
# There can be additional options after the server hostname or IP Address
server_val = match.group(1)
ntp_server = server_val.split()[0]
else:
ntp_server = 'pool.ntp.org'
if re.match('^127', ntp_server):
log.warn("NTP Server points to localhost no value in collecting NTP metrics. Skipping configuration.")
return None
config['ntp'] = {'init_config': None, 'instances': [{'name': ntp_server, 'host': ntp_server}]}
return config
def dependencies_installed(self):
try:
import ntplib
except ImportError:
return False
else:
return True