Re: Generic graphing tool?

2005-01-14 Thread John L . Utz III
And my personal favorite

perl gd
http://stein.cshl.org/WWW/software/GD/


At Fri, 14 Jan 2005 12:18:58 -0500,
Li Qin wrote:
> 
> Hi,
> 
>   We are using gnuplot. It is not as simple as a select statement and some 
> options, but needs a couple of lines of Perl (or whatever other scripting 
> language). It is very easy to use. 
> 
>   Li
> 
> -Original Message-
> From: Curtis Maurand [mailto:[EMAIL PROTECTED]
> Sent: Friday, January 14, 2005 10:32 AM
> To: Jim
> Cc: mysql@lists.mysql.com
> Subject: Re: Generic graphing tool?
> 
> 
> There are several PHP scripts that develop graphs.  You'll have do some 
> work to feed the data to them, but I found them at:
> 
> http://www.hotscripts.com/PHP/Scripts_and Programs/Graphs_and_Charts/
> 
> Curtis
> 
> Jim wrote:
> 
> > Jason Martin wrote:
> >
> >> Does anyone know of a web-based tool that will let you graph
> >> arbitrary data out of of MySQL? I'm thinking of something that
> >> lets you define a select statement, some graph options and
> >> produce a graph.
> >
> >
> > I'm afraid I'm not aware of anything as simple to use as you describe, 
> > but you could build one without TOO MUCH pain using CharDirector (a 
> > free version is available from http://www.advsofteng.com/) and your 
> > scripting language of choice. I prefer PHP or Perl, myself.
> >
> > Jim
> >
> >
> 
> 
> 
> -- 
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
> 
> 
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
> 
> 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



RE: Generic graphing tool?

2005-01-14 Thread Li Qin
Hi,

  We are using gnuplot. It is not as simple as a select statement and some 
options, but needs a couple of lines of Perl (or whatever other scripting 
language). It is very easy to use. 

  Li

-Original Message-
From: Curtis Maurand [mailto:[EMAIL PROTECTED]
Sent: Friday, January 14, 2005 10:32 AM
To: Jim
Cc: mysql@lists.mysql.com
Subject: Re: Generic graphing tool?


There are several PHP scripts that develop graphs.  You'll have do some 
work to feed the data to them, but I found them at:

http://www.hotscripts.com/PHP/Scripts_and Programs/Graphs_and_Charts/

Curtis

Jim wrote:

> Jason Martin wrote:
>
>> Does anyone know of a web-based tool that will let you graph
>> arbitrary data out of of MySQL? I'm thinking of something that
>> lets you define a select statement, some graph options and
>> produce a graph.
>
>
> I'm afraid I'm not aware of anything as simple to use as you describe, 
> but you could build one without TOO MUCH pain using CharDirector (a 
> free version is available from http://www.advsofteng.com/) and your 
> scripting language of choice. I prefer PHP or Perl, myself.
>
> Jim
>
>



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Generic graphing tool?

2005-01-14 Thread Curtis Maurand
There are several PHP scripts that develop graphs.  You'll have do some 
work to feed the data to them, but I found them at:

http://www.hotscripts.com/PHP/Scripts_and Programs/Graphs_and_Charts/
Curtis
Jim wrote:
Jason Martin wrote:
Does anyone know of a web-based tool that will let you graph
arbitrary data out of of MySQL? I'm thinking of something that
lets you define a select statement, some graph options and
produce a graph.

I'm afraid I'm not aware of anything as simple to use as you describe, 
but you could build one without TOO MUCH pain using CharDirector (a 
free version is available from http://www.advsofteng.com/) and your 
scripting language of choice. I prefer PHP or Perl, myself.

Jim


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: Generic graphing tool?

2005-01-11 Thread Jason Martin
On Tue, Jan 11, 2005 at 05:55:31PM +0100, Olivier Kaloudoff wrote:
> Cacti, based on mysql stored rrd database is probably the kind
> of tool you are looking for;
Ahh, so is there a cacti-like tool that understands MySQL?

Thanks,
-Jason Martin
-- 
This message is PGP/MIME signed.


pgpUVrrAJRbSG.pgp
Description: PGP signature


Re: Generic graphing tool?

2005-01-11 Thread Jason Martin
On Tue, Jan 11, 2005 at 11:44:34AM +1100, Daniel Kasak wrote:
> Jason Martin wrote:
> >Does anyone know of a web-based tool that will let you graph
> >arbitrary data out of of MySQL? I'm thinking of something that
> >lets you define a select statement, some graph options and
> >produce a graph.
> JPGraph produces some *very* nice graphs from PHP.
Thank you, but that wasn't quite what I was looking for. I've
got a small data warehouse filled with a wide variety of
statistics about an application.  I'd like to let users execute
arbitrary SQL statements against the the database and provide
some graph parameters and have a graph created, entirely through
the web.  Sort of a like a mysql-enabled web-based gnuplot.  It
looks like such a thing doesn't exist but I was hoping someone
had written it already :>

Thanks,
-Jason Martin
-- 
This message is PGP/MIME signed.


pgpSb74fWb6XX.pgp
Description: PGP signature


Re: Generic graphing tool?

2005-01-10 Thread Daniel Kasak
Jason Martin wrote:
Does anyone know of a web-based tool that will let you graph
arbitrary data out of of MySQL? I'm thinking of something that
lets you define a select statement, some graph options and
produce a graph.
 

JPGraph produces some *very* nice graphs from PHP.
There are some graphing modules around for Perl, but I don't think 
there's anything as nice as JPGraph. If there is, I'd like to know about 
it :)

--
Daniel Kasak
IT Developer
NUS Consulting Group
Level 5, 77 Pacific Highway
North Sydney, NSW, Australia 2060
T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989
email: [EMAIL PROTECTED]
website: http://www.nusconsulting.com.au
-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Generic graphing tool?

2005-01-10 Thread Jim
Jason Martin wrote:
Does anyone know of a web-based tool that will let you graph
arbitrary data out of of MySQL? I'm thinking of something that
lets you define a select statement, some graph options and
produce a graph.
I'm afraid I'm not aware of anything as simple to use as you describe, 
but you could build one without TOO MUCH pain using CharDirector (a free 
version is available from http://www.advsofteng.com/) and your scripting 
language of choice. I prefer PHP or Perl, myself.

Jim
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Generic graphing tool?

2005-01-10 Thread Jason Martin
Does anyone know of a web-based tool that will let you graph
arbitrary data out of of MySQL? I'm thinking of something that
lets you define a select statement, some graph options and
produce a graph.

Thanks,
-Jason Martin
-- 
You can't go home again, unless you set $HOME.
This message is PGP/MIME signed.


pgp1G8gqgRN83.pgp
Description: PGP signature