I'm attempting to setup ganglia for multiple clusters.  I seem to be
having issues on how to actually keep the different clusters into separate
"grid" views.  Ganglia seems to want to just place everything into one
group.

Here's my config:

On the ganglia head node where I'm viewing the different clusters, this is
my gmetad.conf:

data_source "Blah Management" 10.40.210.21:8650
data_source "Cluster Development Integration" fssd-cbk0001:8649
fssd-pwb0001:8649 fssd-pbk0001:8649 fssd-cwb0001:8649 fssd-cst0001:8649

This is my gmond.conf on the head node:

/* Feel free to specify as many udp_send_channels as you like.  Gmond
   used to only support having a single channel */
udp_send_channel {
  mcast_join = 239.2.11.71
  port = 8650
  ttl = 1
}

udp_send_channel {
  host = 10.40.210.21
  port = 8650
}

/* You can specify as many udp_recv_channels as you like as well. */
udp_recv_channel {
  mcast_join = 239.2.11.71
  port = 8649
  bind = 239.2.11.71
}

udp_recv_channel {
  port = 8649
  family = inet4
}

udp_recv_channel {
  mcast_join = 239.2.11.71
  port = 8650
  bind = 239.2.11.71
}

udp_recv_channel {
  port = 8650
  family = inet4
}


/* You can specify as many tcp_accept_channels as you like to share
   an xml description of the state of the cluster */
tcp_accept_channel {
  port = 8649
}

tcp_accept_channel {
  port = 8650
}

---

This is the gmond.conf on a compute node:

/* Feel free to specify as many udp_send_channels as you like.  Gmond
   used to only support having a single channel */
udp_send_channel {
  mcast_join = 239.2.11.71
  port = 8649
  ttl = 1
}

udp_send_channel {
  host = 10.40.210.21
  port = 8649
}

/* You can specify as many udp_recv_channels as you like as well. */
udp_recv_channel {
  mcast_join = 239.2.11.71
  port = 8649
  bind = 239.2.11.71
}

/* You can specify as many tcp_accept_channels as you like to share
   an xml description of the state of the cluster */
tcp_accept_channel {
  port = 8649
}

---

The problem is, I get an "unspecified" Grid with 2 sources

I get one node in "Cluster Development Integration" and ALL nodes in "BLAH
Management".

Can I get an example of this:

I have cluster A and cluster B.  I want these machines to remain in their
perspective groups.

Any tips?  I'm assuming I have something borked with my udp send and
receive channels, but a good simple example would help sort out my brain
on this one.

Thanks
-jeremy


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Ganglia-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ganglia-general

Reply via email to