# $Id: gmond.conf,v 1.3 2004/01/20 19:15:23 sacerdoti Exp $ # This is the configuration file for the Ganglia Monitor Daemon (gmond) # Documentation can be found at http://ganglia.sourceforge.net/docs/ # # To change a value from it's default simply uncomment the line # and alter the value ##################### # # The name of the cluster this node is a part of # default: "unspecified" name "{{ ganglia_gmond_cluster }}" # # The owner of this cluster. Represents an administrative # domain. The pair name/owner should be unique for all clusters # in the world. # default: "unspecified" owner "{{ ganglia_gmond_cluster_owner }}" # # The latitude and longitude GPS coordinates of this cluster on earth. # Specified to 1 mile accuracy with two decimal places per axis in Decimal # DMS format: "N61.18 W130.50". # default: "unspecified" # latlong "N32.87 W117.22" # # The URL for more information on the Cluster. Intended to give purpose, # owner, administration, and account details for this cluster. # default: "unspecified" # url "http://www.mycluster.edu/" # # The location of this host in the cluster. Given as a 3D coordinate: # "Rack,Rank,Plane" that corresponds to a Euclidean coordinate "x,y,z". # default: "unspecified" location "{{ ganglia_gmond_location }}" # # The multicast channel for gmond to send/receive data on # default: 239.2.11.71 mcast_channel {{ ganglia_gmond_mcast_addr }} # # The multicast port for gmond to send/receive data on # default: 8649 mcast_port {{ ganglia_gmond_cluster_port }} # # The multicast interface for gmond to send/receive data on # default: the kernel decides based on routing configuration # mcast_if eth1 # # The multicast Time-To-Live (TTL) for outgoing messages # default: 1 # mcast_ttl 1 # # The number of threads listening to multicast traffic # default: 2 # mcast_threads 2 # # Which port should gmond listen for XML requests on # default: 8649 xml_port {{ ganglia_gmond_cluster_port }} # # The number of threads answering XML requests # default: 2 # xml_threads 2 # # Hosts ASIDE from "127.0.0.1"/localhost and those multicasting # on the same multicast channel which you will share your XML # data with. Multiple hosts are allowed on multiple lines. # Can be specified with either hostnames or IP addresses. # default: none # trusted_hosts 1.1.1.1 1.1.1.2 1.1.1.3 \ # 2.3.2.3 3.4.3.4 5.6.5.6 trusted_hosts {{ ganglia_gmetad_host }} # # The number of nodes in your cluster. This value is used in the # creation of the cluster hash. # default: 1024 # num_nodes 1024 # # The number of custom metrics this gmond will be storing. This # value is used in the creation of the host custom_metrics hash. # default: 16 # num_custom_metrics 16 # # Run gmond in "mute" mode. Gmond will only listen to the multicast # channel but will not send any data on the channel. # default: off mute off # # Run gmond in "deaf" mode. Gmond will only send data on the multicast # channel but will not listen/store any data from the channel. # default: off deaf off # # Run gmond in "debug" mode. Gmond will not background. Debug messages # are sent to stdout. Value from 0-100. The higher the number the more # detailed debugging information will be sent. # default: 0 # debug_level 10 # # If you don't want gmond to setuid, set this to "on" # default: off # no_setuid on # # Which user should gmond run as? # default: nobody setuid ganglia # # If you do not want this host to appear in the gexec host list, set # this value to "on" # default: off # no_gexec on # # If you want any host which connects to the gmond XML to receive # data, then set this value to "on" # default: off all_trusted on # # If you want dead nodes to "time out", enter a nonzero value here. If specified, # a host will be removed from our state if we have not heard from it in this # number of seconds. # default: 0 (immortal) # host_dmax 108000