diff --git a/masakarimonitors/cmd/processmonitor.py b/masakarimonitors/cmd/processmonitor.py new file mode 100644 index 0000000..ed123c3 --- /dev/null +++ b/masakarimonitors/cmd/processmonitor.py @@ -0,0 +1,37 @@ +# Copyright(c) 2016 Nippon Telegraph and Telephone Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Starter script for Masakari Process Monitor.""" + +import sys + +from oslo_log import log as logging + +import masakarimonitors.conf +from masakarimonitors import config +from masakarimonitors import service +from masakarimonitors import utils + + +CONF = masakarimonitors.conf.CONF + + +def main(): + config.parse_args(sys.argv) + logging.setup(CONF, "masakarimonitors") + utils.monkey_patch() + + server = service.Service.create(binary='masakarimonitors-processmonitor') + service.serve(server) + service.wait() diff --git a/masakarimonitors/conf/service.py b/masakarimonitors/conf/service.py index ab275f0..93d02d7 100644 --- a/masakarimonitors/conf/service.py +++ b/masakarimonitors/conf/service.py @@ -30,6 +30,10 @@ Possible values: default='masakarimonitors.instancemonitor.instance' '.InstancemonitorManager', help='Full class name for the Manager for instancemonitor.'), + cfg.StrOpt('processmonitor_manager', + default='masakarimonitors.processmonitor.process' + '.ProcessmonitorManager', + help='Full class name for the Manager for processmonitor.'), ] diff --git a/masakarimonitors/processmonitor/__init__.py b/masakarimonitors/processmonitor/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/masakarimonitors/processmonitor/process.py b/masakarimonitors/processmonitor/process.py new file mode 100644 index 0000000..076352d --- /dev/null +++ b/masakarimonitors/processmonitor/process.py @@ -0,0 +1,32 @@ +# Copyright(c) 2016 Nippon Telegraph and Telephone Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from oslo_log import log as oslo_logging + +from masakarimonitors import manager + +LOG = oslo_logging.getLogger(__name__) + + +class ProcessmonitorManager(manager.Manager): + """Manages the masakari-processmonitor.""" + + def __init__(self, *args, **kwargs): + super(ProcessmonitorManager, self).__init__( + service_name="processmonitor", *args, **kwargs) + + def main(self): + """Main method.""" + + pass diff --git a/setup.cfg b/setup.cfg index 77f10cb..708baa7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -38,9 +38,11 @@ oslo.config.opts = oslo.config.opts.defaults = masakarimonitors.instancemonitor = masakarimonitors.common.config:set_middleware_defaults + masakarimonitors.processmonitor = masakarimonitors.common.config:set_middleware_defaults console_scripts = masakari-instancemonitor = masakarimonitors.cmd.instancemonitor:main + masakari-processmonitor = masakarimonitors.cmd.processmonitor:main [build_sphinx] source-dir = doc/source