This commit is contained in:
Patrick Van der Veken
2020-01-30 11:43:58 +01:00
23 changed files with 283 additions and 97 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
# [default: no]
log_healthy="no"
# specify whether to extend the current ELDO FS (if needed)
# specify whether to fix autofs (if needed)
# [default: no]
fix_autofs="no"
+1 -1
View File
@@ -11,7 +11,7 @@
# [default: no]
log_healthy="no"
# specify whether to extend the current ELDO FS (if needed)
# specify whether to fix autofs (if needed)
# [default: no]
fix_autofs="no"
@@ -0,0 +1,28 @@
#******************************************************************************
# @(#) check_linux_httpd_status.conf
#******************************************************************************
# This is a configuration file for the check_linux_httpd_status HC plugin.
# All lines starting with a '#' are comment lines.
# [default: indicates hardcoded script values if no value is defined here]
#******************************************************************************
# specify whether to also log passed health checks
# (warning: this may rapidly grow the HC log)
# [default: no]
log_healthy="no"
# specify which type of process check to use
# Format: <auto|pgrep|sysv|systemd>. NULL value equals to "auto"
# [default: auto]
# Compatibility: >=2019-11-01
check_type="auto"
# specify custom path to the httpd binary
# [default: null]
# Compatibility: >=2019-11-01
httpd_bin=""
#******************************************************************************
# End of FILE
#******************************************************************************
+11
View File
@@ -10,6 +10,17 @@
# maximum timeout for HC calls/plugins (seconds) [default: 60]
HC_TIME_OUT=60
# enable/disable logging of passed health checks (warning: this may rapidly grow the HC log)
# see also: '--log-healthy' command-line parameter
# 'log_healthy' setting in HC plugin configuration file(s)
# [values: Yes|No]
HC_LOG_HEALTHY="No"
# enable/disable healing logic if available in HC plugin(s)
# see also: '--no-fix' command-line parameter
# [values: Yes|No]
HC_WILL_FIX="Yes"
#******************************************************************************
# End of FILE