Ganglia

From ArchWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Ganglia is a scalable distributed system monitor tool for high-performance computing systems such as clusters and grids. It allows the user to remotely view live or historical statistics (such as CPU load averages or network utilization) for all machines that are being monitored.

The Ganglia Wiki contains all the information you need to get started with Ganglia.

Installation

Ganglia is available as the gangliaAUR package, along with the web frontend ganglia-webAUR. There is also a reduced-dependency version named ganglia-minimalAUR, which would be appropriate on boxes where you do not require gmetad and want to avoid pulling in rrdtool as a dependency, which would in turn pull in Cairo and Mesa.

Ganglia Web Interface

The ganglia web frontend is available as the ganglia-webAUR package on the AUR.

You will also need a web server with a working PHP setup. The following sections include some example setups.

Make sure that the open_basedir setting in your /etc/php/php.ini includes /tmp, /usr/share/webapps and /var/lib/ganglia.

Nginx with php-fpm

Firstly, install the nginx and php-fpm packages.

Secondly, read the nginx article. Note its nginx#FastCGI and subsequent php-fpm sections. nginx#nginx configuration details a minimum nginx.conf to use.

An older minimal configuration for nginx would be something like this:

/etc/nginx/nginx.conf
events {
  worker_connections  1024;
}

http {
  include mime.types;
  default_type application/octet-stream;

  upstream php {
    server unix:/run/php-fpm/php-fpm.sock;
  }

  server {
    listen 80 default_server;

    root /usr/share/webapps;
    index index.php;

    location ~ \.php$ {
      fastcgi_pass php;
      include fastcgi.conf;
    }
  }
}

Then start gmetad.service, gmond.service, php-fpm.service and nginx.service.

Go to http://localhost/ganglia and check that your setup is working.

Troubleshooting

Issues with IP-address binding or undesirable hostnames

If bind_hostname = yes in the udp_send_channel section of gmond.conf, the gmond daemon will determine which IP to bind to (and report in the XML data) by determining the IP address of the default hostname. You should be able to replicate this behaviour with one of these commands:

$ hostname -i
$ host $(hostname)

The hostname to report is determined by asking the system to look up a hostname for the chosen IP address, in order to ensure the hostname is that by which other machines on the network identify the monitored machine:

$ host <ip-address>

The hostname listed at the top of the list is the one that will be reported by gmond, and will appear in the web UI. You can influence the returned hostname by modifying your /etc/hosts or /etc/nsswitch.conf files. In particular, watch out for placing myhostname before dns on the hosts line in /etc/nsswitch.conf. This will cause gmond to attempt to bind to a UDP port on 127.0.0.1, and it will fail to load.

If you are not able to achieve the desired behaviour, the hostname can be overridden in the gmond.conf file by adding the following lines to the globals section:

globals {
  ...
  override_hostname = myhostname.mydomain
  override_ip = 127.0.0.2
}

See also