Tag: monitoring
-
Verify your hosting
Tipp of the week: Monitoring events is one thing, proactive verifying is another one. You can monitor a growing range of hosting parameters using verify.hosting, an upcoming webservice I wrote.
-
Nagios monitoring the stunnel
To monitor your working lggr server you might want to check for the concurrent connected clients. Just add a shell script check_lggr.sh to your /usr/local/bin: #!/bin/bash count=$( /bin/netstat -a|/bin/grep 5140|/usr/bin/wc -l ) output=”Connected clients: $count” if [ $count -gt 7 ] then echo “OK – $output” exit 0 elif [ $count -gt 1 ] then […]