-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add possibility to set ganglia->globals->{deaf, host_dmax, send_metadata_interval} as well as use udp_send_channel->bind_hostname #18
Conversation
…gmond.conf [EL6] Adding possibility to set ganglia->globals->deaf parameter for gmond.conf
… for gmond.conf [EL6] Adding possibility to set ganglia->globals->host_dmax parameter for gmond.conf
…val for gmond.conf [EL6] Adding possibility to set ganglia->globals->send_metadata_interval for gmond.conf
…ond.conf [EL6] Adding possibility to set udp_send_channel >bind_hostname in gmond.conf
|
I'm happy to merge this functionality but the parameter names feel longer than in necessary. How about dropping the I realize the rspec tests in this module are pretty spartan but could you add the new params to the README? |
…ion in the README Renaming ganglia_globals_* variables to globals_* and adding description in the README
|
Thanks for your input and fast reply. |
| @@ -49,6 +55,7 @@ This class manages the configurtion of the Ganglia `gmond` daemon. | |||
| $udp_send_channel = [ | |||
| { port => 8649, host => 'test1.example.org', ttl => 2 }, | |||
| { port => 8649, host => 'test2.example.org', ttl => 2 }, | |||
| { bind_hostname => "yes", host => 'test3.example.org', ttl => 1 }, | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
W/S
|
I'm recovering from surgery and only have limited use of both hands for typing for another week. Don't worry about adding rspec tests for the moment as long as the existing suite continues to pass; I will take care of it when I can. Could you update all of the gmond templates? |
We needed to be able to set the following settings in gmond.conf and tested the provided patches under CentOS6.5:
globals {
...
deaf = yes
...
host_dmax = 691200 /_secs */
...
send_metadata_interval = 60 /_secs */
}
udp_send_channel {
...
bind_hostname = yes
...
}