Request help for the design of my graph

View: New views
4 Messages — Rating Filter:   Alert me  

Request help for the design of my graph

by Jpc42 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi

i request your help ;=) i am very new on rrdtools,

actually, i create my graph with this command:


====================================================
# Creation du graphe hebdomadaire
$RRDPATH/rrdtool graph $WWWDIR/ifweek.gif \
-t "Historique $TITRE sur une semaine" \
-v "bits/s" \
--alt-autoscale \
-w $LARG -h $HAUT \
--start $NOW1W \
--end $NOW \
DEF:downaverage=$RRDATAPATH/$DATABASE:ifin:AVERAGE \
DEF:upaverage=$RRDATAPATH/$DATABASE:ifout:AVERAGE \
CDEF:inaverage=downaverage,8,* \
CDEF:outaverage=upaverage,8,* \
LINE2:inaverage\#FF0000:"Download Average" \
LINE2:outaverage\#00FF00:"Upload Average"
====================================================

but graphique are not very beautiful ;=)

i want add:
    Two colors: Blue and light blue
    full "Area" for each

i want add to a lot of information, actually i have "Download Average"
and "Upload Average"
without information, i want add:

Download:   Current xx Kbits, Max Kbits, minimum Kbits ...
Upload:   Current xx Kbits, Max Kbits, minimum ...


and after, i want add a "95 percentiles" information, it's possible ?

thanks for your help
Jerome

_______________________________________________
rrd-users mailing list
rrd-users@...
https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users

Re: Request help for the design of my graph

by Adam Armstrong :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Jerome,

Try looking at other people's code for how they generate graphs. Some of
my graphing functions are in :

http://www.observernms.org/websvn/filedetails.php?repname=observer&path=%2Fincludes%2Fgraphing.php

adam.

Jerome SCHEVINGT wrote:

> Hi
>
> i request your help ;=) i am very new on rrdtools,
>
> actually, i create my graph with this command:
>
>
> ====================================================
> # Creation du graphe hebdomadaire
> $RRDPATH/rrdtool graph $WWWDIR/ifweek.gif \
> -t "Historique $TITRE sur une semaine" \
> -v "bits/s" \
> --alt-autoscale \
> -w $LARG -h $HAUT \
> --start $NOW1W \
> --end $NOW \
> DEF:downaverage=$RRDATAPATH/$DATABASE:ifin:AVERAGE \
> DEF:upaverage=$RRDATAPATH/$DATABASE:ifout:AVERAGE \
> CDEF:inaverage=downaverage,8,* \
> CDEF:outaverage=upaverage,8,* \
> LINE2:inaverage\#FF0000:"Download Average" \
> LINE2:outaverage\#00FF00:"Upload Average"
> ====================================================
>
> but graphique are not very beautiful ;=)
>
> i want add:
>     Two colors: Blue and light blue
>     full "Area" for each
>
> i want add to a lot of information, actually i have "Download Average"
> and "Upload Average"
> without information, i want add:
>
> Download:   Current xx Kbits, Max Kbits, minimum Kbits ...
> Upload:   Current xx Kbits, Max Kbits, minimum ...
>
>
> and after, i want add a "95 percentiles" information, it's possible ?
>
> thanks for your help
> Jerome
>
> _______________________________________________
> rrd-users mailing list
> rrd-users@...
> https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
>  

_______________________________________________
rrd-users mailing list
rrd-users@...
https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users

Re: Request help for the design of my graph

by Ivan Zahariev :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


