2

我们被建议尝试将 Ganglia 作为我们集群的监控工具。

安装非常顺利,但我遇到了 gmond 和 gmetad 之间的连接问题。元节点只能看到(在网络上)本地 gmond 主机(本身)。

gmetad的配置(10.45.11.26是gmetad localhost):

data_source "hbase" 10.45.11.26

gmond的配置(10.45.11.27是gmond localhost):

cluster {
name = "hbase"
owner = "unspecified"
latlong = "unspecified"
url = "unspecified"
}

udp_send_channel {
host=10.45.11.26
port = 8649
ttl = 1
}

udp_recv_channel {
port = 8649
bind = 10.45.11.27
}

tcp_accept_channel {
port = 8649
}

在端口 8649 上从 gmetad 到 gmond 的 Telnet 返回 xml。我可以在 gmetad 节点 (tcpdump) 上看到来自 gmond 的 udp 流量

我在这里缺少什么?

4

1 回答 1

2

我不知道你是否还需要帮助,但它可以帮助添加

globals {
  (......)
  send_metadata_interval = 60 /*gmond heartbeats in secs */
 }

在 gmond.conf 中

在这种情况下,您可能需要在节点启动后等待 60 秒才能看到它。

于 2012-08-23T09:44:05.613 回答