Created
January 17, 2012 19:02
-
-
Save KrisBuytaert/1628165 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
udp_recv_channel { | |
port = 8649 | |
} | |
udp_send_channel { | |
host = 10.42.42.11 | |
port = 8649 | |
ttl = 1 | |
} | |
tcp_accept_channel { | |
port = 8649 | |
} | |
/* Channel to receive sFlow datagrams */ | |
#udp_recv_channel { | |
# port = 6343 | |
#} | |
/* Optional sFlow settings */ | |
#sflow { | |
# udp_port = 6343 | |
# accept_vm_metrics = no | |
#} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat gmetad.conf | grep -v "^#" | |
data_source "my cluster" 10.42.42.11 | |
case_sensitive_hostnames 1 | |
globals { | |
daemonize = yes | |
setuid = yes | |
user = nobody | |
debug_level = 0 | |
max_udp_msg_len = 1472 | |
mute = yes | |
deaf = no | |
allow_extra_data = yes | |
host_dmax = 86400 /*secs */ | |
host_tmax = 20 /*secs */ | |
cleanup_threshold = 300 /*secs */ | |
gexec = no | |
send_metadata_interval = 60 /*secs */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment