> Process XML (Athlon 2.0 ghz Cluster): XML_ParseBuffer() error at line
> 146: not well-formed (invalid token)
I was seeing the exact same problem. After a little back-and-forth with
Matt, we narrowed it down to non-blocking writes. In your
tcp_accept_channel entry of gmond.conf, add a "timeout = -1" line (or
modify the existing one if it exists.) For example, my gmond.conf looks
like this:
/* channel to export xml on xml_port */
tcp_accept_channel {
port = "8649"
timeout = -1
/* your trusted_hosts assuming ipv4 mask*/
acl{
default="deny"
access {
ip=192.168.0.0
mask=16
action="allow"
}
}
}
Everything worked fine after that.
Regards,
Robert.