From robert at sermilik.dk Tue Apr 15 10:03:23 2008 From: robert at sermilik.dk (Robert Jeppesen) Date: Tue, 15 Apr 2008 16:03:23 +0200 (CEST) Subject: [drraw-users] hiding script Message-ID: <37653.130.228.96.66.1208268203.squirrel@mail.prow.dk> Using drraw 2.1.3 and Apache 1.3 Have a server collecting data from many devices into rrd's and 2 versions of drraw. One named device.cgi with users=0 and one named rwdevice.cgi (that only I know) with users=2. Works fine. A customer would like to view information for specific devices. Its no problem to put graphs for those devices into a dashboard but how can I allow the customer to only get access to this dasboard and the graphs below? Something like giving him an URL http://10.10.10.10/customername that actually points to http://10.10.10.10/device.cgi?Mode=view; and then have the script to add Dashboard=111111111.2222 or Graph= 33333333.4444 Have anyone tried something like this? I've been looking at the mod_rewrite documentation but without success. THanks, Robert From d2sm200712 at gmail.com Wed Apr 16 14:34:42 2008 From: d2sm200712 at gmail.com (Tim) Date: Wed, 16 Apr 2008 11:34:42 -0700 Subject: [drraw-users] How to add a timestamp to a graph Message-ID: <129aa33f0804161134w59c8040bn7637cff459f39888@mail.gmail.com> What is the method to add a timestamp to a graph output? Are "strftime", "comment" and "gprint" the ones to use and how to make it work in drraw? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://web.taranis.org/pipermail/drraw-users/attachments/20080416/e53fbd58/attachment.html From francois at ctrlaltdel.ch Wed Apr 30 12:54:09 2008 From: francois at ctrlaltdel.ch (Francois Deppierraz) Date: Wed, 30 Apr 2008 18:54:09 +0200 Subject: [drraw-users] [PATCH] Stack checkbox for Regex DS is missing Message-ID: <20080430165408.GA28457@planete.ctrlaltdel.ch> This patch fixes a bug in drraw-2.2a4 where Stack checkbox was not displayed for regular expression based DS. --- drraw.cgi.orig 2008-04-25 11:15:51.000000000 +0200 +++ drraw.cgi 2008-04-25 11:25:07.000000000 +0200 @@ -3159,7 +3159,7 @@ -default=>param("${ds}_Type"), -onchange=>"TypeCB(this.value, \"${ds}\")"), ( $RRDs::VERSION >= 1.2 - && ( $type eq 'ds' || $type eq 'def' ) ) ? + && ( $type eq 'ds' || $type eq 'def' || $type eq 'tmpl' ) ) ? checkbox(-id=>"${ds}_STACK", -name=>"${ds}_STACK", -title=>'Whether to stack this element on top of the previous one', -label=>'', -value=>'Y') : '', From kalt at taranis.org Thu May 1 14:42:20 2008 From: kalt at taranis.org (Christophe Kalt) Date: Thu, 1 May 2008 14:42:20 -0400 Subject: [drraw-users] FWD: [rrd-developers] rrdtool 1.3 is drawing near (last feature is in) Message-ID: <20080501184220.GA29466@bzz.taranis.org> Has anyone started playing with 1.3 yet? ----- Forwarded message from Tobias Oetiker ----- Date: Mon, 21 Apr 2008 00:56:46 +0200 (CEST) From: Tobias Oetiker To: rrd-developers at lists.oetiker.ch Subject: [rrd-developers] rrdtool 1.3 is drawing near (last feature is in) Developers, Over the last few days I have integrated a heavily modified version of Mark Plaksins patch into RRDtool 1.3dev. The result is a new interface to the RRDtool graph function called 'graphv' or when calling from C 'rrd_graph_v'. The new interface returns a lot of meta-data about the graph in rrd_info style. This even includes the graph itself when called with '' or '-' as the name of the graph. The new call is supported on the RRDtool command line, Perl and ruby bindings. Unfortunately I am not very familiar with writing python bindings, so this is left as an exercise to an avid python hacker (the current python bindings do NOT include proper rrd_info bindings, but rather an independent reimplementation of the same functionality). The meta information returned contains additional information about the graph. Most notably the location of the actual graph inside the image. Thanks Mark for getting me started on this! With this addition I am down to fixing some bugs mentioned on the rrd traq but we should go rc pretty soon. cheers tobi -- Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten http://it.oetiker.ch tobi at oetiker.ch ++41 62 213 9902 _______________________________________________ rrd-developers mailing list rrd-developers at lists.oetiker.ch https://lists.oetiker.ch/cgi-bin/listinfo/rrd-developers ----- End forwarded message ----- From kalt at taranis.org Fri May 2 12:03:30 2008 From: kalt at taranis.org (Christophe Kalt) Date: Fri, 2 May 2008 12:03:30 -0400 Subject: [drraw-users] How to add a timestamp to a graph In-Reply-To: <129aa33f0804161134w59c8040bn7637cff459f39888@mail.gmail.com> References: <129aa33f0804161134w59c8040bn7637cff459f39888@mail.gmail.com> Message-ID: <20080502160330.GA8816@bzz.taranis.org> On Apr 16, Tim wrote: | What is the method to add a timestamp to a graph output? Are "strftime", | "comment" and "gprint" the ones to use and how to make it work in drraw? What timestamp are you looking to add? date creation? RRD file last update? which RRD file? This was discussed a bit in http://web.taranis.org/pipermail/drraw-users/2007q3/000220.html From josh at jtri.com Fri May 2 12:07:42 2008 From: josh at jtri.com (Josh Gray) Date: Fri, 2 May 2008 10:07:42 -0600 Subject: [drraw-users] How to add a timestamp to a graph In-Reply-To: <20080502160330.GA8816@bzz.taranis.org> References: <129aa33f0804161134w59c8040bn7637cff459f39888@mail.gmail.com> <20080502160330.GA8816@bzz.taranis.org> Message-ID: " i think it could probably be added under the additional GPRINTs section." What would the syntax look like if you don't mind me asking? On Fri, May 2, 2008 at 10:03 AM, Christophe Kalt wrote: > On Apr 16, Tim wrote: > | What is the method to add a timestamp to a graph output? Are "strftime", > | "comment" and "gprint" the ones to use and how to make it work in drraw? > > What timestamp are you looking to add? date creation? RRD > file last update? which RRD file? > > This was discussed a bit in http://web.taranis.org/pipermail/drraw-users/2007q3/000220.html > _______________________________________________ > drraw-users mailing list > drraw-users at taranis.org > http://web.taranis.org/mailman/listinfo/drraw-users > From kalt at taranis.org Fri May 2 14:59:22 2008 From: kalt at taranis.org (Christophe Kalt) Date: Fri, 2 May 2008 14:59:22 -0400 Subject: [drraw-users] bugs in 2.2a4 In-Reply-To: <4744E1FD.6070807@ird.govt.nz> References: <4744E1FD.6070807@ird.govt.nz> Message-ID: <20080502185922.GE8816@bzz.taranis.org> Hi, On Nov 22, Lloyd Parkes wrote: | I've just started playing with drraw and I've been pushing it quite hard. | I'm afraid that I broke it. Twice. With luck I'll remember to attach the | patches before I click on send. | | This first problem is that with a DS based on a Perl re, the CDEF for the | summary of the set of DSs is emitted after the CDEFs for the formula. This | in turn means that the File RE example I have attached won't work. The CDEF | 'f' is not defined by the time it is used. drraw emits this following | rrdtool code [...] | With the attached patch, CDEF:f is defined before the other CDEFs. the next release will have a solution for this. | The other problem I have is that while I can stack the F(n) on top of | F(n-1), I can't stack D(*) on top of F(*). I get [...] | I'm afraid that I can't be bothered adding this second feature. this will also be addressed by the next release. | While I'm here, it would be nice if the the formulae in _Element, _Formula | and _tCDEF could refer to the count of items in some way. This is a number | that drraw calculates, so it should be easy enough to add to _tCDEF at | least. Yup, and that's what i did to fix your first issue. From kalt at taranis.org Sat May 3 14:21:29 2008 From: kalt at taranis.org (Christophe Kalt) Date: Sat, 3 May 2008 14:21:29 -0400 Subject: [drraw-users] drraw 2.2a5 released Message-ID: <20080503182129.GA21720@bzz.taranis.org> Version 2.2a5 of drraw is now available for download from: http://web.taranis.org/drraw/ The alpha release of drraw brings a few enhancements over the 2.1.x releases; most importantly, it has full support for the new RRDtool features introduced with version 1.2, while remaining backward compatible with older RRDtool releases. Whether you are running RRDtool 1.2.x or earlier, your feedback would be appreciated. Hoping for this to be the last alpha release, finally. Enjoy! Changes since 2.2a4 [2007-05-30]: - Various dates displayed now follow the ISO 8601 format. - Graph start date, end date and creation dates can now be added to the image. - Data Source Templates have been enhanced: - Dynamic elements can now be stacked on top of previous graph element not just on top of themselves (courtesy of Francois Deppierraz), - Number of elements can be used in dynamic element CDEFs, and Formula field, - Builtin formulas allow calculating the AVERAGE and STDDEV, - Old files and files without values are automatically skipped (courtesy of R.P. Aditya). - Orange look, still ugly though :) - New Data Source rows are now properly disabled on load. - Allow &DBFinder() to follow symlinks. - Switched to /usr/bin/perl (from /usr/local/bin/perl). From wernli at in2p3.fr Mon May 5 05:04:32 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Mon, 5 May 2008 11:04:32 +0200 Subject: [drraw-users] FWD: [rrd-developers] rrdtool 1.3 is drawing near (last feature is in) In-Reply-To: <20080501184220.GA29466@bzz.taranis.org> References: <20080501184220.GA29466@bzz.taranis.org> Message-ID: <20080505090432.GH8095@ccswiss.in2p3.fr> On Thu, May 01, 2008 at 02:42:20PM -0400, Christophe Kalt wrote: > Has anyone started playing with 1.3 yet? I did. I do not have any problems with it. I can recommend it as it highly reduces IOs on linux 2.6 kernels (I had a bottleneck on 1.2 as I run lots of rrds) From kalt at taranis.org Mon May 5 08:21:27 2008 From: kalt at taranis.org (Christophe Kalt) Date: Mon, 5 May 2008 08:21:27 -0400 Subject: [drraw-users] FWD: [rrd-developers] rrdtool 1.3 is drawing near (last feature is in) In-Reply-To: <20080505090432.GH8095@ccswiss.in2p3.fr> References: <20080501184220.GA29466@bzz.taranis.org> <20080505090432.GH8095@ccswiss.in2p3.fr> Message-ID: <20080505122127.GA4938@bzz.taranis.org> On May 05, Fabien Wernli wrote: | On Thu, May 01, 2008 at 02:42:20PM -0400, Christophe Kalt wrote: | > Has anyone started playing with 1.3 yet? | | I did. I do not have any problems with it. | I can recommend it as it highly reduces IOs on linux 2.6 kernels (I had | a bottleneck on 1.2 as I run lots of rrds) Right, that seems to be the main attraction and it isn't clear that much work will be needed on drraw for it. Hopefully, i can get 2.2 out in the coming few weeks, at which point i should be able to take a look at it. From wernli at in2p3.fr Mon May 5 08:54:15 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Mon, 5 May 2008 14:54:15 +0200 Subject: [drraw-users] FWD: [rrd-developers] rrdtool 1.3 is drawing near (last feature is in) In-Reply-To: <20080505122127.GA4938@bzz.taranis.org> References: <20080501184220.GA29466@bzz.taranis.org> <20080505090432.GH8095@ccswiss.in2p3.fr> <20080505122127.GA4938@bzz.taranis.org> Message-ID: <20080505125415.GT8095@ccswiss.in2p3.fr> On Mon, May 05, 2008 at 08:21:27AM -0400, Christophe Kalt wrote: > On May 05, Fabien Wernli wrote: > | On Thu, May 01, 2008 at 02:42:20PM -0400, Christophe Kalt wrote: > | > Has anyone started playing with 1.3 yet? > | > | I did. I do not have any problems with it. > | I can recommend it as it highly reduces IOs on linux 2.6 kernels (I had > | a bottleneck on 1.2 as I run lots of rrds) > > Right, that seems to be the main attraction and it isn't clear > that much work will be needed on drraw for it. Hopefully, i > can get 2.2 out in the coming few weeks, at which point i > should be able to take a look at it. I haven't tested the graphing yet though, which is one of the big changes (it uses pango/cairo now). In fact I'm still using 1.2.x for graphing, as a collegue made a nice patch for the legend part (draws a diagonal line instead of an area for a LINEn element) From Simon.Atack at nottingham.ac.uk Wed May 28 09:16:49 2008 From: Simon.Atack at nottingham.ac.uk (Atack Simon) Date: Wed, 28 May 2008 14:16:49 +0100 Subject: [drraw-users] dashboards Message-ID: Hi, I am trying to get dashboards to show a lot of similar graphs that only differ by the filename but have 2 directories that are selected. I have a custom written scripts that query flexlm licence servers and process the data so that I get the licence counts out (Script available on request) I have it putting things in folders like this lmstats///counters.rrd -- for totals counters Eg lmstats/fluent/fluentall/counters.rrd lmstats///machine/ -- Where files for each machine name go <1 file per machinename> Eg lmstats/Abaqus/abaqus/machine/winxp01.rrd lmstats///username/ -- Where files for each username go <1 file per username> Eg lmstats/Matlab/Matlab/username/simon.rrd lmstats///version/ -- Where files for each version go <1 file per version> Eg lmstats/Abaqus/cae/version/v6.7.rrd For the total counters view I have a template where the base regular expression is lmstats/(.+)/(.+)/counters For the machines view (username & version are similar) I have a template where the base regular expression is lmstats/(.*)/(.*)/machine/(.*)\.rrd These both work fine and display nice graphs with a selection box where you can multiple select the graphs but what I want to do is setup a dashboard so that you can select the & and it will display all the machine graphs or select the and it display the counter graphs for all the appropriate folders. So effectively I want to be able to take a template and have it display a selection for 1 or 2 of the sub-selections and then make a dashboard for them while showing graphs for all the other sub-selections. There are a lot of application & feature folders and I don't want to create new views for each of them [ it also means when new things are added I don't need to make up a new view] Can someone help me out I have spend a lot of time and effort fiddling but don't seem to have managed to get this to work. Am I being stupid or can drraw not do this? Also is there any chance of some examples being put up on the wiki for dashboards etc? Thanks Simon This message has been checked for viruses but the contents of an attachment may still contain software viruses, which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. From wernli at in2p3.fr Fri Jun 6 05:24:40 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Fri, 6 Jun 2008 11:24:40 +0200 Subject: [drraw-users] find(..., follow=>1) Message-ID: <20080606092440.GE22973@ccswiss.in2p3.fr> Hi, I'm having the following issue in 'drraw.cgi?Browse=AllDashboards': -- /path/to/some_dir encountered a second time at /usr/lib/perl5/5.8.8/File/Find.pm line 566. -- I saw you changed the options to find in drraw.cgi to follow links. Now when I look up my directory structure I find: -- /path/to/some_dir /path/to2/some_other_dir -> ../../to/some_dir -- From kalt at taranis.org Fri Jun 6 09:05:19 2008 From: kalt at taranis.org (Christophe Kalt) Date: Fri, 6 Jun 2008 09:05:19 -0400 Subject: [drraw-users] find(..., follow=>1) In-Reply-To: <20080606092440.GE22973@ccswiss.in2p3.fr> References: <20080606092440.GE22973@ccswiss.in2p3.fr> Message-ID: <20080606130519.GA18830@bzz.taranis.org> Hi, On Jun 06, Fabien Wernli wrote: | I'm having the following issue in 'drraw.cgi?Browse=AllDashboards': | | -- | /path/to/some_dir encountered a second time at | /usr/lib/perl5/5.8.8/File/Find.pm line 566. | -- | | I saw you changed the options to find in drraw.cgi to follow links. | Now when I look up my directory structure I find: | | -- | /path/to/some_dir | /path/to2/some_other_dir -> ../../to/some_dir | -- Looking up the log for that change, i only have "Allow DBFinder to follow symlinks, old change i do not remember." which isn't really helpful ;-) i was going to say "let's make it optional", but thinking about it, i don't see what the above does for you. I'm guessing the symlink isn't there for drraw's benefit as it just doesn't make sense to have drraw visit both of these. i think the change was probably done to support just what you have above. What i just don't get is that i've been using such a symlink setup for a very long time myself. A new File::Find may have prompted me to make this change? From wernli at in2p3.fr Fri Jun 6 11:03:05 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Fri, 6 Jun 2008 17:03:05 +0200 Subject: [drraw-users] find(..., follow=>1) In-Reply-To: <20080606130519.GA18830@bzz.taranis.org> References: <20080606092440.GE22973@ccswiss.in2p3.fr> <20080606130519.GA18830@bzz.taranis.org> Message-ID: <20080606150305.GC5972@ccswiss.in2p3.fr> On Fri, Jun 06, 2008 at 09:05:19AM -0400, Christophe Kalt wrote: > guessing the symlink isn't there for drraw's benefit as it > just doesn't make sense to have drraw visit both of these. yeah it's for my own perl design mayhem ;) > such a symlink setup for a very long time myself. A new > File::Find may have prompted me to make this change? So what you're saying is it works for you? From kalt at taranis.org Sun Jun 8 17:07:14 2008 From: kalt at taranis.org (Christophe Kalt) Date: Sun, 8 Jun 2008 17:07:14 -0400 Subject: [drraw-users] find(..., follow=>1) In-Reply-To: <20080606150305.GC5972@ccswiss.in2p3.fr> References: <20080606092440.GE22973@ccswiss.in2p3.fr> <20080606130519.GA18830@bzz.taranis.org> <20080606150305.GC5972@ccswiss.in2p3.fr> Message-ID: <20080608210714.GB8884@bzz.taranis.org> On Jun 06, Fabien Wernli wrote: | On Fri, Jun 06, 2008 at 09:05:19AM -0400, Christophe Kalt wrote: | > guessing the symlink isn't there for drraw's benefit as it | > just doesn't make sense to have drraw visit both of these. | | yeah it's for my own perl design mayhem ;) | | > such a symlink setup for a very long time myself. A new | > File::Find may have prompted me to make this change? | | So what you're saying is it works for you? Yes, in so far that it does follow the symlink. Of course, mine doesn't point to another existing drraw area ;) From wernli at in2p3.fr Mon Jun 9 04:53:22 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Mon, 9 Jun 2008 10:53:22 +0200 Subject: [drraw-users] find(..., follow=>1) In-Reply-To: <20080608210714.GB8884@bzz.taranis.org> References: <20080606092440.GE22973@ccswiss.in2p3.fr> <20080606130519.GA18830@bzz.taranis.org> <20080606150305.GC5972@ccswiss.in2p3.fr> <20080608210714.GB8884@bzz.taranis.org> Message-ID: <20080609085322.GF15383@ccswiss.in2p3.fr> On Sun, Jun 08, 2008 at 05:07:14PM -0400, Christophe Kalt wrote: > Yes, in so far that it does follow the symlink. > Of course, mine doesn't point to another existing drraw area ;) I see. I vote it's a bug then, not a feature ;) I for one will revert this line of code From kalt at taranis.org Tue Jun 10 20:07:47 2008 From: kalt at taranis.org (Christophe Kalt) Date: Tue, 10 Jun 2008 20:07:47 -0400 Subject: [drraw-users] find(..., follow=>1) In-Reply-To: <20080609085322.GF15383@ccswiss.in2p3.fr> References: <20080606092440.GE22973@ccswiss.in2p3.fr> <20080606130519.GA18830@bzz.taranis.org> <20080606150305.GC5972@ccswiss.in2p3.fr> <20080608210714.GB8884@bzz.taranis.org> <20080609085322.GF15383@ccswiss.in2p3.fr> Message-ID: <20080611000747.GA2799@bzz.taranis.org> On Jun 09, Fabien Wernli wrote: | On Sun, Jun 08, 2008 at 05:07:14PM -0400, Christophe Kalt wrote: | > Yes, in so far that it does follow the symlink. | > Of course, mine doesn't point to another existing drraw area ;) | | I see. I vote it's a bug then, not a feature ;) | I for one will revert this line of code Fine, i'll make it configurable. From wernli at in2p3.fr Wed Jun 11 03:43:54 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Wed, 11 Jun 2008 09:43:54 +0200 Subject: [drraw-users] find(..., follow=>1) In-Reply-To: <20080611000747.GA2799@bzz.taranis.org> References: <20080606092440.GE22973@ccswiss.in2p3.fr> <20080606130519.GA18830@bzz.taranis.org> <20080606150305.GC5972@ccswiss.in2p3.fr> <20080608210714.GB8884@bzz.taranis.org> <20080609085322.GF15383@ccswiss.in2p3.fr> <20080611000747.GA2799@bzz.taranis.org> Message-ID: <20080611074354.GC16740@ccswiss.in2p3.fr> On Tue, Jun 10, 2008 at 08:07:47PM -0400, Christophe Kalt wrote: > Fine, i'll make it configurable. Thanks! From kalt at taranis.org Sat Jun 14 11:48:28 2008 From: kalt at taranis.org (Christophe Kalt) Date: Sat, 14 Jun 2008 11:48:28 -0400 Subject: [drraw-users] dashboards In-Reply-To: References: Message-ID: <20080614154828.GA5220@bzz.taranis.org> Hi, On May 28, Atack Simon wrote: | Can someone help me out I have spend a lot of time and effort fiddling | but don't seem to have managed to get this to work. Am I being stupid | or can drraw not do this? Reading the Dashboard Configuration help, i don't think it can be done, sorry. drraw 2.2 can auto-create a dashboard from a template, but i know this isn't quite as nice as what you're looking for. (Click "View" on the template, and multi-select what you want to see.) Christophe From D.Morel at kinonline.net Wed Jun 25 10:31:12 2008 From: D.Morel at kinonline.net (Davy Morel) Date: Wed, 25 Jun 2008 16:31:12 +0200 Subject: [drraw-users] no event file Message-ID: Hi everybody I have many rrd file, generated with pnp for nagios. I would like to make nicer graph, so I install draw on my linux debian server : perl 2.8.8 rrdtool 1.2.15 I was able to have the draw cgi working but I have a problem when loading my rrdfile. I still not see event file. I tried almost everything but the "availableevent list" stay empty. Do you have an idea on whats happening ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://web.taranis.org/pipermail/drraw-users/attachments/20080625/342168a2/attachment-0001.html From jhodges at convio.com Wed Jun 25 11:08:28 2008 From: jhodges at convio.com (Jesse Hodges) Date: Wed, 25 Jun 2008 10:08:28 -0500 Subject: [drraw-users] no event file In-Reply-To: Message-ID: <058352043A37C64CBF421E6F9C28C2DC0F075D@exchange003.corp.convio.com> The event files are something you create through another method - manually, or write your own script. they should be named *.evt and formatted like so timestamp event description for example 1214406466 sent email explaining evt format There's more info in the help as well. ________________________________ From: drraw-users-bounces at taranis.org [mailto:drraw-users-bounces at taranis.org] On Behalf Of Davy Morel Sent: Wednesday, June 25, 2008 9:31 AM To: drraw-users at taranis.org Subject: [drraw-users] no event file Hi everybody I have many rrd file, generated with pnp for nagios. I would like to make nicer graph, so I install draw on my linux debian server : perl 2.8.8 rrdtool 1.2.15 I was able to have the draw cgi working but I have a problem when loading my rrdfile. I still not see event file. I tried almost everything but the "availableevent list" stay empty. Do you have an idea on whats happening ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://web.taranis.org/pipermail/drraw-users/attachments/20080625/444f7d75/attachment.html From D.Morel at kinonline.net Thu Jun 26 02:21:43 2008 From: D.Morel at kinonline.net (Davy Morel) Date: Thu, 26 Jun 2008 08:21:43 +0200 Subject: [drraw-users] no event file In-Reply-To: <058352043A37C64CBF421E6F9C28C2DC0F075D@exchange003.corp.convio.com> References: <058352043A37C64CBF421E6F9C28C2DC0F075D@exchange003.corp.convio.com> Message-ID: Thank for your answer Jesse. But, I still don't know how to generate these event files. I didn't find anything in the rrdtool man so I think that it's a drraw specific command ? Google is not helping me so far.. De : drraw-users-bounces at taranis.org [mailto:drraw-users-bounces at taranis.org] De la part de Jesse Hodges Envoy? : mercredi, 25. juin 2008 17:08 ? : Davy Morel; drraw-users at taranis.org Objet : Re: [drraw-users] no event file The event files are something you create through another method - manually, or write your own script. they should be named *.evt and formatted like so timestamp event description for example 1214406466 sent email explaining evt format There's more info in the help as well. ________________________________ From: drraw-users-bounces at taranis.org [mailto:drraw-users-bounces at taranis.org] On Behalf Of Davy Morel Sent: Wednesday, June 25, 2008 9:31 AM To: drraw-users at taranis.org Subject: [drraw-users] no event file Hi everybody I have many rrd file, generated with pnp for nagios. I would like to make nicer graph, so I install draw on my linux debian server : perl 2.8.8 rrdtool 1.2.15 I was able to have the draw cgi working but I have a problem when loading my rrdfile. I still not see event file. I tried almost everything but the "availableevent list" stay empty. Do you have an idea on whats happening ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://web.taranis.org/pipermail/drraw-users/attachments/20080626/be485747/attachment.html From wernli at in2p3.fr Thu Jun 26 03:31:10 2008 From: wernli at in2p3.fr (Fabien Wernli) Date: Thu, 26 Jun 2008 09:31:10 +0200 Subject: [drraw-users] no event file In-Reply-To: References: <058352043A37C64CBF421E6F9C28C2DC0F075D@exchange003.corp.convio.com> Message-ID: <20080626073110.GA23231@ccswiss.in2p3.fr> On Thu, Jun 26, 2008 at 08:21:43AM +0200, Davy Morel wrote: > Thank for your answer Jesse. But, I still don't know how to generate these event files. I didn't find anything in the rrdtool man so I think that it's a drraw specific command ? Google is not helping me so far.. er.... it's an ascii file... vi? From kalt at taranis.org Thu Jun 26 06:01:14 2008 From: kalt at taranis.org (Christophe Kalt) Date: Thu, 26 Jun 2008 06:01:14 -0400 Subject: [drraw-users] no event file In-Reply-To: References: <058352043A37C64CBF421E6F9C28C2DC0F075D@exchange003.corp.convio.com> Message-ID: <20080626100114.GA15842@bzz.taranis.org> On Jun 26, Davy Morel wrote: | Thank for your answer Jesse. But, I still don't know how to generate these event files. I didn't find anything in the rrdtool man so I think that it's a drraw specific command ? Google is not helping me so far.. These files have nothing to do with RRDtool, they are just an extension specific to drraw.