d565c47fb1
This patch adds implementation of sending a notification. Change-Id: I56f592e9ce91447ac35fb14073c0c94cb9677472 Implements: bp pythonize-host-and-process-monitor
50 lines
1.7 KiB
Python
50 lines
1.7 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.
|
|
from oslo_config import cfg
|
|
|
|
|
|
monitor_process_opts = [
|
|
cfg.IntOpt('check_interval',
|
|
default=5,
|
|
help='Interval in seconds for checking a process.'),
|
|
cfg.IntOpt('restart_retries',
|
|
default=3,
|
|
help='Number of retries when the failure of restarting a'
|
|
' process.'),
|
|
cfg.IntOpt('restart_interval',
|
|
default=5,
|
|
help='Interval in seconds for restarting a process.'),
|
|
cfg.IntOpt('api_retry_max',
|
|
default=12,
|
|
help='Number of retries for send a notification in'
|
|
' processmonitor.'),
|
|
cfg.IntOpt('api_retry_interval',
|
|
default=10,
|
|
help='Interval between re-sending a notification in'
|
|
' processmonitor(in seconds).'),
|
|
cfg.StrOpt('process_list_path',
|
|
default='/etc/masakarimonitors/process_list.yaml',
|
|
help='The file path of process list.'),
|
|
]
|
|
|
|
|
|
def register_opts(conf):
|
|
conf.register_opts(monitor_process_opts, group='process')
|
|
|
|
|
|
def list_opts():
|
|
return {
|
|
'process': monitor_process_opts
|
|
}
|