答案1
这应该可以通过使用简短的 shell 脚本和程序状态测试来实现。例如
check program countCelery with path /usr/local/bin/countCelery.sh with timeout 600 seconds:
if status != 0 alert
使用如下的 shell 脚本:
#!/bin/bash
celery_count=$(pgrep -c Celery)
if [[ $celery_count -gt 4 ]]; then
exit 1
else:
exit 0
fi