Skip to content

Commit

Permalink
Load orca-0.22 into trunk/orca.
Browse files Browse the repository at this point in the history
  • Loading branch information
blair committed Jun 29, 2002
1 parent cbd6452 commit e995bb9
Show file tree
Hide file tree
Showing 43 changed files with 1,181 additions and 1,753 deletions.
60 changes: 60 additions & 0 deletions CHANGES
@@ -1,3 +1,63 @@
Wed May 26 17:54:26 PDT 1999

Release version 0.22.

Wed May 26 12:10:42 PDT 1999

Move the portions of the code that generate the RRDs::graph
options that do not change between invocations to the
_update_graph_options method. This method gets called when the
Orca::GIFFile is constructed and any time add_rrds is called.
This speeds Orca up slightly.

Include RRDtool 0.99.31 but continue to only require 0.99.29.

Add a new quarterly plot that shows the last 100 days. This is
a nice transition between the monthly and yearly plots.

Change the number of days shown in the yearly plot from 500 to
428, which is one year and two months. Reducing the number
of days from 500 by at least one day will speed up the GIF
generation time because by default the plot portion of the GIFs
are 500 pixels wide.

Add two new classes Orca::Config::Plot and
Orca::Config::FilesGroup that do not do anything yet but
will provide an object-oriented interface to config_plots and
config_files. Currently all the values in @$config_plots and
%$config_files are now bless objects instead of unblessed objects.

Thu May 20 10:59:26 PDT 1999

Put a closing ) in a error message in RRDtool 0.99.29.1.

Fix a bug in queue_data where it was sending data to
rrd_update that was already in the RRD file.

Wed May 19 10:43:48 PDT 1999

Restructured the code so each Orca::SourceDataFile has only
one anonymous subroutine to read in all the valued from a single
line of the source data file. This sped Orca up slightly.

Add a -r option to Orca to have it not create any HTML or
GIF files and only update the RRD files.

Fix a bug where if the number of columns changed in from one
source file to the next source file in a files group, the
column index used to get a particular value is the old index
for the old file and not the new index for the new file. This
fix involved having the Orca::SourceDataFile object run the
anonymous subroutines to pick the correct data from a line
instead of Orca::RRDFile.

Remove some unused methods: Orca::OpenFileHash::list,
Orca::OpenFileHash::select, Orca::OpenFileHash::sysread_readline
Add some more documentation to orcallator.cfg.

Skip a line in an input source data file if the word timestamp
is found in it. This is a temporary fix.

Mon May 17 16:26:17 PDT 1999

Release version 0.21.
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Expand Up @@ -124,7 +124,7 @@ Outline:
-----------------------------------------------------------------------
Digest::MD5 version 2.00 or greater 2.07
Math::IntervalSearch 1.00 or greater 1.02
RRDs version 0.99.29 or greater 0.99.29
RRDs version 0.99.29 or greater 0.99.31
Storable 0.603 or greater 0.603

All four of these modules are included with the Orca distribution
Expand Down
20 changes: 20 additions & 0 deletions NEWS
@@ -1,3 +1,23 @@
New in version 0.22.
1) Add a new command line option (-r) that tells Orca to only update
the RRD data files and not to generate any HTML or GIF files.
This is useful if you are loading in a large amount of data in several
invocations of Orca and do not want to create the HTML and GIF files
in each run since it is time consuming.
2) Fix a bug where if the number of columns changed in from one source
file to the next source file in a files group, the column index used
to get a particular value is the index for the old file and not the
index for the new file. This required some internal restructuring
the speeds Orca up slightly.
3) Add a new plot called quarterly that displays the last 100 days
of data. This is a nice transition between the monthly and yearly
plots.
4) A temporary fix: Skip and do not complain about input source data
file lines containing the word timestamp in it.
5) Removed some unused methods to make Orca smaller.
6) Added some more documentation to orcallater.cfg.
7) Make Orca slightly faster.

New in version 0.21.
1) Every file containing the words percollator, percol and perc has
been renamed to contain the word orcallator. A new make target named
Expand Down
3 changes: 3 additions & 0 deletions TODO
@@ -1,3 +1,6 @@
Other:
Mention the AIX tool nmon.

Orca:
Come up with a better error scheme than using warn() for some
errors and the email warn for others.
Expand Down
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -651,7 +651,7 @@ CONFIGURE_COMMAND_LINE=${1+"$@"}
# The path packages gets added where necessary.
DIGEST_MD5_DIR=Digest-MD5-2.07
MATH_INTERPOLATE_DIR=Math-Interpolate-1.02
RRDTOOL_DIR=rrdtool-0.99.29.1
RRDTOOL_DIR=rrdtool-0.99.31
STORABLE_DIR=Storable-0.6@3


Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -14,7 +14,7 @@ AC_SUBST(CONFIGURE_COMMAND_LINE)
# The path packages gets added where necessary.
DIGEST_MD5_DIR=Digest-MD5-2.07
MATH_INTERPOLATE_DIR=Math-Interpolate-1.02
RRDTOOL_DIR=rrdtool-0.99.29.1
RRDTOOL_DIR=rrdtool-0.99.31
STORABLE_DIR=Storable-0.6@3
AC_SUBST(DIGEST_MD5_DIR)
AC_SUBST(MATH_INTERPOLATE_DIR)
Expand Down
14 changes: 14 additions & 0 deletions lib/orcallator.cfg.in
@@ -1,8 +1,22 @@
# Orca configuration file for orcallator files.

