This is a disclaimer: Using the notes below is dangerous for both your sanity and peace of mind. If you still want to read them beware of the fact that they may be "not even wrong". Everything I write in there is just a mnemonic device to give me a chance to fix things I badly broke because I'm bloody stupid and think I can tinker with stuff that is way above my head and go away with it. It reminds me of Gandalf's warning: "Perilous to all of us are the devices of an art deeper than we ourselves possess." Moreover, a lot of it I blatantly stole on the net from other obviously cleverer persons than me -- not very hard. Forgive me. My bad. Please consider it and go away. You have been warned!
BIC Ganglia Setup
Some doc here http://www.ibm.com/developerworks/wikis/display/WikiPtype/ganglia

Server
/etc/ganglia/gmetad.conf (:source:) data_source “BIC Xen” matsya gridname “BIC” authority “http://matsya.bic.mni.mcgill.ca/ganglia case_sensitive_hostnames 1 (:sourceend:)
Client
/etc/ganglia/gmond.conf (:source:) cluster {
name = “BIC Xen” owner = “unspecified” latlong = “unspecified” url = “unspecified”
}
udp_send_channel {
mcast_join = 239.2.11.71
- mcast_join = 132.206.178.240
port = 8649 ttl = 1
}
udp_recv_channel {
mcast_join = 239.2.11.71 port = 8649 bind = 239.2.11.71
}
tcp_accept_channel {
port = 8649
} (:sourceend:)
Web Front-End
/etc/apache2/sites-enabled/000-default (:source:) <VirtualHost *:80>
ServerAdmin webmaster@localhost
…
<Directory “/usr/share/ganglia-webfrontend/”> Options Indexes FollowSymLinks MultiViews AllowOverride None Order deny,allow allow from 132.206.178. </Directory>
</VirtualHost> (:sourceend:)