fbpx
Wikipedia

Ganglia (software)

Ganglia is a scalable, distributed monitoring tool for high-performance computing systems, clusters and networks. The software is used to view either live or recorded statistics covering metrics such as CPU load averages or network utilization for many nodes.

Ganglia
Stable release
3.7.2[1] / 29 June 2015; 7 years ago (29 June 2015)
Written inC, Perl, PHP, Python
Operating systemCross-platform
Available inEnglish
TypeDistributed monitoring
LicenseBSD license
Websitewww.ganglia.info

Ganglia software is bundled with enterprise-level Linux distributions such as Red Hat Enterprise Level (RHEL) or the CentOS repackaging of the same. Ganglia grew out of requirements for monitoring systems by Berkeley (University of California) but now sees use by commercial and educational organisations such as Cray, MIT, NASA and Twitter.

Ganglia

It is based on a hierarchical design targeted at federations of clusters. It relies on a multicast-based listen/announce protocol to monitor state within clusters and uses a tree of point-to-point connections amongst representative cluster nodes to federate clusters and aggregate their state. It leverages widely used technologies such as XML for data representation, XDR for compact, portable data transport, and RRDtool for data storage and visualization. It uses carefully engineered data structures and algorithms to achieve very low per-node overheads and high concurrency. The implementation is robust, has been ported to an extensive set of operating systems and processor architectures, and is currently in use on over 500 clusters around the world. It has been used to link clusters across university campuses and around the world and can scale to handle clusters with 2000 nodes.[2]

The ganglia system comprises two unique daemons, a PHP-based web front-end, and a few other small utility programs.

Ganglia Monitoring Daemon (gmond)

Gmond is a multi-threaded daemon which runs on each cluster node you want to monitor. Installation does not require having a common NFS filesystem or a database back-end, installing special accounts or maintaining configuration files.

Gmond has four main responsibilities:

  1. Monitor changes in host state.
  2. Announce relevant changes.
  3. Listen to the state of all other ganglia nodes via a unicast or multicast channel.
  4. Answer requests for an XML description of the cluster state.


Each gmond transmits information in two different ways:

Ganglia Meta Daemon (gmetad)

Federation in Ganglia is achieved using a tree of point-to-point connections amongst representative cluster nodes to aggregate the state of multiple clusters. At each node in the tree, a Ganglia Meta Daemon (gmetad) periodically polls a collection of child data sources, parses the collected XML, saves all numeric, volatile metrics to round-robin databases and exports the aggregated XML over a TCP socket to clients. Data sources may be either gmond daemons, representing specific clusters, or other gmetad daemons, representing sets of clusters. Data sources use source IP addresses for access control and can be specified using multiple IP addresses for failover. The latter capability is natural for aggregating data from clusters since each gmond daemon contains the entire state of its cluster.

Ganglia PHP Web Front-end

The Ganglia web front-end provides a view of the gathered information via real-time dynamic web pages. Most importantly, it displays Ganglia data in a meaningful way for system administrators and computer users. Although the web front-end to ganglia started as a simple HTML view of the XML tree, it has evolved into a system that keeps a colorful history of all collected data.

The Ganglia web front-end caters to system administrators and users. For example, one can view the CPU utilization over the past hour, day, week, month, or year. The web front-end shows similar graphs for memory usage, disk usage, network statistics, number of running processes, and all other Ganglia metrics.

The web front-end depends on the existence of the gmetad which provides it with data from several Ganglia sources. Specifically, the web front-end will open the local port 8651 (by default) and expects to receive a Ganglia XML tree. The web pages themselves are highly dynamic; any change to the Ganglia data appears immediately on the site. This behavior leads to a very responsive site, but requires that the full XML tree be parsed on every page access. Therefore, the Ganglia web front-end should run on a fairly powerful, dedicated machine if it presents a large amount of data.

The Ganglia web front-end is written in PHP, and uses graphs generated by gmetad to display history information. It has been tested on many flavours of Unix (primarily Linux) with the Apache webserver and the PHP5 module.

References

  1. ^ "Release 3.7.2".
  2. ^ Ganglia Monitoring System

External links

