Round Robin Database Tool - store time-series data with averaging or other

(lossy) historical compression, and create graphs.

PR:		ports/12717
Submitted by:	Dmitry S. Sivachenko <dima@Chg.RU>
This commit is contained in:
Bill Fenner 1999-08-22 08:41:12 +00:00
parent 2013f63fc0
commit bd4a2c1361
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=20879
20 changed files with 380 additions and 0 deletions

View file

@ -0,0 +1,53 @@
# New ports collection makefile for: rrdtool
# Version required: 1.0.0
# Date created: 20 July 1999
# Whom: Dmitry Sivachenko <dima@Chg.RU>
#
# $Id:$
#
DISTNAME= rrdtool-1.0.0
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/
MAINTAINER= dima@Chg.RU
USE_PERL5= YES
MAKE_ENV+= PERL=${PERL}
GNU_CONFIGURE= YES
CONFIGURE_ENV= PERL=${PERL}
MAN1= bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 rrdfetch.1\
rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 rrdtool.1\
rrdtune.1 rrdtutorial.1 rrdupdate.1
MAN3= RRDp.3 RRDs.3
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdtool ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdcgi ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/contrib/log2rrd/log2rrd.pl ${PREFIX}/bin
${MKDIR} -m 755 ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.cgi ${PREFIX}/share/rrdtool/examples
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3
.if !defined(NOPORTDOCS)
${MKDIR} -m 755 ${PREFIX}/share/doc/rrdtool
${INSTALL_DATA} ${WRKSRC}/contrib/log2rrd/README ${PREFIX}/share/doc/rrdtool/README.log2rrd
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/rrdtool
.endif
for file in piped/RRDp.pm shared/RRDs.pm; do \
${INSTALL_DATA} ${WRKSRC}/perl-$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \
done
post-install:
.if !defined(BATCH)
@${ECHO} ""
@${ECHO} "############################################################################"
@${ECHO} "# See ${PREFIX}/share/rrdtool/examples for some demonstration code #"
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1 @@
MD5 (rrdtool-1.0.0.tar.gz) = 36771d8773cbb45609bc7d0c09708cf8

View file

@ -0,0 +1 @@
Round Robin Database Tools

View file

@ -0,0 +1,13 @@
It is pretty easy to gather status information from all sorts of things,
ranging from the temperature in your office to the number of octets which
have passed through the FDDI interface of your router. But it is not so
trivial to store this data in a efficient and systematic manner. This is
where RRDtool kicks in. It lets you log and analyze the data you gather from
all kinds of data-sources (DS). The data analysis part of RRDtool is based
on the ability to quickly generate graphical representations of the data
values collected over a definable time period.
WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
--dima
dima@Chg.RU

View file

@ -0,0 +1,27 @@
bin/rrdtool
bin/rrdcgi
bin/log2rrd.pl
share/rrdtool/examples/piped-demo.pl
share/rrdtool/examples/shared-demo.pl
share/rrdtool/examples/cgi-demo.cgi
share/doc/rrdtool/README.log2rrd
share/doc/rrdtool/RRDp.html
share/doc/rrdtool/RRDs.html
share/doc/rrdtool/bin_dec_hex.html
share/doc/rrdtool/rrdcgi.html
share/doc/rrdtool/rrdcreate.html
share/doc/rrdtool/rrddump.html
share/doc/rrdtool/rrdfetch.html
share/doc/rrdtool/rrdgraph.html
share/doc/rrdtool/rrdlast.html
share/doc/rrdtool/rrdresize.html
share/doc/rrdtool/rrdrestore.html
share/doc/rrdtool/rrdtool.html
share/doc/rrdtool/rrdtune.html
share/doc/rrdtool/rrdtutorial.html
share/doc/rrdtool/rrdupdate.html
lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm
lib/perl5/site_perl/%%PERL_VER%%/RRDs.pm
@dirrm share/rrdtool/examples
@dirrm share/rrdtool
@dirrm share/doc/rrdtool

View file

@ -0,0 +1,53 @@
# New ports collection makefile for: rrdtool
# Version required: 1.0.0
# Date created: 20 July 1999
# Whom: Dmitry Sivachenko <dima@Chg.RU>
#
# $Id:$
#
DISTNAME= rrdtool-1.0.0
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/
MAINTAINER= dima@Chg.RU
USE_PERL5= YES
MAKE_ENV+= PERL=${PERL}
GNU_CONFIGURE= YES
CONFIGURE_ENV= PERL=${PERL}
MAN1= bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 rrdfetch.1\
rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 rrdtool.1\
rrdtune.1 rrdtutorial.1 rrdupdate.1
MAN3= RRDp.3 RRDs.3
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdtool ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdcgi ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/contrib/log2rrd/log2rrd.pl ${PREFIX}/bin
${MKDIR} -m 755 ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.cgi ${PREFIX}/share/rrdtool/examples
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3
.if !defined(NOPORTDOCS)
${MKDIR} -m 755 ${PREFIX}/share/doc/rrdtool
${INSTALL_DATA} ${WRKSRC}/contrib/log2rrd/README ${PREFIX}/share/doc/rrdtool/README.log2rrd
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/rrdtool
.endif
for file in piped/RRDp.pm shared/RRDs.pm; do \
${INSTALL_DATA} ${WRKSRC}/perl-$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \
done
post-install:
.if !defined(BATCH)
@${ECHO} ""
@${ECHO} "############################################################################"
@${ECHO} "# See ${PREFIX}/share/rrdtool/examples for some demonstration code #"
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1 @@
MD5 (rrdtool-1.0.0.tar.gz) = 36771d8773cbb45609bc7d0c09708cf8

