[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-19 Thread Rob Conway
cs so I can fit two graphs side by side and two graphs high on my web page. i.e. see 4 graphs on one page. - Original Message - From: "Alex van den Bogaerdt" <[EMAIL PROTECTED]> To: Sent: Sunday, November 19, 2006 12:11 PM Subject: [rrd-users] Re: Help with Bash script

[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-19 Thread Simon Hobson
Alex van den Bogaerdt wrote: > > etime=`date +%s` >> step=300 >> etime=$(( ${etime} - ( ${etime} % ${step} ) )) > >etime=$(( ${etime} / ${step} * ${step} )) > >is 10% faster, at least on my system. I tried this by looping 100,000 >times doing those calculations, several runs. Bash uses intege

[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-18 Thread Alex van den Bogaerdt
On Sun, Nov 19, 2006 at 10:07:47AM +1100, Rob Conway wrote: > ## Aquarium PH GRAPH ## > rrdtool graph /website/ph1d.png --start e-1d --end $etime \ > --upper-limit 8.0 --lower-limit 6.2 --units-length 2 \ > --rigid --slope-mode --width 426 --height 200 \ > --title "pH" --vertical-label "PH" --in

[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-18 Thread Rob Conway
Thanks for the input guy's I converted my end time however the generation of 6 graphs still takes 30 seconds on my 266 mhz processor. The script below only shows one rrdtool graph statement however the other 5 graphs statements are the same. Is there anything else I can do to optimise the gra

[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-18 Thread Alex van den Bogaerdt
On Sat, Nov 18, 2006 at 09:32:15AM +, Simon Hobson wrote: > Rob Conway wrote: > > >I just use "date +%s" to get the unix time but how can I easily > >round this value ? > > etime=`date +%s` > step=300 > etime=$(( ${etime} - ( ${etime} % ${step} ) )) etime=$(( ${etime} / ${step} * ${step} )

[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-18 Thread Tobi Oetiker
Hi Simon, I would use perl -e 'print "".localtime(time - time % 300)' > Rob Conway wrote: > > >I just use "date +%s" to get the unix time but how can I easily > >round this value ? > > etime=`date +%s` > step=300 > etime=$(( ${etime} - ( ${etime} % ${step} ) )) > > Now, can someone show me ho

[rrd-users] Re: Help with Bash script to calc end-time in multiples of 300 ?

2006-11-18 Thread Simon Hobson
Rob Conway wrote: >I just use "date +%s" to get the unix time but how can I easily >round this value ? etime=`date +%s` step=300 etime=$(( ${etime} - ( ${etime} % ${step} ) )) Now, can someone show me how to convert the resulting end time to a human readable form - eg so I can use it in a gpri

[rrd-users] Re: Help for GPRINT

2006-10-10 Thread Alex van den Bogaerdt
On Tue, Oct 10, 2006 at 08:52:00AM +0200, [EMAIL PROTECTED] wrote: > I use rrdtool with mrtg on a windows server, no problems for creating > rrdtool graphs, but i have a little problem with the GPRINT comand: Nope, you have a problem with command.com or cmd.exe :) > rrdtool graph test.png --im

[rrd-users] Re: help needed here !!!!1

2006-06-05 Thread Georges Toth
> 2.I wanted to read the data from RRDTOOL into php web pages. Please suggest > me some ways to go ahead. I am helpless now regaring creating web pages > with the data from RRDs. > Thanks in advance. One method I've used is to execute the command for generating the graph in php. And then opening

[rrd-users] Re: help

2005-10-12 Thread Andreas Maus
On Wed, Oct 12, 2005 at 08:43:19AM +0100, ashwin dandwate wrote: Hi. > dear users > > we are a bunch of struggling students , trying to learn RRD. can you help us > by sending some basic code for generating graphs. Well ... Would you be more specific with the word "code" ? Which programming lang

[rrd-users] Re: Help on RRDTOO monitoring cpu loadavg needed!

2005-09-05 Thread CHEW YEW CHOONG
Firstly, thanks for help from others. I finally got it working by fixing the numbers input to rrdtool. Apparently, just need to remove the eol character from the source. This is how i do it, $line = qx/uptime/; # to chop the trailing newline chomp $line; -- Unsubscribe mailto:[EMAIL P

[rrd-users] Re: Help on RRDTOO monitoring cpu loadavg needed!

2005-09-03 Thread Alex van den Bogaerdt
On Sat, Sep 03, 2005 at 06:31:10PM +0900, "CHEW YEW CHOONG" wrote: > Thanks for the comment and suggestion. As im very to rrdtool and perl, > it will take me sometimes to learn how to print those figure to file > with timestamp and the computing part. Perhaps you should learn one thing at a time?

[rrd-users] Re: Help on RRDTOO monitoring cpu loadavg needed!

2005-09-03 Thread CHEW YEW CHOONG
Hi Alex, Thanks for the comment and suggestion. As im very to rrdtool and perl, it will take me sometimes to learn how to print those figure to file with timestamp and the computing part. Anyway, i have add a few lines into the script: my $total = $min1 + $min5 + $min15; print "$min1 $min5

[rrd-users] Re: Help on RRDTOO monitoring cpu loadavg needed!

2005-09-03 Thread Alex van den Bogaerdt
On Sat, Sep 03, 2005 at 08:19:09AM +0900, "CHEW YEW CHOONG" wrote: > Im learning perl and rrdtool now. I try to make > rrdtool to monitoring cpu loadavg. Everythings seems > working (rrd db created, updated, rrd images created, > updated. i check with doing a ls -l and compare the > timestam

[rrd-users] Re: help with librrd_th

2005-07-31 Thread winkey
well in my case i compiled rrdtool from source and it installed as a library AND a program, the headers are in /usr/include or /usr/local/include. most of the functions don't need alot in the way of args. you pass them an int of how many args and a char ** array of the args ie: argc, argv. like yo

[rrd-users] Re: help with librrd_th

2005-07-29 Thread Kevin C.
> "Stephen Hall writes:" >> >> Can someone >> tell me how to call rrd_get_context() and interpret the results. Or >> better >> yet, can someone point me to a document that explains how to use the C >> API >> (multi-threaded or otherwise)? > > Since the silence on this topic was deafening I c

[rrd-users] Re: help with librrd_th

2005-07-29 Thread Stephen Hall
"Stephen Hall writes:" > > Can someone > tell me how to call rrd_get_context() and interpret the results. Or better > yet, can someone point me to a document that explains how to use the C API > (multi-threaded or otherwise)? Since the silence on this topic was deafening I conclude that this

[rrd-users] Re: Help with Libraries....

2005-06-08 Thread tony
I have done what Kalin has said, there error message has now got a bit smaller! :o) [EMAIL PROTECTED] perl-shared]# /var/rrd/scripts/rrd_load_graph.pl Can't load '/usr/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/auto/RRDs/RRDs.so' for module RRDs: librrd.so.2: cannot open shared object fi

[rrd-users] Re: Help understanding rrdtool

2005-05-19 Thread Alex van den Bogaerdt
On Wed, May 18, 2005 at 11:21:33AM -0300, Maicon Stihler wrote: > Im a newbie on rrdtool and Ive been reading the tutorials on the > website, but Im having some trouble to understand it. > > I want to make graphs about CPU utilization, lets say: > 1 Day - five minute average > 1 Week - 30 minute

[rrd-users] Re: Help on listing available DEF fields

2005-04-15 Thread Serge Maandag
> "rddtool info" returned me the data below, can you give me a > sample command to use xport to retrieve the data in this > file? I couldn't imagine how to find a DEF parameter for this info. Here's one for example: rrdtool xport \ --start now-1h --end now \ DEF:xx=172.20.254.1_

[rrd-users] Re: Help on listing available DEF fields

2005-04-14 Thread Pedro Zorzenon Neto
On Thu, Apr 14, 2005 at 04:40:09PM +0200, Serge Maandag wrote: > > Is there any way to list all available fields in RRD > > database? > > Yes, > > rrdtool info file.rrd | grep type > > Serge. Thanks for your answers. Now another related question, I hope this is the last one :-) "rddtool info

[rrd-users] Re: Help on listing available DEF fields

2005-04-14 Thread Serge Maandag
> Is there any way to list all available fields in RRD > database? Yes, rrdtool info file.rrd | grep type Serge. - Op de inhoud van dit e-mailbericht en de daaraan gehechte bijlagen is de inhoud van de volgende disclaimer van toepassing: http://www.zeelandnet.nl/disclaimer.php -

[rrd-users] Re: Help a new and slightly lost user! :(

2004-11-14 Thread Michael Thompson
On Sunday 14 November 2004 19:52, Alex van den Bogaerdt wrote: > If you really expect me to debug your program, please hire me. I dont expect anything. Just a newbie looking for help.. ps. Dont beg. -- Unsubscribe mailto:[EMAIL PROTECTED] Helpmailto:[EMAIL PROTECTED] Archive http://

[rrd-users] Re: Help a new and slightly lost user! :(

2004-11-14 Thread Alex van den Bogaerdt
On Sun, Nov 14, 2004 at 07:40:02PM +, Michael Thompson wrote: > > The difference between each reading is not something you want to > > use rrdtool for. For these kind of applications you should choose > > sql, access, or even a flat file. > > > Is that not what DERIVE Should do? Yes, that is

[rrd-users] Re: Help a new and slightly lost user! :(

2004-11-14 Thread Michael Thompson
On Sunday 14 November 2004 19:20, Alex van den Bogaerdt wrote: > On Sat, Nov 13, 2004 at 10:20:09AM +, Michael Thompson wrote: > > Sorry, I just read that message and realised it does not make any sense! > > Indeed, "it does not work" is a bit too vague > > > What is happening is that it is lo

[rrd-users] Re: Help a new and slightly lost user! :(

2004-11-14 Thread Alex van den Bogaerdt
On Sat, Nov 13, 2004 at 10:20:09AM +, Michael Thompson wrote: > Sorry, I just read that message and realised it does not make any sense! Indeed, "it does not work" is a bit too vague > What is happening is that it is logging data, but it is logging the verticle > scale as k, it needs to sh

[rrd-users] Re: Help a new and slightly lost user! :(

2004-11-13 Thread Michael Thompson
On Saturday 13 November 2004 09:50, Michael Thompson wrote: Sorry, I just read that message and realised it does not make any sense! What is happening is that it is logging data, but it is logging the verticle scale as k, it needs to show the difference in packets between each reading, and not

[rrd-users] Re: help with cdef

2004-08-15 Thread Alex van den Bogaerdt
On Sat, Aug 14, 2004 at 10:20:16AM -0700, winkey wrote: > i cannot seem to figure this out, i get results i do not expect > > rrdtool graph \ > /home/rush/public_html/weather/metar/dir.gif \ > --color=BACK#CC \ > --color=CANVAS#CC \ > --title="Daily Wind Di

[rrd-users] Re: Help on rrdtool " cmd_head3

2004-08-02 Thread Koshti, Manoj
While compiling rrdtool I get this error. Can some one guide me what does it means? Can't locate object method "cmd_head3" via package "Pod::Man" at /usr/local/lib/perl5/5.6.0/Pod/Man.pm line 463, line 225. make[1]: *** [rrd-beginners.1] Error 255 Thanks Manoj Koshti CCIE 13142, CCIP --

[rrd-users] Re: help with GAUGE and RRAs

2004-08-01 Thread Hugo van der Kooij
On Sun, 1 Aug 2004, M. Yu wrote: > I need to monitor, among other things, the Signal-to-Noise Ratio (SNR) > of several cable modems to get an accurate picture of the health of the > cable plant. Since I will be monitoring 100s of cable modems (CMs) and > each CM's SNR values will be stored for a

[rrd-users] Re: help with graph issue

2004-02-27 Thread Pavel Ruzicka
Hello, > But would like the graphs it produces to be filled in below , like MRTG > graphs are. You must use AREA (and STACK) on place LINE. See http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/manual/rrdgraph.html > I thought the setting '--alt-y-mrtg' did that but I seem to get an error > w

[rrd-users] Re: help a newbie pls

2004-02-23 Thread Alex van den Bogaerdt
On Mon, Feb 23, 2004 at 05:14:46PM +0200, Ionescu Ionut wrote: > So i'm gonna put here all the steps i took since i started using mrtg & > rrd tool > > > 0. use Win2k > 1. download & install perl (ActivePerl-5.8.2.808-MSWin32-x86.msi) > 2. download mrtg (mrtg-2.10.13.zip) > 3. use cfgmaker t

[rrd-users] Re: help a newbie pls

2004-02-23 Thread Ionescu Ionut
ave errors when i try to graph something out of nothing (?) This is my current status i don't know what else to do, as most docs and info are for unix users :( ...help...please...10x - Original Message ----- From: "Alex van den Bogaerdt" <[EMAIL PROTECTED]>

[rrd-users] Re: help a newbie pls

2004-02-23 Thread Alex van den Bogaerdt
On Mon, Feb 23, 2004 at 03:10:25PM +0100, Martin Horak wrote: > My simplest command: > > rrdtool graph test.png -s now-10h -e now > DEF:a='/var/www/data/rrd/routersce0.rrd':s1in:AVERAGE LINE1:a#ff I can beat that :) I'm not entirely sure about the short form of the colour. Path to png and t

[rrd-users] Re: help a newbie pls

2004-02-23 Thread Martin Horak
My simplest command: rrdtool graph test.png -s now-10h -e now DEF:a='/var/www/data/rrd/routersce0.rrd':s1in:AVERAGE LINE1:a#ff (all on one line) Generates quite nice image into working directory. Ionescu Ionut wrote: > I've tried the uppercase variant with the same result... > I've tried t

[rrd-users] Re: help a newbie pls

2004-02-23 Thread Martin Horak
It seems that rrdtool don't understand the parameters. Did you try uppercase DEF and AVERAGE, or using ' instead of "? Maybe backslashes are problematic - try to escape them. I use Linux version and don't have problems/experience with backslashes. Martin Ionescu Ionut wrote: > this is what i t

[rrd-users] Re: help a newbie pls

2004-02-23 Thread Ionescu Ionut
this is what i typed on cmd prompt: rrdtool graph "c:\test.png" -s 1077529905 -e 1077530205 -t "Test" def:xx="c:\mrtghtml\log\10.0.0.1_1.rrd":ds0:average def:yy="c:\mrtghtml\log\10.0.0.1_1.rrd":ds1:average and the error message is: ERROR: can't parse 'def:xx=c:\mtrghtml\log\10.0.0.1_1.rrd:ds

[rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8

2004-01-18 Thread Dave Lugo
On Sun, 18 Jan 2004, Tanveer Ahmad Dar wrote: > > Hi again, > >No i havent specified that but how would we do that as i dont find CC in > help . can you gimme any clue on that .thanx > It depends what shell you use. for csh and tcsh, I think you'd say: setenv CC /path/to/gcc for sh/

[rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8

2004-01-18 Thread Tanveer Ahmad Dar
t; Cc: Sent: Sunday, January 18, 2004 7:56 AM Subject: Re: [rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8 > On Sun, 18 Jan 2004, Tanveer Ahmad Dar wrote: > > > > Hi, > > Yah it does exist in the same directory as the make file is using and > > that

[rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8

2004-01-18 Thread Dave Lugo
On Sun, 18 Jan 2004, Tanveer Ahmad Dar wrote: > > Hi, > Yah it does exist in the same directory as the make file is using and > that directory is also specified in PATH .Actually if i execute the > following command diectly i get the same message that means that the > only issue is with cc itself

[rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8

2004-01-18 Thread Tanveer Ahmad Dar
7:15 AM Subject: [rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8 > On Sun, 18 Jan 2004, Tanveer Ahmad Dar wrote: > > > I have Solaris 8 and i am trying to compile RRD but getting some > > strange error couldn't find the clue Can anyone help me ou

[rrd-users] Re: HELP needed in Problem while compiling RRD on SOLARIS 8

2004-01-18 Thread Dave Lugo
On Sun, 18 Jan 2004, Tanveer Ahmad Dar wrote: > I have Solaris 8 and i am trying to compile RRD but getting some > strange error couldn't find the clue Can anyone help me out in this > .While i do make to RRD i get an error message saying as below in Bold: > > cc -c -I../src -I../gd1.3 -

[rrd-users] Re: Help: how do I put '%' in GPRINT?

2004-01-15 Thread Michael Boman
On Fri, 2004-01-16 at 00:29, Yi Chu wrote: > I want to display 's0 54.1%' on the graph (utilization > for interface s0). I can do 's0 54.1' with GPRINT, > but have trouble to put in the '%'. > > Here is what I hve for GPRINT > > "GPRINT:BtoApct:MAX:$intface %4.1lf" > > which produced '54'. I

[rrd-users] Re: help with error please

2003-12-19 Thread Stephan Harren
Try the following: - Make sure that your output file (GIF/PNG) is formatted like this: c:\\inetpub\\graphs\\output.gif - Make sure that your RRD definitions are like this: c\\:\\inetpub\\wwwroot\\mrtg\\rrdtool\\drmateo_e4.rrd:ds0:AVERAGE If this doesn't work (I use this in my perl scripts),

[rrd-users] Re: Help Setting Up RRDatabase

2003-10-16 Thread Alex van den Bogaerdt
On Wed, Oct 15, 2003 at 02:54:59PM -0400, Blake Crosby wrote: > I'm havng difficulty understanding the relationship between heartbeat and > step. Don't look for a close relationship; there isn't. > I have 4 values that I would like to place in the rrd database every 30 min > (11 and 44 minutes pa

[rrd-users] Re: Help about creating graphs

2003-07-13 Thread Alex van den Bogaerdt
On Sun, Jul 13, 2003 at 05:16:02PM -0300, [EMAIL PROTECTED] wrote: > And I did this to make gif files: > /usr/local/rrdtool-1.0.42/bin/rrdtool graph test.gif --start 0 \ > DEF:in_bytes=/var/local/flows/graphs/total.rrd:in_bytes:AVERAGE \ > LINE2:in_bytes#FF000:"in_bytes" Go back t

[rrd-users] Re: Help

2003-06-11 Thread Markus Mayer
On Wed, Jun 11, 2003 at 10:48:57AM -0400, Dave Parrott wrote: > Any Ideas or links where I can find the information? > > > gcc -c -I../src -I../gd1.3 -xO3 -xdepend [...] You are using Sun Workshop/Forte compiler-flags with GCC. GCC doesn't understand -xO3 (it's just -O3) and -xdepend (I don't kn

[rrd-users] Re: Help

2003-06-11 Thread Dave Parrott
Any Ideas or links where I can find the information? Thanks in Advance, dp - Original Message - From: "Dave Parrott" <[EMAIL PROTECTED]> To: Sent: Wednesday, June 11, 2003 12:24 AM Subject: [rrd-users] Help > When trying to run make site-perl-install I get the following errors Ive >

[rrd-users] Re: Help with counter wrap

2003-06-05 Thread Alejandro D. Garin
On Thursday 05 June 2003 06:24, Iñaki Martínez wrote: > Hello Alejandro Diego Garin!!! > > > I have problems with the counters and the wrap issue. My front-end solve > > the problem of a reset checking the uptime but in case of counters wrap > > I am with problems. > > > > RRD database configuratio

[rrd-users] Re: Help with counter wrap

2003-06-05 Thread Iñaki Martínez
Hello Alejandro Diego Garin!!! > I have problems with the counters and the wrap issue. My front-end solve > the problem of a reset checking the uptime but in case of counters wrap > I am with problems. > > RRD database configuration: > > "DS:testmeasure:COUNTER:1200:U:1250" >

[rrd-users] Re: help me compiling remstats

2003-05-27 Thread Serge Maandag
It all depends on which platform you're using. Check whether you have installed libgd and the perl gd module: http://stein.cshl.org/WWW/software/GD/ Serge. -Original Message- From: Remy Bouba [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 11:40 AM To: rrd-users@list.ee.ethz.ch Sub

[rrd-users] Re: help with remstats

2003-05-08 Thread Thomas Erskine
At 04:09 2003-05-07, David IMANACHE wrote: >Hi everybody! > >I'm a new user of remstats and i have some problems to configure it. I'm >working with Debian and i've installed all remstats packets . I've also >installed remstats-servers packet on the remote station i want to graph. >I've read t

[rrd-users] Re: Help with running remstats

2003-03-18 Thread gab.seun jones.ewulomi
Hi Thomas, Have downloaded and compiled it very fine. You just save me from having to compile a old version of perl. Thank you very much. The only problem now is starting the remstats processes using ./run-remstats2 has you suggested I get this error in the LAST/LOGs --

[rrd-users] Re: Help me

2003-03-17 Thread listuser
Jose, I imagine you intended to mail the rrd-users mailing list and not myself. The address is [EMAIL PROTECTED] I am quite new to RRDTool myself but I've found the tutorials to be quite useful. http://www.rrdtool.org/tutorial/ It will give you a good start. Also the mailing list archive wi

[rrd-users] Re: Help with running remstats

2003-03-13 Thread gab.seun jones.ewulomi
Hi Thomas, Thank you very much for your reply it. My apologies I didnt mention I was running apache(every information counts). I had no problems compiling and installing the dependencies. I just couldnt seem to get my head round the configuration even when I used the -h switch for help. im sti

[rrd-users] Re: Help with running remstats

2003-03-13 Thread Thomas Erskine
-1.0.9b) but decided to drop down to >the 1.00a4 version because I was getting to many errors. > >My apologies on the long reply. But your help or anyones help will be >greatly appreciated >regards > > > > > >>From: Thomas Erskine <[EMAIL PROTECTED]&

[rrd-users] Re: Help with running remstats

2003-03-12 Thread gab.seun jones.ewulomi
mas Erskine <[EMAIL PROTECTED]> >To: "gab.seun jones.ewulomi" ><[EMAIL PROTECTED]>,rrd-users@list.ee.ethz.ch >Subject: [rrd-users] Re: Help with running remstats >Date: Wed, 12 Mar 2003 05:57:21 -0500 > >At 05:17 2003-03-11, gab.seun jones.ewulomi wrote: > &

[rrd-users] Re: Help with running remstats

2003-03-12 Thread Thomas Erskine
At 05:17 2003-03-11, gab.seun jones.ewulomi wrote: >Hi, > >Can anyone help me. I cant seem to get remstats to work. Iv followed the >documentation in and out and I still dont know what is wrong. > >Any help will be greatly appreciated > >< >[EMAIL PROTECTED] bin]# /usr/bin

[rrd-users] Re: HELP needed with "rrdtool tune"

2002-09-25 Thread Alex van den Bogaerdt
On Wed, Sep 25, 2002 at 03:01:48PM +0200, Braendle, Juergen wrote: > I ran into a performance problem with my SUN monitoring a lot of things with > MRTG and RRD Hmm.. perl, probably. > So now I want to change the update intervall for some data from the default > 5 minutes to 10 minutes > The m

[rrd-users] Re: help - no graphs or html pages generated

2002-08-22 Thread Gerhard Ecaroh Froehlich
Hi "Ringler"! You should have been reading manuals. After MRTG migrating to logformat RRDTool MRTG does not graph anymore. This what is written in the docs. You have to write your own Tool which uses "rrdtool graph" to generate Graphs and some cgi code which will deliver it via Webserver and HTML

[rrd-users] Re: help - no graphs or html pages generated

2002-08-22 Thread emily, amanda
RRDtool does not create graphs, you have to find a front end to use to create the HTML and graphs. For some of these scripts, you may wish to switch to Apache and either mod_perl or fastcgi since with my experience running these scripts on IIS has been extremely slow when generating the images.

[rrd-users] Re: Help rrd log

2002-07-24 Thread Sawyer, David
Check out http://people.ee.ethz.ch/~oetiker/webtools/mrtg/mrtg-rrd.html HTH David Sawyer Email: [EMAIL PROTECTED] www.geocities.com/mrtg_daemon MRTG/RRDTool daemon for Windows9x/ME/2k MRTG GUI ConfigMaker for Windows9x/ME/2k TopTalker - See who the top talkers are on your network --

[rrd-users] Re: Help wint customization

2002-05-29 Thread Alex van den Bogaerdt
Bryan Vest wrote: > I can see that this line is pulling the numbers from somewhere: > > "GPRINT:$mds1:MAX:Max $sout", "GPRINT:mpcout:MAX:(%2.0lf%%)", > > Does ayone know how i can pull the data used by this GPRINT function to use > in another area? By far the easiest is to use another RRDtool

[rrd-users] Re: HELP: Adding 2 vaues with same timestamp

2002-05-08 Thread Iain Buchanan
It usually doesn't make sense to update a record with two different values for the same time stamp. For example, there can't be a total of 2 as well as a total of 5 people in a room at one time. If you want to add two records for a graph however, you can use CDEF's. Is this what you want to do?

[rrd-users] Re: Help on types of data sources

2002-04-01 Thread Administrador
Hola Anton, Sunday, March 31, 2002, 11:32:45 PM, escribió: AK> Hello Guys AK> Im using rrdtool and cacti as frontend. AK> I have a problem creating 2 data sources and graphs.. Try creating a LAST source, not AVERAGE or GAUGE. -- Administrador Técnico Alsernet 2000 http://www.alsernet.es

[rrd-users] Re: Help with consolidation functions.

2001-08-24 Thread Alex van den Bogaerdt
Ripul Gupta wrote: > The rra AVERAGE rule works fine. > However , I have a problem with the MAX,MIN and LAST > rules. Here is my doubt . > > "In the line RRA:MAX:0.5:1:600" > > What does the number 600 signify. I looked into the > dump file under the 5 minute entries block and i > foun

[rrd-users] Re: help

2001-08-14 Thread Alex van den Bogaerdt
Collins, Eric S. wrote: > > Hmm, > 4 minutes/pixel? Not sure how that is derived. It doesn't help if you only have RRAs with 1 PDP per CDP, if you graph 1600 minutes then you will *have to* combine four PDPs into one pixel. Yes, this means averaging. Yes, this means you cannot have exact

[rrd-users] Re: help

2001-08-13 Thread Alex van den Bogaerdt
Collins, Eric S. wrote: > I want to store just over 1 years worth of data in my rrds. I'm > quite a bit off on the number of values to store. I want to be able to > accurately graph 1 hour, 1 day, 1 week, 1 month, 1 year. > > Here's what I have.. > rrdtool create /usr/local/rrdwork/rrds/

[rrd-users] Re: Help needed on rrdtool create and rrdtool upd ate

2001-07-06 Thread Chang-Ping Hsiao
> > Meanwhile, I am not clear about whether this includes the > end points of the > > interval if they are primary data points in an RRD. > > There are no primary data points in an RRD, only intervals. Well, according to the document of "RRD CREATE", there really is "something" called

[rrd-users] Re: Help needed on rrdtool create and rrdtool update

2001-07-06 Thread Chang-Ping Hsiao
Exactly! The data come in at an unknown timing. That is why I had them updated at "random" time and different interval. I read about the comparison between heartbeat and step, and didn't seem to find a way around it. In the document written by Don Baarda, it says, ".If the interval betw

[rrd-users] Re: Help needed on rrdtool create and rrdtool update

2001-07-06 Thread Serge Maandag
Hmm, what I do see is that you have a heartbeat of 3600 secs. Your updates (at least the first two ones, didn't check the other ones) on the other hand are made with a 7200 sec interval. This is well over the heartbeat threshold, so rrdtool will take the value for a NaN. Read up on the heartbeat

[rrd-users] Re: Help needed on rrdtool create and rrdtool update

2001-07-06 Thread Chris Snell
I took a quick glance at your rrdupdate and it looks like you are occasionally updating at an interval different from your --step. >the RRDs after update. Could anyone help? I can't seem to find where the >problem is. Did I make some mistakes in "rrdtool create", "rrdtool >update", or "rrdto

[rrd-users] Re: Help creating database

2001-01-18 Thread BAARDA, Don
G'day, > -Original Message- > From: [EMAIL PROTECTED] > [SMTP:[EMAIL PROTECTED] > Sent: Tuesday, January 02, 2001 10:48 PM > To: rrd-users@list.ee.ethz.ch > Subject: [rrd-users] Re: Help creating database > [...] > The 600 is the value for

[rrd-users] Re: Help creating database

2001-01-02 Thread Frank Pineau
On Tue, 02 Jan 2001 12:48:24 +0100, a data storm erupted from >> rrdtool create test.rrd \ >> --step 3600 \ >> DS:field1:GAUGE:600:U:U \ > >The 600 is the value for 'heartbeat'. From rrdcreate(1): > > heartbeat defines the maximum number of > seconds that may pass between two updates of

[rrd-users] Re: Help creating database

2001-01-02 Thread Rainer Bawidamann
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Frank Pineau) writes: > > Ok, I've been beating my head against this for three freaking days and It's > just > not making any sense. I want a database that gets five numbers once per hour, > and keeps min, max, avg, and last for 12.5 da

[rrd-users] Re: Help required

2000-12-13 Thread Bjorn Djupvik
"rrdtool dump" is the command you want, I use it to transfer a .rrd between different architechtures but you can use it to get an ASCII file out...to see the schema for the rrd you might want to look at the "rrdtool info" command... Cheers Bjorn Tony James wrote: > Question: The .rrd files

[rrd-users] Re: Help! Resize difficulties.

2000-12-08 Thread JTuite
EMAIL PROTECTED]; rrd-users@list.ee.ethz.ch Subject: [rrd-users] Re: Help! Resize difficulties. On Fri, Dec 08, 2000 at 11:52:54AM -0500, [EMAIL PROTECTED] wrote: > > I resize RRA 0 of several RRDs every 5 minutes. > I run this script with cron. I'm curious - why would you want to do

[rrd-users] Re: Help! Resize difficulties.

2000-12-08 Thread Clifton Royston
On Fri, Dec 08, 2000 at 11:52:54AM -0500, [EMAIL PROTECTED] wrote: > > I resize RRA 0 of several RRDs every 5 minutes. > I run this script with cron. I'm curious - why would you want to do this? What is the advantage of constantly changing the RRA size, vs. figuring out the "right" size you w

[rrd-users] Re: Help! Resize difficulties.

2000-12-08 Thread JTuite
I've never had a problem. I've been doing it for about 4 months. -Original Message- From: Alex van den Bogaerdt [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2000 17:58 To: [EMAIL PROTECTED] Cc: rrd-users@list.ee.ethz.ch Subject: [rrd-users] Re: Help! Resize difficulties

[rrd-users] Re: Help! Resize difficulties.

2000-12-08 Thread Alex van den Bogaerdt
Frank Swasey wrote: > On Fri, 8 Dec 2000 [EMAIL PROTECTED] wrote: > > rm $rrdfile > > cp resize.rrd $rrdfile > > rm resize.rrd > > Why did you do those two commands instead of > mv resize.rrd $rrdfile Please be aware that a new RRD file has been

[rrd-users] Re: Help! Resize difficulties.

2000-12-08 Thread Frank Swasey
On Fri, 8 Dec 2000 [EMAIL PROTECTED] wrote: > #!/bin/bash > for rrdfile in $1/*.rrd ; do > echo Before > ls $rrdfile -s > rrdtool resize $rrdfile $2 $3 $4 > rm $rrdfile > cp resize.rrd $rrdfile > rm resize.

[rrd-users] Re: Help! Resize difficulties.

2000-12-08 Thread JTuite
echo done -Original Message- From: Sean R McNamara [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2000 15:57 To: [EMAIL PROTECTED] Cc: rrd-users@list.ee.ethz.ch Subject: [rrd-users] Re: Help! Resize difficulties. Mike Fisher wrote: > > I ran into this earlier in the

[rrd-users] Re: Help! Resize difficulties.

2000-12-07 Thread Sean R McNamara
Mike Fisher wrote: > > I ran into this earlier in the week. The resize does not modify the > existing RRD file, it creates a new one in the current directory called > resize.rrd with the new size and the old data. Just move this over your > old on and you should be ok. This should probably be

[rrd-users] Re: HELP: Compile on HP-UX 10.20

2000-11-29 Thread Gellatly, Laurie
I compile under HPUX 10.20. Got an idea that the perl-? fails but as I'm not interested in that I ignore it. Can send you binaries if you like? ...Laurie :{) -Original Message- From: Nathan Harris [mailto:[EMAIL PROTECTED] Sent: Tuesday, 28 November 2000 7:06 To:

[rrd-users] Re: HELP: Compile on HP-UX 10.20

2000-11-28 Thread Nathan Harris
<[EMAIL PROTECTED]> Cc: Sent: Tuesday, November 28, 2000 4:57 AM Subject: [rrd-users] Re: HELP: Compile on HP-UX 10.20 > > Hello guys, > > I also still having problems with rrdtool under HP-UX but I have not always > the time to work on it. > See my different mails in th

[rrd-users] Re: HELP: Compile on HP-UX 10.20

2000-11-28 Thread yves . wouters
Hello guys, I also still having problems with rrdtool under HP-UX but I have not always the time to work on it. See my different mails in the mailing list. I was able to compile rrdtool with static linkingtype. (see link below). http://www.ee.ethz.ch/~slist/rrd-users/msg01943.html During the

[rrd-users] Re: HELP: Compile on HP-UX 10.20

2000-11-27 Thread Nathan Harris
Nice to hear that there is hope... I'm trying to build from the latest rrdtool-1.0.28 tar ball. I'm using the following packages under HP-UX 10.20 (from the HP porting center): binutils-2.9.1-sd-10.20.depot.gz gcc-2.95.2-sd-10.20.depot.gz perl-5.6.0-sd-10.20.depot.gz make-3.79-sd.10.20.depot.gz

[rrd-users] Re: HELP: Compile on HP-UX 10.20

2000-11-27 Thread Nathan Harris
Nice to hear that there is hope... I'm trying to build from the latest rrdtool-1.0.28 tar ball. I'm using the following packages under HP-UX 10.20 (from the HP porting center): binutils-2.9.1-sd-10.20.depot.gz gcc-2.95.2-sd-10.20.depot.gz perl-5.6.0-sd-10.20.depot.gz make-3.79-sd.10.20.depot.gz

[rrd-users] Re: HELP: Compile on HP-UX 10.20

2000-11-27 Thread Nathan Harris
Nice to hear that there is hope... I'm trying to build from the latest rrdtool-1.0.28 tar ball. I'm using the following packages under HP-UX 10.20 (from the HP porting center): binutils-2.9.1-sd-10.20.depot.gz gcc-2.95.2-sd-10.20.depot.gz perl-5.6.0-sd-10.20.depot.gz make-3.79-sd.10.20.depot.gz