我正在使用 ganglia 3.6.0 进行监控。我有一个应用程序可以收集、汇总集群中所有主机的一些指标。然后它将它们发送到 gmond。该应用程序运行在host1
.
这里的问题是,当设置 spoof = false 时,ganglia 最终认为这是仅来自host1
. 事实上,这些指标是由host1
集群中的所有主机生成的。
但是当设置 spoof=true 时,我希望 gmond 会接受我指定的主机名。但它 gmond 根本不接受这些指标。指标是未显示的事件host1
。
我使用的代码是从应用 Ganglia 3.1x 格式的 GangliaSink(来自 hadoop common)复制而来的。
xdr_int(128); // metric_id = metadata_msg
xdr_string(getHostName()); // hostname
xdr_string(name); // metric name
xdr_int(1); // spoof = True
xdr_string(type); // metric type
xdr_string(name); // metric name
xdr_string(gConf.getUnits()); // units
xdr_int(gSlope.ordinal()); // slope
xdr_int(gConf.getTmax()); // tmax, the maximum time between metrics
xdr_int(gConf.getDmax()); // dmax, the maximum data value
xdr_int(1); /*Num of the entries in extra_value field for
Ganglia 3.1.x*/
xdr_string("GROUP"); /*Group attribute*/
xdr_string(groupName); /*Group value*/
// send the metric to Ganglia hosts
emitToGangliaHosts();
// Now we send out a message with the actual value.
// Technically, we only need to send out the metadata message once for
// each metric, but I don't want to have to record which metrics we did and
// did not send.
xdr_int(133); // we are sending a string value
xdr_string(getHostName()); // hostName
xdr_string(name); // metric name
xdr_int(1); // spoof = True
xdr_string("%s"); // format field
xdr_string(value); // metric value
// send the metric to Ganglia hosts
emitToGangliaHosts();
我确实为每个指标指定了主机名。但它似乎没有被 gmond 使用/识别。