
This patch added implementation that instancemonitor starts by using ServiceLauncher instead of ProcessLauncher. Change-Id: I0eb7be7989b8af1b901105b433e7b782f7312e9f
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
# 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 Instance 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-instancemonitor')
|
|
service.serve(server)
|
|
service.wait()
|