ganglia, software, this, article, needs, additional, citations, verification, please, help, improve, this, article, adding, citations, reliable, sources, unsourced, material, challenged, removed, find, sources, ganglia, software, news, newspapers, books, schol. This article needs additional citations for verification Please help improve this article by adding citations to reliable sources Unsourced material may be challenged and removed Find sources Ganglia software news newspapers books scholar JSTOR April 2014 Learn how and when to remove this template message Ganglia is a scalable distributed monitoring tool for high performance computing systems clusters and networks The software is used to view either live or recorded statistics covering metrics such as CPU load averages or network utilization for many nodes GangliaStable release3 7 2 1 29 June 2015 7 years ago 29 June 2015 Written inC Perl PHP PythonOperating systemCross platformAvailable inEnglishTypeDistributed monitoringLicenseBSD licenseWebsitewww wbr ganglia wbr infoGanglia software is bundled with enterprise level Linux distributions such as Red Hat Enterprise Level RHEL or the CentOS repackaging of the same Ganglia grew out of requirements for monitoring systems by Berkeley University of California but now sees use by commercial and educational organisations such as Cray MIT NASA and Twitter Contents 1 Ganglia 1 1 Ganglia Monitoring Daemon gmond 1 2 Ganglia Meta Daemon gmetad 1 3 Ganglia PHP Web Front end 2 References 3 External linksGanglia EditIt is based on a hierarchical design targeted at federations of clusters It relies on a multicast based listen announce protocol to monitor state within clusters and uses a tree of point to point connections amongst representative cluster nodes to federate clusters and aggregate their state It leverages widely used technologies such as XML for data representation XDR for compact portable data transport and RRDtool for data storage and visualization It uses carefully engineered data structures and algorithms to achieve very low per node overheads and high concurrency The implementation is robust has been ported to an extensive set of operating systems and processor architectures and is currently in use on over 500 clusters around the world It has been used to link clusters across university campuses and around the world and can scale to handle clusters with 2000 nodes 2 The ganglia system comprises two unique daemons a PHP based web front end and a few other small utility programs Ganglia Monitoring Daemon gmond Edit Gmond is a multi threaded daemon which runs on each cluster node you want to monitor Installation does not require having a common NFS filesystem or a database back end installing special accounts or maintaining configuration files Gmond has four main responsibilities Monitor changes in host state Announce relevant changes Listen to the state of all other ganglia nodes via a unicast or multicast channel Answer requests for an XML description of the cluster state Each gmond transmits information in two different ways Unicasting or Multicasting host state in external data representation XDR format using UDP messages Sending XML over a TCP connection Ganglia Meta Daemon gmetad Edit Federation in Ganglia is achieved using a tree of point to point connections amongst representative cluster nodes to aggregate the state of multiple clusters At each node in the tree a Ganglia Meta Daemon gmetad periodically polls a collection of child data sources parses the collected XML saves all numeric volatile metrics to round robin databases and exports the aggregated XML over a TCP socket to clients Data sources may be either gmond daemons representing specific clusters or other gmetad daemons representing sets of clusters Data sources use source IP addresses for access control and can be specified using multiple IP addresses for failover The latter capability is natural for aggregating data from clusters since each gmond daemon contains the entire state of its cluster Ganglia PHP Web Front end Edit The Ganglia web front end provides a view of the gathered information via real time dynamic web pages Most importantly it displays Ganglia data in a meaningful way for system administrators and computer users Although the web front end to ganglia started as a simple HTML view of the XML tree it has evolved into a system that keeps a colorful history of all collected data The Ganglia web front end caters to system administrators and users For example one can view the CPU utilization over the past hour day week month or year The web front end shows similar graphs for memory usage disk usage network statistics number of running processes and all other Ganglia metrics The web front end depends on the existence of the gmetad which provides it with data from several Ganglia sources Specifically the web front end will open the local port 8651 by default and expects to receive a Ganglia XML tree The web pages themselves are highly dynamic any change to the Ganglia data appears immediately on the site This behavior leads to a very responsive site but requires that the full XML tree be parsed on every page access Therefore the Ganglia web front end should run on a fairly powerful dedicated machine if it presents a large amount of data The Ganglia web front end is written in PHP and uses graphs generated by gmetad to display history information It has been tested on many flavours of Unix primarily Linux with the Apache webserver and the PHP5 module References Edit Release 3 7 2 Ganglia Monitoring SystemExternal links Edit Wikimedia Commons has media related to Ganglia software Free and open source software portalOfficial website Ganglia software on SourceForge Ganglia Freecode Wikimedia Ganglia instance Retrieved from https en wikipedia org w index php title Ganglia software amp oldid 1097908190, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.