HEX
Server: LiteSpeed
System: Linux s12873.lon1.stableserver.net 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: jairicem (1242)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //lib64/nagios/plugins/check_monarx
#!/bin/bash

if ! command -v monarx-agent >/dev/null 2>&1; then
  echo "UNKNOWN: Monarx is not installed on this server."
  exit 3
fi

monarx_active=$(service monarx-agent status 2>/dev/null | awk '/Active: active \(running\)/ {print $2,$3}')

if [[ "$monarx_active" == "active (running)" ]]; then
  echo "OK: Monarx is running."
  exit 0
else
  echo "CRITICAL: Monarx is not running on this server."
  exit 2
fi