View file

@ -0,0 +1 @@
Round Robin Database Tools

View file

@ -0,0 +1,13 @@
It is pretty easy to gather status information from all sorts of things,
ranging from the temperature in your office to the number of octets which
have passed through the FDDI interface of your router. But it is not so
trivial to store this data in a efficient and systematic manner. This is
where RRDtool kicks in. It lets you log and analyze the data you gather from
all kinds of data-sources (DS). The data analysis part of RRDtool is based
on the ability to quickly generate graphical representations of the data
values collected over a definable time period.
WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
--dima
dima@Chg.RU

View file

@ -0,0 +1,27 @@
bin/rrdtool
bin/rrdcgi
bin/log2rrd.pl
share/rrdtool/examples/piped-demo.pl
share/rrdtool/examples/shared-demo.pl
share/rrdtool/examples/cgi-demo.cgi
share/doc/rrdtool/README.log2rrd
share/doc/rrdtool/RRDp.html
share/doc/rrdtool/RRDs.html
share/doc/rrdtool/bin_dec_hex.html
share/doc/rrdtool/rrdcgi.html
share/doc/rrdtool/rrdcreate.html
share/doc/rrdtool/rrddump.html
share/doc/rrdtool/rrdfetch.html
share/doc/rrdtool/rrdgraph.html
share/doc/rrdtool/rrdlast.html
share/doc/rrdtool/rrdresize.html
share/doc/rrdtool/rrdrestore.html
share/doc/rrdtool/rrdtool.html
share/doc/rrdtool/rrdtune.html
share/doc/rrdtool/rrdtutorial.html
share/doc/rrdtool/rrdupdate.html
lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm
lib/perl5/site_perl/%%PERL_VER%%/RRDs.pm
@dirrm share/rrdtool/examples
@dirrm share/rrdtool
@dirrm share/doc/rrdtool

53
net/rrdtool/Makefile Normal file
View file

@ -0,0 +1,53 @@
# New ports collection makefile for: rrdtool
# Version required: 1.0.0
# Date created: 20 July 1999
# Whom: Dmitry Sivachenko <dima@Chg.RU>
#
# $Id:$
#
DISTNAME= rrdtool-1.0.0
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/
MAINTAINER= dima@Chg.RU
USE_PERL5= YES
MAKE_ENV+= PERL=${PERL}
GNU_CONFIGURE= YES
CONFIGURE_ENV= PERL=${PERL}
MAN1= bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 rrdfetch.1\
rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 rrdtool.1\
rrdtune.1 rrdtutorial.1 rrdupdate.1
MAN3= RRDp.3 RRDs.3
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdtool ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdcgi ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/contrib/log2rrd/log2rrd.pl ${PREFIX}/bin
${MKDIR} -m 755 ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.cgi ${PREFIX}/share/rrdtool/examples
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3
.if !defined(NOPORTDOCS)
${MKDIR} -m 755 ${PREFIX}/share/doc/rrdtool
${INSTALL_DATA} ${WRKSRC}/contrib/log2rrd/README ${PREFIX}/share/doc/rrdtool/README.log2rrd
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/rrdtool
.endif
for file in piped/RRDp.pm shared/RRDs.pm; do \
${INSTALL_DATA} ${WRKSRC}/perl-$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \
done
post-install:
.if !defined(BATCH)
@${ECHO} ""
@${ECHO} "############################################################################"
@${ECHO} "# See ${PREFIX}/share/rrdtool/examples for some demonstration code #"
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>

1
net/rrdtool/distinfo Normal file
View file

@ -0,0 +1 @@
MD5 (rrdtool-1.0.0.tar.gz) = 36771d8773cbb45609bc7d0c09708cf8

1
net/rrdtool/pkg-comment Normal file
View file

@ -0,0 +1 @@
Round Robin Database Tools

13
net/rrdtool/pkg-descr Normal file
View file

@ -0,0 +1,13 @@
It is pretty easy to gather status information from all sorts of things,
ranging from the temperature in your office to the number of octets which
have passed through the FDDI interface of your router. But it is not so
trivial to store this data in a efficient and systematic manner. This is
where RRDtool kicks in. It lets you log and analyze the data you gather from
all kinds of data-sources (DS). The data analysis part of RRDtool is based
on the ability to quickly generate graphical representations of the data
values collected over a definable time period.
WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
--dima
dima@Chg.RU

27
net/rrdtool/pkg-plist Normal file
View file

