Isso deve ser possível usando um script de shell curto e o teste de status do programa. Algo como
check program countCelery with path /usr/local/bin/countCelery.sh with timeout 600 seconds:
if status != 0 alert
com um script de shell como:
#!/bin/bash
celery_count=$(pgrep -c Celery)
if [[ $celery_count -gt 4 ]]; then
exit 1
else:
exit 0
fi