You can also take a look at the RRDtool web wizard
(http://www.famzah.net/rrdwizard), if you don't have time to read up all
the documentation and want to learn RRD by examples.

--Ivan

Adam Armstrong wrote:

> Hi Jerome,
>
> Try looking at other people's code for how they generate graphs. Some of
> my graphing functions are in :
>
> http://www.observernms.org/websvn/filedetails.php?repname=observer&path=%2Fincludes%2Fgraphing.php
>
> adam.
>
> Jerome SCHEVINGT wrote:
>  
>> Hi
>>
>> i request your help ;=) i am very new on rrdtools,
>>
>> actually, i create my graph with this command:
>>
>>
>> ====================================================
>> # Creation du graphe hebdomadaire
>> $RRDPATH/rrdtool graph $WWWDIR/ifweek.gif \
>> -t "Historique $TITRE sur une semaine" \
>> -v "bits/s" \
>> --alt-autoscale \
>> -w $LARG -h $HAUT \
>> --start $NOW1W \
>> --end $NOW \
>> DEF:downaverage=$RRDATAPATH/$DATABASE:ifin:AVERAGE \
>> DEF:upaverage=$RRDATAPATH/$DATABASE:ifout:AVERAGE \
>> CDEF:inaverage=downaverage,8,* \
>> CDEF:outaverage=upaverage,8,* \
>> LINE2:inaverage\#FF0000:"Download Average" \
>> LINE2:outaverage\#00FF00:"Upload Average"
>> ====================================================
>>
>> but graphique are not very beautiful ;=)
>>
>> i want add:
>>     Two colors: Blue and light blue
>>     full "Area" for each
>>
>> i want add to a lot of information, actually i have "Download Average"
>> and "Upload Average"
>> without information, i want add:
>>
>> Download:   Current xx Kbits, Max Kbits, minimum Kbits ...
>> Upload:   Current xx Kbits, Max Kbits, minimum ...
>>
>>
>> and after, i want add a "95 percentiles" information, it's possible ?
>>
>> thanks for your help
>> Jerome
>>
>> _______________________________________________
>> rrd-users mailing list
>> rrd-users@...
>> https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
>>  
>>    
>
> _______________________________________________
> rrd-users mailing list
> rrd-users@...
> https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
>  


_______________________________________________
rrd-users mailing list
rrd-users@...
https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users

Re: Request help for the design of my graph

by Koaps :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You can always try cacti http://www.cacti.net/   

Even if you don't use it to track anything, you can create the graphs the way you want them then look at the debug output for a graph to see the command that is sent to rrdtool.



-c



--- On Tue, 10/27/09, Ivan Zahariev <rrdtool@...> wrote:

> From: Ivan Zahariev <rrdtool@...>
> Subject: Re: [rrd-users] Request help for the design of my graph
> To: rrd-users@...
> Date: Tuesday, October 27, 2009, 12:47 AM
>
> You can also take a look at the RRDtool web wizard
> (http://www.famzah.net/rrdwizard), if you don't have
> time to read up all
> the documentation and want to learn RRD by examples.
>
> --Ivan
>
> Adam Armstrong wrote:
> > Hi Jerome,
> >
> > Try looking at other people's code for how they
> generate graphs. Some of
> > my graphing functions are in :
> >
> > http://www.observernms.org/websvn/filedetails.php?repname=observer&path=%2Fincludes%2Fgraphing.php
> >
> > adam.
> >
> > Jerome SCHEVINGT wrote:
> >   
> >> Hi
> >>
> >> i request your help ;=) i am very new on
> rrdtools,
> >>
> >> actually, i create my graph with this command:
> >>
> >>
> >>
> ====================================================
> >> # Creation du graphe hebdomadaire
> >> $RRDPATH/rrdtool graph $WWWDIR/ifweek.gif \
> >> -t "Historique $TITRE sur une semaine" \
> >> -v "bits/s" \
> >> --alt-autoscale \
> >> -w $LARG -h $HAUT \
> >> --start $NOW1W \
> >> --end $NOW \
> >> DEF:downaverage=$RRDATAPATH/$DATABASE:ifin:AVERAGE
> \
> >> DEF:upaverage=$RRDATAPATH/$DATABASE:ifout:AVERAGE
> \
> >> CDEF:inaverage=downaverage,8,* \
> >> CDEF:outaverage=upaverage,8,* \
> >> LINE2:inaverage\#FF0000:"Download Average" \
> >> LINE2:outaverage\#00FF00:"Upload Average"
> >>
> ====================================================
> >>
> >> but graphique are not very beautiful ;=)
> >>
> >> i want add:
> >>     Two colors: Blue and light
> blue
> >>     full "Area" for each
> >>
> >> i want add to a lot of information, actually i
> have "Download Average"
> >> and "Upload Average"
> >> without information, i want add:
> >>
> >> Download:   Current xx Kbits, Max
> Kbits, minimum Kbits ...
> >> Upload:   Current xx Kbits, Max
> Kbits, minimum ...
> >>
> >>
> >> and after, i want add a "95 percentiles"
> information, it's possible ?
> >>
> >> thanks for your help
> >> Jerome
> >>
> >> _______________________________________________
> >> rrd-users mailing list
> >> rrd-users@...
> >> https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
> >>   
> >>     
> >
> > _______________________________________________
> > rrd-users mailing list
> > rrd-users@...
> > https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
> >   
>
>
> _______________________________________________
> rrd-users mailing list
> rrd-users@...
> https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
>


     

_______________________________________________
rrd-users mailing list
rrd-users@...
https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users