##acl for anti-spam #acl Known:read,write,delete,revert All:read It would be nice if we had some external monitoring for the UCC, which could use the Twitter feed to alert Wheel members and others if systems and services go down. In the first iteration Smokeping seems ideal for this. It can check for ICMP reachability, as well as checking the availability of a number of other service types (SSH, HTTP, POP3, IMAP, etc) through plugins. An installation could be set up both within the UCC (which could also check LDAP and other internal-only services) and external to UWA. Things that might suck: * smokeping configuration is kinda verbose * smokeping has a concept of priority based on alert type, not host (so if an alert condition matches in multiple cases on a single host only one alert will be sent) which means if madako goes down it will alert on -all- unavailable services... which could get a bit noisy. Notification could be done through a script similar to the following: {{{ #! /bin/bash ALERTNAME="$1" TARGET="$2" LOSS_PATTERN="$3" RTT_PATTERN="$4" ALERT_HOSTNAME="$5" RAISE="$6" if [ $RAISE -eq 1 ]; then MESSAGE="Smokeping: connectivity lost to $TARGET from $ALERT_HOSTNAME" else MESSAGE="Smokeping: connectivity restored to $TARGET from $ALERT_HOSTNAME" fi curl -q --config - --data-ascii "status=`echo "$MESSAGE"|tr ' ' '+'`" "http://twitter.com/statuses/u pdate.json" 1>/dev/null 2>&1 <20%,>20%,>20% comment = sudden packet loss }}}