7580c846ad
We want to let Monit to unmonitor the processes in containers which are disabled in `FEATURE` table such that Monit will not generate false alerting messages into the syslog. - Backport of https://github.com/Azure/sonic-buildimage/pull/5153 to the 201911 branch Signed-off-by: Yong Zhao <yozhao@microsoft.com>
44 lines
1.8 KiB
Plaintext
44 lines
1.8 KiB
Plaintext
###############################################################################
|
|
## Monit configuration for swss container
|
|
## process list:
|
|
## orchagent
|
|
## portsyncd
|
|
## neighsyncd
|
|
## vrfmgrd
|
|
## vlanmgrd
|
|
## intfmgrd
|
|
## portmgrd
|
|
## buffermgrd
|
|
## nbrmgrd
|
|
## vxlanmgrd
|
|
##############################################################################
|
|
check program swss|orchagent with path "/usr/bin/process_checker swss /usr/bin/orchagent -d /var/log/swss"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|portsyncd with path "/usr/bin/process_checker swss /usr/bin/portsyncd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|neighsyncd with path "/usr/bin/process_checker swss /usr/bin/neighsyncd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|vrfmgrd with path "/usr/bin/process_checker swss /usr/bin/vrfmgrd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|vlanmgrd with path "/usr/bin/process_checker swss /usr/bin/vlanmgrd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|intfmgrd with path "/usr/bin/process_checker swss /usr/bin/intfmgrd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|portmgrd with path "/usr/bin/process_checker swss /usr/bin/portmgrd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|buffermgrd with path "/usr/bin/process_checker swss /usr/bin/buffermgrd -l"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|nbrmgrd with path "/usr/bin/process_checker swss /usr/bin/nbrmgrd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|
|
|
|
check program swss|vxlanmgrd with path "/usr/bin/process_checker swss /usr/bin/vxlanmgrd"
|
|
if status != 0 for 5 times within 5 cycles then alert
|