Yes it is.

Take a look in the mail from Jeff Rodriguez in the mailinglist archive. He
wrote a script that adds a new ds to a rrdb.
I modified it a little because of problems with CET/CEST (european
winter/summer time). Dont know if that matters for you.

my modifications:
-----
        
########################################################################
        # Add the extra "<v> NaN </v>" under the RRAs. Just print normal
lines #
        
########################################################################
        if ($parse == 1)
        {
                if ($line =~ /CEST/)
                {
                        print substr($line, 0, 55);
                        print "<v> NaN </v>";
                        print substr($line, 55);
                        print "\n";
                }
                else #($line =~ /CET/)
                {
                        print substr($line, 0, 54);
                        print "<v> NaN </v>";
                        print substr($line, 54);
                        print "\n";
                }
        }
        else
        {
                print "$line\n";
        }
-----

Greetings

Stephan


> ----------
> Von:  Carles Xavier Munyoz Baldó[SMTP:[EMAIL PROTECTED]
> Gesendet:     Freitag, 19. September 2003 18:05
> An:   '[email protected]'
> Betreff:      [rrd-users] Add a new DS.
> 
> Hi,
> Is it possible to add a new DS to a previously created round robin
> database 
> file ?
> How ?
> 
> Greetings.
> ---
> Carles Xavier Munyoz Baldó
> [EMAIL PROTECTED]
> http://www.unlimitedmail.net/
> ---
> 
> --
> Unsubscribe mailto:[EMAIL PROTECTED]
> Help        mailto:[EMAIL PROTECTED]
> Archive     http://www.ee.ethz.ch/~slist/rrd-users
> WebAdmin    http://www.ee.ethz.ch/~slist/lsg2.cgi
> 

--
Unsubscribe mailto:[EMAIL PROTECTED]
Help        mailto:[EMAIL PROTECTED]
Archive     http://www.ee.ethz.ch/~slist/rrd-users
WebAdmin    http://www.ee.ethz.ch/~slist/lsg2.cgi

Reply via email to