# base_dir is prepended to the paths data_dir, find_files, html_dir,
# and state_file only if the path does not match the regular
# expression ^\\?\.{0,2}/, which matches /, ./, ../, and \./.
base_dir @RRD_DIR@/orcallator

# data_dir specifies the location of the generated RRD data files.
data_dir .

# state_file specifies the location of the state file that remembers
# the modification time of each source data file.
state_file orca.state

# html_dir specifies the top of the HTML tree created by Orca.
html_dir @HTML_DIR@

# By default create .meta tag files for all GIFs so that the web
# browser will automatically reload them.
expire_gifs 1

# Find files at the following times:
Expand Down
9 changes: 7 additions & 2 deletions packages/rrdtool-0.99.31/CHANGES
@@ -1,5 +1,10 @@
0.99.29b
0) from blair .. fix for Makefile.in
0.99.31
From: Tobi
0) hmpf ... forgot to add rrdresize.pod and friends to MANIFEST

0.99.30
From: Alex
0) We can now alter the number of rows in an RRA with rrd_resize

0.99.29
From: Blair
Expand Down
1 change: 1 addition & 0 deletions packages/rrdtool-0.99.31/CONTRIBUTORS
Expand Up @@ -25,6 +25,7 @@ Debugging and code contributions
Jeremy Fischer <jeremy@pobox.com> (Makefile changes & RPM builds)
Alan Lichty <alan_lichty@eli.net>
Steen Linden <Steen.Linden@ebone.net>
Alex van den Bogaerdt <alex@ergens.op.het.net> (rrd_resize.c)

Documentation

Expand Down
6 changes: 5 additions & 1 deletion packages/rrdtool-0.99.31/MANIFEST
Expand Up @@ -52,11 +52,14 @@ doc/rrdgraph.1
doc/rrdgraph.html
doc/rrdgraph.pod
doc/rrdgraph.txt
doc/rrdintro.pod
doc/rrdlast.1
doc/rrdlast.html
doc/rrdlast.pod
doc/rrdlast.txt
doc/rrdresize.1
doc/rrdresize.html
doc/rrdresize.pod
doc/rrdresize.txt
doc/rrdtool.1
doc/rrdtool.html
doc/rrdtool.pod
Expand Down Expand Up @@ -112,6 +115,7 @@ src/rrd_format.c
src/rrd_format.h
src/rrd_graph.c
src/rrd_open.c
src/rrd_resize.c
src/rrd_last.c
src/rrd_tool.c
src/rrd_tool.h
Expand Down
4 changes: 2 additions & 2 deletions packages/rrdtool-0.99.31/Makefile.dist
Expand Up @@ -9,8 +9,8 @@ SHELL = /bin/sh
### Things you might NOT want to play with ...
###

VER = 0.99.29
PVER = 0.99029
VER = 0.99.31
PVER = 0.99031

ARCHIVE = rrdtool-$(VER).tar.gz
DIRNAME = rrdtool-$(VER)
Expand Down
2 changes: 1 addition & 1 deletion packages/rrdtool-0.99.31/doc/GNUmakefile.in
Expand Up @@ -17,7 +17,7 @@ SHELL = /bin/sh
VER = `date +%Y%m%d.%H`

POD = rrdtool.pod rrdlast.pod rrdcreate.pod rrdupdate.pod rrdgraph.pod RRDs.pm RRDp.pm \
rrdfetch.pod rrddump.pod rrdtune.pod
rrdfetch.pod rrddump.pod rrdtune.pod rrdresize.pod

MAN = $(POD:.pod=.1) $(POD:.pl=.1) $(POD:.pm=.3)
TXT = $(MAN:.1=.txt) $(POD:.3=.txt)
Expand Down
2 changes: 1 addition & 1 deletion packages/rrdtool-0.99.31/doc/RRDp.3
Expand Up @@ -93,7 +93,7 @@
.nr % 0
.rr F
.\}
.TH RRDp 3 "19990512.01" "12/May/99" "rrdtool"
.TH RRDp 3 "19990527.00" "25/May/99" "rrdtool"
.UC
.if n .hy 0
.if n .na
Expand Down
2 changes: 1 addition & 1 deletion packages/rrdtool-0.99.31/doc/RRDs.3
Expand Up @@ -93,7 +93,7 @@
.nr % 0
.rr F
.\}
.TH RRDs 3 "19990512.01" "12/May/99" "rrdtool"
.TH RRDs 3 "19990527.00" "25/May/99" "rrdtool"
.UC
.if n .hy 0
.if n .na
Expand Down

0 comments on commit e995bb9

Please sign in to comment.