i just uploaded a new snapshot of 2.6.0 with the zio patch and updated
autoconf scripts which correctly build or don't build gexec.
http://matt-massie.com/ganglia/
thanks for the feedback ivan and the patch antonin!
-matt
On Mon, 2004-03-22 at 13:54, Matt Massie wrote:
> strange... the gexec stu
antonin-
thanks for the patch! it's added to the distribution now. thanks for
catching the mistake before we released 2.6.0.
-matt
On Mon, 2004-03-22 at 04:26, Antonin Karasek wrote:
> There is my patch:
> $ diff zio.c ../../ganglia/lib/zio.c
> 94,96c94,95
> < free( io->buf );
> < free( i
> not that I'm falling for your bait, but would you care to post your
> perl stuff. Just in case someone has to much free time available :-)
here is a perl function which pulls all the data out of a round-robin
database. you must have rrdtool installed since this function runs
rrdtool dump to get
I believe the data_souce name in gmetad.conf really is a tiebreaker for the
case that remote names are the same. Truthfully, you could do the
tie-breaking automatically in the code, so I dont think the name in
gmetad.conf is necessary.
-Federico
- Original Message -
From: "Matt Massie" <[
The only question I have is how will the webfrontend scripts handle the
possibility of different rrd formats. Will they read the gmetad config
file to see what format the rrds were created with and give different
options for plotting the data?
How will the webfrontend be modified to take advanta
On Mon, 2004-03-22 at 09:46, Jason A. Smith wrote:
> The only question I have is how will the webfrontend scripts handle the
> possibility of different rrd formats. Will they read the gmetad config
> file to see what format the rrds were created with and give different
> options for plotting the
The only issue I see with using the IP addresses for RRD names is that it
becomes harder to interpret what the contents of /var/lib/ganglia/rrds is.
For example, I could not say "email me the RRDs for every machine in the
first rack", because identifying them would be harder.
However, we never mes
--- Matt Massie <[EMAIL PROTECTED]> wrote:
> On Sun, 2004-03-21 at 10:35, Martin Knoblauch wrote:
> > Matt,
> >
> > I asked before - is the default setup compatible with pre-2.6.0?
>
> no. i (or someone with a little time?) will write a little
> perl/ruby/python script to convert all pre 2.6.0
There is my patch:
$ diff zio.c ../../ganglia/lib/zio.c
94,96c94,95
< free( io->buf );
< free( io );
<
---
> /* free( io->buf );
> free( io ); You can't call "free" and then try io->compression_level
:o) */
98a98,99
> free( io->buf );
> free( io ); /* Copied there ... */
102a1