2019-08-12 14:22:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#Ramil Valitov ramilvalitov@gmail.com
|
|
|
|
#https://github.com/rvalitov/zabbix-php-fpm
|
2019-12-19 12:02:16 +01:00
|
|
|
#This script scans local machine for active PHP-FPM pools and returns them as a list in JSON format
|
2019-08-12 14:22:49 +02:00
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
S_PS=$(type -P ps)
|
|
|
|
S_GREP=$(type -P grep)
|
|
|
|
S_AWK=$(type -P awk)
|
|
|
|
S_SORT=$(type -P sort)
|
2020-07-07 22:38:01 +02:00
|
|
|
S_UNIQ=$(type -P uniq)
|
2020-02-06 23:11:57 +01:00
|
|
|
S_HEAD=$(type -P head)
|
|
|
|
S_LSOF=$(type -P lsof)
|
|
|
|
S_JQ=$(type -P jq)
|
|
|
|
S_DIRNAME=$(type -P dirname)
|
|
|
|
S_CAT=$(type -P cat)
|
|
|
|
S_BASH=$(type -P bash)
|
|
|
|
S_ECHO=$(type -P echo)
|
|
|
|
S_PRINTF=$(type -P printf)
|
|
|
|
S_WHOAMI=$(type -P whoami)
|
2019-08-12 14:22:49 +02:00
|
|
|
|
|
|
|
if [[ ! -f $S_PS ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'ps' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
|
|
|
if [[ ! -f $S_GREP ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'grep' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
|
|
|
if [[ ! -f $S_AWK ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'awk' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
|
|
|
if [[ ! -f $S_SORT ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'sort' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
2020-07-07 22:38:01 +02:00
|
|
|
if [[ ! -f $S_UNIQ ]]; then
|
|
|
|
${S_ECHO} "Utility 'uniq' not found. Please, install it first."
|
|
|
|
exit 1
|
|
|
|
fi
|
2019-08-12 14:22:49 +02:00
|
|
|
if [[ ! -f $S_HEAD ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'head' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
|
|
|
if [[ ! -f $S_LSOF ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'lsof' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
2019-08-13 10:32:59 +02:00
|
|
|
if [[ ! -f $S_JQ ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'jq' not found. Please, install it first."
|
|
|
|
exit 1
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
if [[ ! -f ${S_DIRNAME} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'dirname' not found. Please, install it first."
|
|
|
|
exit 1
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
if [[ ! -f ${S_CAT} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'cat' not found. Please, install it first."
|
|
|
|
exit 1
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
if [[ ! -f ${S_BASH} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'bash' not found. Please, install it first."
|
|
|
|
exit 1
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
if [[ ! -f ${S_PRINTF} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'printf' not found. Please, install it first."
|
|
|
|
exit 1
|
2019-08-13 10:32:59 +02:00
|
|
|
fi
|
2020-01-18 21:04:28 +01:00
|
|
|
if [[ ! -f ${S_WHOAMI} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Utility 'whoami' not found. Please, install it first."
|
|
|
|
exit 1
|
2020-01-18 21:04:28 +01:00
|
|
|
fi
|
2019-08-12 14:22:49 +02:00
|
|
|
|
2020-01-17 19:47:39 +01:00
|
|
|
STATUS_PATH="/php-fpm-status"
|
2019-12-19 12:02:16 +01:00
|
|
|
DEBUG_MODE=""
|
2020-02-06 23:11:57 +01:00
|
|
|
ACTIVE_USER=$(${S_WHOAMI})
|
2019-12-19 12:02:16 +01:00
|
|
|
|
|
|
|
# Prints a string on screen. Works only if debug mode is enabled.
|
2020-02-06 23:11:57 +01:00
|
|
|
function PrintDebug() {
|
|
|
|
if [[ -n $DEBUG_MODE ]] && [[ -n $1 ]]; then
|
|
|
|
${S_ECHO} "$1"
|
|
|
|
fi
|
2019-12-19 12:02:16 +01:00
|
|
|
}
|
|
|
|
|
2020-01-17 19:47:39 +01:00
|
|
|
# Encodes input data to JSON and saves it to result string
|
|
|
|
# Input arguments:
|
|
|
|
# - pool name
|
|
|
|
# - pool socket
|
|
|
|
# Function returns 1 if all OK, and 0 otherwise.
|
2020-02-06 23:11:57 +01:00
|
|
|
function EncodeToJson() {
|
|
|
|
POOL_NAME=$1
|
|
|
|
POOL_SOCKET=$2
|
|
|
|
if [[ -z ${POOL_NAME} ]] || [[ -z ${POOL_SOCKET} ]]; then
|
|
|
|
return 0
|
|
|
|
fi
|
2020-01-17 19:47:39 +01:00
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
JSON_POOL=$(${S_ECHO} -n "$POOL_NAME" | ${S_JQ} -aR .)
|
|
|
|
JSON_SOCKET=$(${S_ECHO} -n "$POOL_SOCKET" | ${S_JQ} -aR .)
|
|
|
|
if [[ ${POOL_FIRST} == 1 ]]; then
|
|
|
|
RESULT_DATA="$RESULT_DATA,"
|
|
|
|
fi
|
|
|
|
RESULT_DATA="$RESULT_DATA{\"{#POOLNAME}\":$JSON_POOL,\"{#POOLSOCKET}\":$JSON_SOCKET}"
|
|
|
|
POOL_FIRST=1
|
|
|
|
return 1
|
2020-01-17 19:47:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Checks if selected pool is in cache.
|
|
|
|
# Input arguments:
|
|
|
|
# - pool name
|
|
|
|
# - pool socket
|
|
|
|
# Function returns 1 if the pool is in cache, and 0 otherwise.
|
2020-02-06 23:11:57 +01:00
|
|
|
function IsInCache() {
|
|
|
|
SEARCH_NAME=$1
|
|
|
|
SEARCH_SOCKET=$2
|
|
|
|
if [[ -z ${SEARCH_NAME} ]] || [[ -z ${SEARCH_SOCKET} ]]; then
|
2020-01-17 19:47:39 +01:00
|
|
|
return 0
|
2020-02-06 23:11:57 +01:00
|
|
|
fi
|
|
|
|
for CACHE_ITEM in "${NEW_CACHE[@]}"; do
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
ITEM_NAME=$(${S_ECHO} "$CACHE_ITEM" | ${S_AWK} '{print $1}')
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
ITEM_SOCKET=$(${S_ECHO} "$CACHE_ITEM" | ${S_AWK} '{print $2}')
|
|
|
|
if [[ ${ITEM_NAME} == "${SEARCH_NAME}" ]] && [[ ${ITEM_SOCKET} == "${SEARCH_SOCKET}" ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 0
|
2020-01-17 19:47:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Validates the specified pool by getting its status and working with cache.
|
|
|
|
# Pass two arguments: pool name and pool socket
|
|
|
|
# Function returns:
|
|
|
|
# 0 if the pool is invalid
|
|
|
|
# 1 if the pool is OK and is ondemand and is not in cache
|
|
|
|
# 2 if the pool is OK and is ondemand and is in cache
|
|
|
|
# 3 if the pool is OK and is not ondemand and is not in cache
|
2020-02-06 23:11:57 +01:00
|
|
|
function ProcessPool() {
|
|
|
|
POOL_NAME=$1
|
|
|
|
POOL_SOCKET=$2
|
|
|
|
if [[ -z ${POOL_NAME} ]] || [[ -z ${POOL_SOCKET} ]]; then
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Invalid arguments for ProcessPool"
|
2020-02-06 23:11:57 +01:00
|
|
|
return 0
|
|
|
|
fi
|
2020-01-17 19:47:39 +01:00
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
IsInCache "${POOL_NAME}" "${POOL_SOCKET}"
|
|
|
|
FOUND=$?
|
|
|
|
if [[ ${FOUND} == 1 ]]; then
|
|
|
|
return 2
|
|
|
|
fi
|
2020-01-17 19:47:39 +01:00
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
STATUS_JSON=$(${S_BASH} "${STATUS_SCRIPT}" "${POOL_SOCKET}" ${STATUS_PATH})
|
|
|
|
EXIT_CODE=$?
|
|
|
|
if [[ ${EXIT_CODE} == 0 ]]; then
|
|
|
|
# The exit code is OK, let's check the JSON data
|
|
|
|
# JSON data example:
|
|
|
|
# {"pool":"www2","process manager":"ondemand","start time":1578181845,"start since":117,"accepted conn":3,"listen queue":0,"max listen queue":0,"listen queue len":0,"idle processes":0,"active processes":1,"total processes":1,"max active processes":1,"max children reached":0,"slow requests":0}
|
|
|
|
# We use basic regular expression here, i.e. we need to use \+ and not escape { and }
|
|
|
|
if [[ -n $(${S_ECHO} "${STATUS_JSON}" | ${S_GREP} -G '^{.*\"pool\":\".\+\".*,\"process manager\":\".\+\".*}$') ]]; then
|
|
|
|
PrintDebug "Status data for pool $POOL_NAME, socket $POOL_SOCKET, status path $STATUS_PATH is valid"
|
|
|
|
# Checking if we have ondemand pool
|
|
|
|
if [[ -n $(${S_ECHO} "${STATUS_JSON}" | ${S_GREP} -F '"process manager":"ondemand"') ]]; then
|
|
|
|
PrintDebug "Detected pool's process manager is ondemand, it needs to be cached"
|
|
|
|
NEW_CACHE+=("$POOL_NAME $POOL_SOCKET")
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
PrintDebug "Detected pool's process manager is NOT ondemand, it will not be cached"
|
|
|
|
return 3
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
2020-02-06 23:11:57 +01:00
|
|
|
|
|
|
|
PrintDebug "Failed to validate status data for pool $POOL_NAME, socket $POOL_SOCKET, status path $STATUS_PATH"
|
|
|
|
if [[ -n ${STATUS_JSON} ]]; then
|
|
|
|
PrintDebug "Status script returned: $STATUS_JSON"
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
return 0
|
2020-02-06 23:11:57 +01:00
|
|
|
fi
|
|
|
|
PrintDebug "Failed to get status for pool $POOL_NAME, socket $POOL_SOCKET, status path $STATUS_PATH"
|
|
|
|
if [[ -n ${STATUS_JSON} ]]; then
|
|
|
|
PrintDebug "Status script returned: $STATUS_JSON"
|
|
|
|
fi
|
|
|
|
return 0
|
2020-01-17 19:47:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for ARG in "$@"; do
|
2020-02-06 23:11:57 +01:00
|
|
|
if [[ ${ARG} == "debug" ]]; then
|
|
|
|
DEBUG_MODE="1"
|
|
|
|
${S_ECHO} "Debug mode enabled"
|
|
|
|
elif [[ ${ARG} == /* ]]; then
|
|
|
|
STATUS_PATH=${ARG}
|
|
|
|
PrintDebug "Argument $ARG is interpreted as status path"
|
|
|
|
else
|
|
|
|
PrintDebug "Argument $ARG is unknown and skipped"
|
|
|
|
fi
|
2020-01-17 19:47:39 +01:00
|
|
|
done
|
2020-01-18 21:04:28 +01:00
|
|
|
PrintDebug "Current user is $ACTIVE_USER"
|
2020-01-17 19:47:39 +01:00
|
|
|
PrintDebug "Status path to be used: $STATUS_PATH"
|
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
LOCAL_DIR=$(${S_DIRNAME} "$0")
|
2020-01-17 19:47:39 +01:00
|
|
|
CACHE_FILE="$LOCAL_DIR/php_fpm.cache"
|
|
|
|
STATUS_SCRIPT="$LOCAL_DIR/zabbix_php_fpm_status.sh"
|
|
|
|
PrintDebug "Local directory is $LOCAL_DIR"
|
|
|
|
if [[ ! -f ${STATUS_SCRIPT} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Helper script $STATUS_SCRIPT not found"
|
|
|
|
exit 1
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
if [[ ! -r ${STATUS_SCRIPT} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Helper script $STATUS_SCRIPT is not readable"
|
|
|
|
exit 1
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
PrintDebug "Helper script $STATUS_SCRIPT is reachable"
|
|
|
|
|
|
|
|
# Loading cached data for ondemand pools.
|
|
|
|
# The cache file consists of lines, each line contains pool name, then space, then socket (or TCP info)
|
|
|
|
CACHE=()
|
|
|
|
NEW_CACHE=()
|
|
|
|
if [[ -r ${CACHE_FILE} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
PrintDebug "Reading cache file $CACHE_FILE..."
|
|
|
|
mapfile -t CACHE < <(${S_CAT} "${CACHE_FILE}")
|
2020-01-17 19:47:39 +01:00
|
|
|
else
|
2020-02-06 23:11:57 +01:00
|
|
|
PrintDebug "Cache file $CACHE_FILE not found, skipping..."
|
2020-01-17 19:47:39 +01:00
|
|
|
fi
|
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
mapfile -t PS_LIST < <($S_PS ax | $S_GREP -F "php-fpm: pool " | $S_GREP -F -v "grep")
|
|
|
|
# shellcheck disable=SC2016
|
2020-07-07 22:38:01 +02:00
|
|
|
POOL_NAMES_LIST=$(${S_PRINTF} '%s\n' "${PS_LIST[@]}" | $S_AWK '{print $NF}' | $S_SORT -u)
|
2019-08-12 14:22:49 +02:00
|
|
|
POOL_FIRST=0
|
2019-12-19 12:02:16 +01:00
|
|
|
#We store the resulting JSON data for Zabbix in the following var:
|
|
|
|
RESULT_DATA="{\"data\":["
|
2020-02-06 23:11:57 +01:00
|
|
|
while IFS= read -r line; do
|
|
|
|
# shellcheck disable=SC2016
|
2020-07-07 22:38:01 +02:00
|
|
|
POOL_PID_LIST=$(${S_PRINTF} '%s\n' "${PS_LIST[@]}" | $S_GREP -F -w "php-fpm: pool $line" | $S_AWK '{print $1}')
|
|
|
|
POOL_PID_ARGS=""
|
|
|
|
while IFS= read -r POOL_PID; do
|
|
|
|
if [[ -n $POOL_PID ]]; then
|
|
|
|
POOL_PID_ARGS="$POOL_PID_ARGS -p $POOL_PID"
|
|
|
|
fi
|
|
|
|
done <<<"$POOL_PID_LIST"
|
|
|
|
|
|
|
|
if [[ -n $POOL_PID_ARGS ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
#We search for socket or IP address and port
|
|
|
|
#Socket example:
|
|
|
|
#php-fpm7. 25897 root 9u unix 0x000000006509e31f 0t0 58381847 /run/php/php7.3-fpm.sock type=STREAM
|
|
|
|
#IP example:
|
|
|
|
#php-fpm7. 1110 default 0u IPv4 15760 0t0 TCP localhost:8002 (LISTEN)
|
2019-12-19 12:02:16 +01:00
|
|
|
|
2020-02-06 23:11:57 +01:00
|
|
|
#Check all matching processes, because we may face a redirect (or a symlink?), examples:
|
|
|
|
#php-fpm7. 1203 www-data 5u unix 0x000000006509e31f 0t0 15068771 type=STREAM
|
|
|
|
#php-fpm7. 6086 www-data 11u IPv6 21771 0t0 TCP *:9000 (LISTEN)
|
|
|
|
#php-fpm7. 1203 www-data 8u IPv4 15070917 0t0 TCP localhost.localdomain:23054->localhost.localdomain:postgresql (ESTABLISHED)
|
|
|
|
#More info at https://github.com/rvalitov/zabbix-php-fpm/issues/12
|
2019-12-19 12:02:16 +01:00
|
|
|
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Started analysis of pool $line, PID(s): $POOL_PID_ARGS"
|
2020-02-06 23:11:57 +01:00
|
|
|
#Extract only important information:
|
2020-02-07 13:08:15 +01:00
|
|
|
#Use -P to show port number instead of port name, see https://github.com/rvalitov/zabbix-php-fpm/issues/24
|
2020-07-07 22:38:01 +02:00
|
|
|
#Use -n flag to show IP address and not convert it to domain name (like localhost)
|
|
|
|
#Sometimes different PHP-FPM versions may have the same names of pools, so we need to consider that.
|
|
|
|
# It's considered that a pair of pool name and socket must be unique.
|
|
|
|
#Sorting is required, because uniq needs it
|
|
|
|
POOL_PARAMS_LIST=$($S_LSOF -n -P $POOL_PID_ARGS 2>/dev/null | $S_GREP -w -e "unix" -e "TCP" | $S_SORT -u | $S_UNIQ -f8)
|
2020-02-06 23:11:57 +01:00
|
|
|
FOUND_POOL=""
|
|
|
|
while IFS= read -r pool; do
|
|
|
|
if [[ -n $pool ]]; then
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Checking process: $pool"
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
POOL_TYPE=$(${S_ECHO} "${pool}" | $S_AWK '{print $5}')
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
POOL_SOCKET=$(${S_ECHO} "${pool}" | $S_AWK '{print $9}')
|
|
|
|
if [[ -n $POOL_TYPE ]] && [[ -n $POOL_SOCKET ]]; then
|
|
|
|
if [[ $POOL_TYPE == "unix" ]]; then
|
|
|
|
#We have a socket here, test if it's actually a socket:
|
|
|
|
if [[ -S $POOL_SOCKET ]]; then
|
|
|
|
PrintDebug "Found socket $POOL_SOCKET"
|
|
|
|
ProcessPool "${line}" "${POOL_SOCKET}"
|
|
|
|
POOL_STATUS=$?
|
|
|
|
if [[ ${POOL_STATUS} -gt 0 ]]; then
|
|
|
|
FOUND_POOL="1"
|
|
|
|
PrintDebug "Success: socket $POOL_SOCKET returned valid status data"
|
|
|
|
EncodeToJson "${line}" "${POOL_SOCKET}"
|
|
|
|
else
|
|
|
|
PrintDebug "Error: socket $POOL_SOCKET didn't return valid data"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
PrintDebug "Error: specified socket $POOL_SOCKET is not valid"
|
|
|
|
fi
|
|
|
|
elif [[ $POOL_TYPE == "IPv4" ]] || [[ $POOL_TYPE == "IPv6" ]]; then
|
|
|
|
#We have a TCP connection here, check it:
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
CONNECTION_TYPE=$(${S_ECHO} "${pool}" | $S_AWK '{print $8}')
|
|
|
|
if [[ $CONNECTION_TYPE == "TCP" ]]; then
|
|
|
|
#The connection must have state LISTEN:
|
|
|
|
LISTEN=$(${S_ECHO} "${pool}" | $S_GREP -F -w "(LISTEN)")
|
|
|
|
if [[ -n $LISTEN ]]; then
|
|
|
|
#Check and replace * to localhost if it's found. Asterisk means that the PHP listens on
|
|
|
|
#all interfaces.
|
|
|
|
PrintDebug "Found TCP connection $POOL_SOCKET"
|
|
|
|
POOL_SOCKET=${POOL_SOCKET/\*:/localhost:}
|
|
|
|
PrintDebug "Processed TCP connection $POOL_SOCKET"
|
2020-02-06 23:11:57 +01:00
|
|
|
ProcessPool "${line}" "${POOL_SOCKET}"
|
|
|
|
POOL_STATUS=$?
|
|
|
|
if [[ ${POOL_STATUS} -gt 0 ]]; then
|
|
|
|
FOUND_POOL="1"
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Success: TCP connection $POOL_SOCKET returned valid status data"
|
|
|
|
EncodeToJson "${line}" "${POOL_SOCKET}"
|
2020-02-06 23:11:57 +01:00
|
|
|
else
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Error: TCP connection $POOL_SOCKET didn't return valid data"
|
2020-02-06 23:11:57 +01:00
|
|
|
fi
|
|
|
|
else
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Warning: expected connection state must be LISTEN, but it was not detected"
|
2020-02-06 23:11:57 +01:00
|
|
|
fi
|
2019-12-19 12:02:16 +01:00
|
|
|
else
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Warning: expected connection type is TCP, but found $CONNECTION_TYPE"
|
2019-12-19 12:02:16 +01:00
|
|
|
fi
|
2020-02-06 23:11:57 +01:00
|
|
|
else
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Unsupported type $POOL_TYPE, skipping"
|
2020-02-06 23:11:57 +01:00
|
|
|
fi
|
2019-12-19 12:02:16 +01:00
|
|
|
else
|
2020-07-07 22:38:01 +02:00
|
|
|
PrintDebug "Warning: pool type or socket is empty"
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
2020-02-06 23:11:57 +01:00
|
|
|
else
|
|
|
|
PrintDebug "Error: failed to get process information. Probably insufficient privileges. Use sudo or run this script under root."
|
|
|
|
fi
|
|
|
|
done <<<"$POOL_PARAMS_LIST"
|
|
|
|
|
2020-07-07 22:38:01 +02:00
|
|
|
if [[ -z ${FOUND_POOL} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
PrintDebug "Error: failed to discover information for pool $line"
|
2019-08-12 14:22:49 +02:00
|
|
|
fi
|
2020-02-06 23:11:57 +01:00
|
|
|
else
|
|
|
|
PrintDebug "Error: failed to find PID for pool $line"
|
|
|
|
fi
|
2020-07-07 22:38:01 +02:00
|
|
|
done <<<"$POOL_NAMES_LIST"
|
2020-01-17 19:47:39 +01:00
|
|
|
|
|
|
|
PrintDebug "Processing pools from old cache..."
|
2020-02-06 23:11:57 +01:00
|
|
|
for CACHE_ITEM in "${CACHE[@]}"; do
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
ITEM_NAME=$(${S_ECHO} "$CACHE_ITEM" | ${S_AWK} '{print $1}')
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
ITEM_SOCKET=$(${S_ECHO} "$CACHE_ITEM" | ${S_AWK} '{print $2}')
|
|
|
|
ProcessPool "${ITEM_NAME}" "${ITEM_SOCKET}"
|
|
|
|
POOL_STATUS=$?
|
|
|
|
if [[ ${POOL_STATUS} == "1" ]]; then
|
|
|
|
# This is a new pool and we must add it
|
|
|
|
EncodeToJson "${ITEM_NAME}" "${ITEM_SOCKET}"
|
|
|
|
fi
|
2020-01-17 19:47:39 +01:00
|
|
|
done
|
|
|
|
|
2020-01-18 21:04:53 +01:00
|
|
|
if [[ -f ${CACHE_FILE} ]] && [[ ! -w ${CACHE_FILE} ]]; then
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} "Error: write permission is not granted to user $ACTIVE_USER for cache file $CACHE_FILE"
|
|
|
|
exit 1
|
2020-01-18 21:04:53 +01:00
|
|
|
fi
|
|
|
|
|
2020-01-17 19:47:39 +01:00
|
|
|
PrintDebug "Saving new cache file $CACHE_FILE..."
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_PRINTF} "%s\n" "${NEW_CACHE[@]}" >"${CACHE_FILE}"
|
2020-01-17 19:47:39 +01:00
|
|
|
|
2019-12-19 12:02:16 +01:00
|
|
|
RESULT_DATA="$RESULT_DATA]}"
|
|
|
|
PrintDebug "Resulting JSON data for Zabbix:"
|
2020-02-06 23:11:57 +01:00
|
|
|
${S_ECHO} -n "$RESULT_DATA"
|