@ -0,0 +1,27 @@
bin/rrdtool
bin/rrdcgi
bin/log2rrd.pl
share/rrdtool/examples/piped-demo.pl
share/rrdtool/examples/shared-demo.pl
share/rrdtool/examples/cgi-demo.cgi
share/doc/rrdtool/README.log2rrd
share/doc/rrdtool/RRDp.html
share/doc/rrdtool/RRDs.html
share/doc/rrdtool/bin_dec_hex.html
share/doc/rrdtool/rrdcgi.html
share/doc/rrdtool/rrdcreate.html
share/doc/rrdtool/rrddump.html
share/doc/rrdtool/rrdfetch.html
share/doc/rrdtool/rrdgraph.html
share/doc/rrdtool/rrdlast.html
share/doc/rrdtool/rrdresize.html
share/doc/rrdtool/rrdrestore.html
share/doc/rrdtool/rrdtool.html
share/doc/rrdtool/rrdtune.html
share/doc/rrdtool/rrdtutorial.html
share/doc/rrdtool/rrdupdate.html
lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm
lib/perl5/site_perl/%%PERL_VER%%/RRDs.pm
@dirrm share/rrdtool/examples
@dirrm share/rrdtool
@dirrm share/doc/rrdtool

53
net/rrdtool10/Makefile Normal file
View file

@ -0,0 +1,53 @@
# New ports collection makefile for: rrdtool
# Version required: 1.0.0
# Date created: 20 July 1999
# Whom: Dmitry Sivachenko <dima@Chg.RU>
#
# $Id:$
#
DISTNAME= rrdtool-1.0.0
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/
MAINTAINER= dima@Chg.RU
USE_PERL5= YES
MAKE_ENV+= PERL=${PERL}
GNU_CONFIGURE= YES
CONFIGURE_ENV= PERL=${PERL}
MAN1= bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 rrdfetch.1\
rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 rrdtool.1\
rrdtune.1 rrdtutorial.1 rrdupdate.1
MAN3= RRDp.3 RRDs.3
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdtool ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdcgi ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/contrib/log2rrd/log2rrd.pl ${PREFIX}/bin
${MKDIR} -m 755 ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.cgi ${PREFIX}/share/rrdtool/examples
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3
.if !defined(NOPORTDOCS)
${MKDIR} -m 755 ${PREFIX}/share/doc/rrdtool
${INSTALL_DATA} ${WRKSRC}/contrib/log2rrd/README ${PREFIX}/share/doc/rrdtool/README.log2rrd
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/rrdtool
.endif
for file in piped/RRDp.pm shared/RRDs.pm; do \
${INSTALL_DATA} ${WRKSRC}/perl-$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \
done
post-install:
.if !defined(BATCH)
@${ECHO} ""
@${ECHO} "############################################################################"
@${ECHO} "# See ${PREFIX}/share/rrdtool/examples for some demonstration code #"
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>

1
net/rrdtool10/distinfo Normal file
View file

@ -0,0 +1 @@
MD5 (rrdtool-1.0.0.tar.gz) = 36771d8773cbb45609bc7d0c09708cf8

View file

@ -0,0 +1 @@
Round Robin Database Tools

13
net/rrdtool10/pkg-descr Normal file
View file

@ -0,0 +1,13 @@
It is pretty easy to gather status information from all sorts of things,
ranging from the temperature in your office to the number of octets which
have passed through the FDDI interface of your router. But it is not so
trivial to store this data in a efficient and systematic manner. This is
where RRDtool kicks in. It lets you log and analyze the data you gather from
all kinds of data-sources (DS). The data analysis part of RRDtool is based
on the ability to quickly generate graphical representations of the data
values collected over a definable time period.
WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
--dima
dima@Chg.RU

27
net/rrdtool10/pkg-plist Normal file
View file

@ -0,0 +1,27 @@
bin/rrdtool
bin/rrdcgi
bin/log2rrd.pl
share/rrdtool/examples/piped-demo.pl
share/rrdtool/examples/shared-demo.pl
share/rrdtool/examples/cgi-demo.cgi
share/doc/rrdtool/README.log2rrd
share/doc/rrdtool/RRDp.html
share/doc/rrdtool/RRDs.html
share/doc/rrdtool/bin_dec_hex.html
share/doc/rrdtool/rrdcgi.html
share/doc/rrdtool/rrdcreate.html
share/doc/rrdtool/rrddump.html
share/doc/rrdtool/rrdfetch.html
share/doc/rrdtool/rrdgraph.html
share/doc/rrdtool/rrdlast.html
share/doc/rrdtool/rrdresize.html
share/doc/rrdtool/rrdrestore.html
share/doc/rrdtool/rrdtool.html
share/doc/rrdtool/rrdtune.html
share/doc/rrdtool/rrdtutorial.html
share/doc/rrdtool/rrdupdate.html
lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm
lib/perl5/site_perl/%%PERL_VER%%/RRDs.pm
@dirrm share/rrdtool/examples
@dirrm share/rrdtool
@dirrm share/doc/rrdtool