33 |
|
# possibly make more configurable? |
34 |
|
# -- allow configurable periods of graphs |
35 |
|
# -- comments, types, etc |
36 |
– |
# -- move all to external config file |
36 |
|
|
37 |
+ |
my($version) = '$Id$'; |
38 |
+ |
|
39 |
|
$| = 1; |
40 |
+ |
|
41 |
|
use strict; |
42 |
+ |
use Getopt::Std; |
43 |
|
use RRDs; |
44 |
|
|
45 |
< |
# Base directory for images |
46 |
< |
# (a directory will be constructed for each host under this) |
47 |
< |
my($imgdir) = "/home/pkg/iscream/public_html/graphs"; |
45 |
> |
# define variables that will be read from the config |
46 |
> |
# nb. keep this insync with the config file! |
47 |
> |
use vars qw{ |
48 |
> |
$imgdir $rrddir |
49 |
> |
$maxrrdage $maximgage $deleterrds $deleteimgs |
50 |
> |
$hex_slash $hex_underscore |
51 |
> |
$rrdstep $retry_wait |
52 |
> |
$verbose $quiet |
53 |
> |
}; |
54 |
|
|
55 |
< |
# Location of RRD databases |
56 |
< |
my($rrddir) = "/u1/i-scream/databases"; |
55 |
> |
# default locate of the config file |
56 |
> |
my($configfile) = "rrdgraphing.conf"; |
57 |
|
|
58 |
< |
# / converted to a decimal then hex'd |
59 |
< |
my($hex_slash) = "_2f"; |
60 |
< |
# _ converted to a decimal then hex'd |
52 |
< |
my($hex_underscore) = "_5f"; |
58 |
> |
# check for command line arguments |
59 |
> |
my(%opts); |
60 |
> |
my($ret) = getopts('hvqVc:', \%opts); |
61 |
|
|
62 |
< |
# maximum age (last modified) before an rrd or graph get cleaned up |
63 |
< |
# (in seconds) |
64 |
< |
my($maxrrdage) = 3600; # 1 hour |
65 |
< |
my($maxgraphage) = 3600; # 1 hour |
66 |
< |
|
62 |
> |
# if invalid argument given, $ret will not be 1 |
63 |
> |
&usage() if $ret != 1; |
64 |
> |
|
65 |
> |
# first process the arguments which might mean we exit now |
66 |
> |
|
67 |
> |
# -h is usage |
68 |
> |
if($opts{h}) { |
69 |
> |
&usage(); |
70 |
> |
} |
71 |
> |
# -V is version |
72 |
> |
if($opts{V}) { |
73 |
> |
print "graph.pl version: $version\n"; |
74 |
> |
exit(1); |
75 |
> |
} |
76 |
> |
|
77 |
> |
# Then try getting the config |
78 |
> |
|
79 |
> |
# -c specifies the config file location |
80 |
> |
if($opts{c}) { |
81 |
> |
$configfile = $opts{c}; |
82 |
> |
} |
83 |
> |
# suck in the config |
84 |
> |
&log("reading config from $configfile\n"); |
85 |
> |
do $configfile; |
86 |
> |
|
87 |
> |
# Then any options we might want to override the config with |
88 |
> |
|
89 |
> |
# -v is verbose |
90 |
> |
if($opts{v}) { |
91 |
> |
$verbose = $opts{v}; |
92 |
> |
} |
93 |
> |
# -q is verbose |
94 |
> |
if($opts{q}) { |
95 |
> |
$quiet = $opts{q}; |
96 |
> |
# if we're meant to be quiet, we can hardly be verbose! |
97 |
> |
$verbose = 0; |
98 |
> |
} |
99 |
> |
|
100 |
|
# Read the contents of the base directory |
101 |
|
# and pull out the list of subdirectories (except . and .. :) |
102 |
|
opendir(DIR, $rrddir); |
119 |
|
$ctime,$blksize,$blocks) = stat("$rrddir/$machine/$rrd"); |
120 |
|
# check if it's old enough to be deleted |
121 |
|
if((time - $mtime) > $maxrrdage) { |
122 |
< |
print "pruning rrd $rrddir/$machine/$rrd\n"; |
123 |
< |
# if so, delete it |
124 |
< |
unlink("$rrddir/$machine/$rrd"); |
122 |
> |
# do we delete the rrd, or just ignore it? |
123 |
> |
if($deleterrds) { |
124 |
> |
# if so, delete it |
125 |
> |
unlink("$rrddir/$machine/$rrd"); |
126 |
> |
&log("deleted old rrd $rrddir/$machine/$rrd\n"); |
127 |
> |
} |
128 |
> |
else { |
129 |
> |
&log("ignored old rrd $rrddir/$machine/$rrd\n"); |
130 |
> |
} |
131 |
|
# no more processing required for this rrd |
132 |
|
next; |
133 |
|
} |
134 |
|
if($rrd =~ /^(cpu)\.rrd$/) { |
135 |
|
my(@data); |
136 |
|
my(@rawdata); |
137 |
< |
push @data, "LINE2:$1:idle:idle#00FF00:idle cpu"; |
138 |
< |
push @data, "LINE2:$1:user:user#0000FF:user cpu"; |
139 |
< |
push @data, "LINE2:$1:kernel:kernel#00FFFF:kernel cpu"; |
140 |
< |
push @data, "LINE2:$1:swap:swap#FF00FF:swap cpu"; |
141 |
< |
push @data, "LINE2:$1:iowait:iowait#FF0000:iowait cpu"; |
137 |
> |
push @data, "LINE2:$1:idle:idle#00FF00:OK:idle cpu "; |
138 |
> |
push @data, "LINE2:$1:user:user#0000FF:OK:user cpu "; |
139 |
> |
push @data, "LINE2:$1:kernel:kernel#00FFFF:OK:kernel cpu"; |
140 |
> |
push @data, "LINE2:$1:swap:swap#FF00FF:OK:swap cpu "; |
141 |
> |
push @data, "LINE2:$1:iowait:iowait#FF0000:OK:iowait cpu"; |
142 |
|
push @rawdata, "--upper-limit=100"; |
143 |
|
&makegraph($machine, $1, "CPU Usage for $machine", \@data, \@rawdata); |
144 |
|
} |
147 |
|
my(@rawdata); |
148 |
|
# we don't actually want to display free memory, |
149 |
|
# although we need it to do inuse... |
150 |
< |
push @data, "NONE:$1:free:free#CCCCFF:free memory"; |
151 |
< |
push @data, "LINE2:$1:total:total#0000FF:total memory"; |
150 |
> |
push @data, "NONE:$1:free:free#CCCCFF:NONE:free memory"; |
151 |
> |
push @data, "LINE2:$1:total:total#0000FF:NONE:total memory\\n"; |
152 |
|
# calculate inuse |
153 |
|
push @rawdata, "CDEF:inuse=total,free,-"; |
154 |
|
# and add it to the graph |
155 |
|
push @rawdata, "AREA:inuse#CCCCFF:memory in use"; |
156 |
|
push @rawdata, "--base=1024"; |
157 |
+ |
# add some nice values to the legend |
158 |
+ |
&addlegend(\@rawdata, "inuse"); |
159 |
|
&makegraph($machine, $1, "Memory Usage for $machine", \@data, \@rawdata); |
160 |
|
} |
161 |
|
if($rrd =~ /^(load)\.rrd$/) { |
162 |
|
my(@data); |
163 |
< |
push @data, "LINE2:$1:load1:load1#CCCCFF:1 minute load average"; |
164 |
< |
push @data, "LINE2:$1:load5:load5#7777FF:5 minute load average"; |
165 |
< |
push @data, "LINE2:$1:load15:load15#0000FF:15 minute load average"; |
163 |
> |
push @data, "LINE2:$1:load1:load1#CCCCFF:OK: 1 min load average"; |
164 |
> |
push @data, "LINE2:$1:load5:load5#7777FF:OK: 5 min load average"; |
165 |
> |
push @data, "LINE2:$1:load15:load15#0000FF:OK:15 min load average"; |
166 |
|
&makegraph($machine, $1, "Loads for $machine", \@data); |
167 |
|
} |
168 |
|
if($rrd =~ /^(proc)\.rrd$/) { |
169 |
|
my(@data); |
170 |
< |
push @data, "LINE2:$1:cpu:cpu#00FF00:cpu processes"; |
171 |
< |
push @data, "LINE2:$1:sleeping:sleeping#0000FF:sleeping processes"; |
172 |
< |
push @data, "LINE2:$1:stopped:stopped#00FFFF:stopped processes"; |
173 |
< |
push @data, "LINE2:$1:total:total#FF00FF:total processes"; |
174 |
< |
push @data, "LINE2:$1:zombie:zombie#FF0000:zombie processes"; |
170 |
> |
push @data, "LINE2:$1:cpu:cpu#00FF00:OK:cpu processes "; |
171 |
> |
push @data, "LINE2:$1:sleeping:sleeping#0000FF:OK:sleeping processes"; |
172 |
> |
push @data, "LINE2:$1:stopped:stopped#00FFFF:OK:stopped processes "; |
173 |
> |
push @data, "LINE2:$1:total:total#FF00FF:OK:total processes "; |
174 |
> |
push @data, "LINE2:$1:zombie:zombie#FF0000:OK:zombie processes "; |
175 |
|
&makegraph($machine, $1, "Processes on $machine", \@data); |
176 |
|
} |
177 |
|
if($rrd =~ /^(swap)\.rrd$/) { |
179 |
|
my(@rawdata); |
180 |
|
# we don't actually want to display free swap, |
181 |
|
# although we need it to do inuse... |
182 |
< |
push @data, "NONE:$1:free:free#CCCCFF:free swap"; |
183 |
< |
push @data, "LINE2:$1:total:total#0000FF:total swap"; |
182 |
> |
push @data, "NONE:$1:free:free#CCCCFF:NONE:free swap"; |
183 |
> |
push @data, "LINE2:$1:total:total#0000FF:NONE:total swap\\n"; |
184 |
|
# calculate inuse |
185 |
|
push @rawdata, "CDEF:inuse=total,free,-"; |
186 |
|
# and add it to the graph |
187 |
|
push @rawdata, "AREA:inuse#CCCCFF:swap in use"; |
188 |
|
push @rawdata, "--base=1024"; |
189 |
+ |
# add some nice values to the legend |
190 |
+ |
&addlegend(\@rawdata, "inuse"); |
191 |
|
&makegraph($machine, $1, "Swap Usage for $machine", \@data, \@rawdata); |
192 |
|
} |
193 |
|
if($rrd =~ /^(users)\.rrd$/) { |
194 |
|
my(@data); |
195 |
< |
push @data, "AREA:$1:count:count#CCCCFF:user count"; |
195 |
> |
push @data, "AREA:$1:count:count#CCCCFF:OK:user count"; |
196 |
|
&makegraph($machine, $1, "User Count for $machine", \@data); |
197 |
|
} |
198 |
|
if($rrd =~ /^(disk)-(\S+).rrd$/) { |
199 |
|
my(@data); |
200 |
|
my(@rawdata); |
201 |
< |
push @data, "LINE2:$1-$2:kbytes:kbytes#0000FF:total size"; |
202 |
< |
push @data, "AREA:$1-$2:used:used#CCCCFF:used"; |
201 |
> |
push @data, "LINE2:$1-$2:kbytes:kbytes#0000FF:NONE:total size\\n"; |
202 |
> |
push @data, "AREA:$1-$2:used:used#CCCCFF:OK:used space"; |
203 |
|
push @rawdata, "--base=1024"; |
204 |
|
my($type) = $1; |
205 |
|
my($name) = $2; |
215 |
|
my($baserrd) = $1; |
216 |
|
my($i) = 0; |
217 |
|
while( -f "$rrddir/$machine/$baserrd\_$i.rrd" ) { |
218 |
< |
push @data, "LINE2:$baserrd\_$i:size:size$i" . &get_colour($i) . ":queue$i size "; |
218 |
> |
push @data, "LINE2:$baserrd\_$i:size:size$i" . &get_colour($i) . ":OK:queue$i size "; |
219 |
|
++$i; |
220 |
|
} |
221 |
< |
push @data, "LINE2:$baserrd\_0:total:total#FF0000:packets/sec - currently"; |
171 |
< |
push @rawdata, "GPRINT:total:LAST:%lf %spackets/sec"; |
221 |
> |
push @data, "LINE2:$baserrd\_0:total:total#FF0000:OK:packets/sec"; |
222 |
|
my($comment); |
223 |
|
if(-f "$rrddir/$machine/$baserrd.def") { |
224 |
|
open(DEF, "$rrddir/$machine/$baserrd.def"); |
230 |
|
} |
231 |
|
} |
232 |
|
# have a last check, maybe we can remove the directory now? |
233 |
< |
# Read the contents of the directory |
234 |
< |
opendir(DIR, "$rrddir/$machine"); |
235 |
< |
my(@dirlist) = grep { !/^\.$/ && !/^\.\.$/ } readdir(DIR); |
236 |
< |
closedir DIR; |
237 |
< |
if($#dirlist == -1) { |
238 |
< |
print "pruning rrddir $rrddir/$machine\n"; |
239 |
< |
rmdir "$rrddir/$machine"; |
233 |
> |
# (only if we're deleting stuff) |
234 |
> |
if($deleterrds) { |
235 |
> |
# Read the contents of the directory |
236 |
> |
opendir(DIR, "$rrddir/$machine"); |
237 |
> |
my(@dirlist) = grep { !/^\.$/ && !/^\.\.$/ } readdir(DIR); |
238 |
> |
closedir DIR; |
239 |
> |
if($#dirlist == -1) { |
240 |
> |
rmdir "$rrddir/$machine"; |
241 |
> |
&log("deleting empty rrd directory $rrddir/$machine\n"); |
242 |
> |
} |
243 |
|
} |
244 |
|
} |
245 |
|
|
246 |
< |
# Read the contents of the graphs directory |
247 |
< |
# and pull out the list of subdirectories (except . and .. :) |
248 |
< |
opendir(DIR, $imgdir); |
249 |
< |
my(@imgdirlist) = grep { -d "$imgdir/$_" && !/^\.$/ && !/^\.\.$/ } readdir(DIR); |
250 |
< |
closedir DIR; |
198 |
< |
|
199 |
< |
# look through each directoty, as they might |
200 |
< |
# contain images for a particular machine |
201 |
< |
foreach my $machine (@imgdirlist) { |
202 |
< |
# Read the contents of the directory |
203 |
< |
opendir(DIR, "$imgdir/$machine"); |
204 |
< |
my(@imglist) = grep { /\.png$/ && -f "$imgdir/$machine/$_" } readdir(DIR); |
246 |
> |
if($deleteimgs) { |
247 |
> |
# Read the contents of the graphs directory |
248 |
> |
# and pull out the list of subdirectories (except . and .. :) |
249 |
> |
opendir(DIR, $imgdir); |
250 |
> |
my(@imgdirlist) = grep { -d "$imgdir/$_" && !/^\.$/ && !/^\.\.$/ } readdir(DIR); |
251 |
|
closedir DIR; |
252 |
|
|
253 |
< |
# See what rrd we have, and generate the graphs accordingly |
254 |
< |
foreach my $img (@imglist) { |
255 |
< |
chomp $img; |
256 |
< |
# stat the img |
257 |
< |
my($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime, |
258 |
< |
$ctime,$blksize,$blocks) = stat("$imgdir/$machine/$img"); |
259 |
< |
# check if it's old enough to be deleted |
260 |
< |
if((time - $mtime) > $maxgraphage) { |
261 |
< |
print "pruning img $imgdir/$machine/$img\n"; |
262 |
< |
# if so, delete it |
263 |
< |
unlink("$imgdir/$machine/$img"); |
253 |
> |
# look through each directoty, as they might |
254 |
> |
# contain images for a particular machine |
255 |
> |
foreach my $machine (@imgdirlist) { |
256 |
> |
# Read the contents of the directory |
257 |
> |
opendir(DIR, "$imgdir/$machine"); |
258 |
> |
my(@imglist) = grep { /\.png$/ && -f "$imgdir/$machine/$_" } readdir(DIR); |
259 |
> |
closedir DIR; |
260 |
> |
|
261 |
> |
# See what rrd we have, and generate the graphs accordingly |
262 |
> |
foreach my $img (@imglist) { |
263 |
> |
chomp $img; |
264 |
> |
# stat the img |
265 |
> |
my($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime, |
266 |
> |
$ctime,$blksize,$blocks) = stat("$imgdir/$machine/$img"); |
267 |
> |
# check if it's old enough to be deleted |
268 |
> |
if((time - $mtime) > $maximgage) { |
269 |
> |
# if so, delete it |
270 |
> |
unlink("$imgdir/$machine/$img"); |
271 |
> |
&log("deleted old image $imgdir/$machine/$img\n"); |
272 |
> |
} |
273 |
|
} |
274 |
+ |
# have a last check, maybe we can remove the directory now? |
275 |
+ |
# Read the contents of the directory |
276 |
+ |
opendir(DIR, "$imgdir/$machine"); |
277 |
+ |
my(@dirlist) = grep { !/^\.$/ && !/^\.\.$/ } readdir(DIR); |
278 |
+ |
closedir DIR; |
279 |
+ |
if($#dirlist == -1) { |
280 |
+ |
rmdir "$imgdir/$machine"; |
281 |
+ |
&log("deleted empty image directory $imgdir/$machine\n"); |
282 |
+ |
} |
283 |
|
} |
220 |
– |
# have a last check, maybe we can remove the directory now? |
221 |
– |
# Read the contents of the directory |
222 |
– |
opendir(DIR, "$imgdir/$machine"); |
223 |
– |
my(@dirlist) = grep { !/^\.$/ && !/^\.\.$/ } readdir(DIR); |
224 |
– |
closedir DIR; |
225 |
– |
if($#dirlist == -1) { |
226 |
– |
print "pruning img dir $imgdir/$machine\n"; |
227 |
– |
rmdir "$imgdir/$machine"; |
228 |
– |
} |
284 |
|
} |
285 |
|
|
286 |
+ |
exit(0); |
287 |
+ |
|
288 |
+ |
|
289 |
|
# |
290 |
|
# subroutine to make some graphs |
291 |
|
# |
296 |
|
# $title = the title for the graph |
297 |
|
# (eg. kernow CPU usage) |
298 |
|
# $dataref = a reference to an array containing information for the graph |
299 |
< |
# elements of format: "gtype:rrdname:dsname:name#colour:comment with spaces" |
299 |
> |
# elements of format: "gtype:rrdname:dsname:name#colour:legend:comment with spaces" |
300 |
|
# (if gtype is "NONE" only a DEF of 'name' will be defined, no line will be plotted) |
301 |
+ |
# (if legend is "NONE" the latest/average/max/min legend won't be printed) |
302 |
|
# $rawcmdref = a reference to an array containing raw rrd commands |
303 |
|
# elements a single command each, no spaces |
304 |
|
# |
312 |
|
if(! -d "$imgdir/$machine") { |
313 |
|
# not sure on this umask, but it seems to work? |
314 |
|
mkdir "$imgdir/$machine", 0777; |
315 |
+ |
&log("created directory $imgdir/$machine\n"); |
316 |
|
} |
317 |
|
my(@rrdcmd); |
318 |
|
foreach my $dataitem (@data) { |
319 |
< |
# dataitem should be: "gtype:rrdname:dsname:name#colour:comment with spaces" |
319 |
> |
# dataitem should be: "gtype:rrdname:dsname:name#colour:legend:comment with spaces" |
320 |
|
# (if gtype is "NONE" only a DEF of 'name' will be defined, no line will be plotted) |
321 |
< |
if($dataitem =~ /^(\S+):(\S+):(\S+):(\S+)#(.{6}):(.*)$/) { |
321 |
> |
# (if legend is "NONE" the latest/average/max/min legend won't be printed) |
322 |
> |
if($dataitem =~ /^(\S+):(\S+):(\S+):(\S+)#(.{6}):(\S+):(.*)$/) { |
323 |
|
push @rrdcmd, "DEF:$4=$rrddir/$machine/$2.rrd:$3:AVERAGE"; |
324 |
|
if($1 ne "NONE") { |
325 |
< |
push @rrdcmd, "$1:$4#$5:$6"; |
325 |
> |
push @rrdcmd, "$1:$4#$5:$7"; |
326 |
> |
if($6 ne "NONE") { |
327 |
> |
# add some nice values to the legend |
328 |
> |
&addlegend(\@rrdcmd, $4); |
329 |
> |
} |
330 |
|
} |
331 |
|
} |
332 |
|
} |
339 |
|
push @rrdcmd, @rawcmd; |
340 |
|
RRDs::graph ("$imgdir/$machine/$type-3h.png", "--start=-10800", @rrdcmd); |
341 |
|
my($err_3h) = RRDs::error; |
342 |
< |
print STDERR "Error generating 3h graph for $machine/$type: $err_3h\n" if $err_3h; |
342 |
> |
&log("created $imgdir/$machine/$type-3h.png\n") unless $err_3h; |
343 |
> |
&error("Error generating 3h graph for $machine/$type: $err_3h\n") if $err_3h; |
344 |
|
RRDs::graph ("$imgdir/$machine/$type-1d.png", "--start=-86400", @rrdcmd); |
345 |
|
my($err_1d) = RRDs::error; |
346 |
< |
print STDERR "Error generating 1d graph for $machine/$type: $err_1d\n" if $err_1d; |
346 |
> |
&log("created $imgdir/$machine/$type-1d.png\n") unless $err_1d; |
347 |
> |
&error("Error generating 1d graph for $machine/$type: $err_1d\n") if $err_1d; |
348 |
|
RRDs::graph ("$imgdir/$machine/$type-1w.png", "--start=-604800", @rrdcmd); |
349 |
|
my($err_1w) = RRDs::error; |
350 |
< |
print STDERR "Error generating 1w graph for $machine/$type: $err_1w\n" if $err_1w; |
350 |
> |
&log("created $imgdir/$machine/$type-1w.png\n") unless $err_1w; |
351 |
> |
&error("Error generating 1w graph for $machine/$type: $err_1w\n") if $err_1w; |
352 |
|
RRDs::graph ("$imgdir/$machine/$type-1m.png", "--start=-2678400", @rrdcmd); |
353 |
|
my($err_1m) = RRDs::error; |
354 |
< |
print STDERR "Error generating 1m graph for $machine/$type: $err_1m\n" if $err_1m; |
354 |
> |
&log("created $imgdir/$machine/$type-1m.png\n") unless $err_1m; |
355 |
> |
&error("Error generating 1m graph for $machine/$type: $err_1m\n") if $err_1m; |
356 |
|
RRDs::graph ("$imgdir/$machine/$type-1y.png", "--start=-31536000", @rrdcmd); |
357 |
|
my($err_1y) = RRDs::error; |
358 |
< |
print STDERR "Error generating 1y graph for $machine/$type: $err_1y\n" if $err_1y; |
358 |
> |
&log("created $imgdir/$machine/$type-1y.png\n") unless $err_1y; |
359 |
> |
&error("Error generating 1y graph for $machine/$type: $err_1y\n") if $err_1y; |
360 |
|
return; |
361 |
|
} |
362 |
|
|
363 |
+ |
# subroutine to add a legend |
364 |
+ |
# accepts reference to an array and a name |
365 |
+ |
sub addlegend() { |
366 |
+ |
my($dataref, $name) = @_; |
367 |
+ |
push @$dataref, "GPRINT:$name:LAST:Current\\: \%8.2lf %s"; |
368 |
+ |
push @$dataref, "GPRINT:$name:AVERAGE:Average\\: \%8.2lf %s"; |
369 |
+ |
push @$dataref, "GPRINT:$name:MAX:Max\\: \%8.2lf %s\\n"; |
370 |
+ |
#push @$dataref, "GPRINT:$name:MIN:Min\\: \%8.2lf %s\\n"; |
371 |
+ |
} |
372 |
+ |
|
373 |
|
# hacky subroutine to return a colour |
374 |
|
# could be done much better somehow :/ |
375 |
|
sub get_colour { |
392 |
|
else { |
393 |
|
return "#000066"; |
394 |
|
} |
395 |
+ |
} |
396 |
+ |
|
397 |
+ |
# prints out usage information then exits |
398 |
+ |
sub usage() { |
399 |
+ |
print "Usage: graph.pl [options]\n"; |
400 |
+ |
print "Options\n"; |
401 |
+ |
print " -c config Specifies the configuration file\n"; |
402 |
+ |
print " default: rrdgraphing.conf\n"; |
403 |
+ |
print " -v Be verbose about what's happening\n"; |
404 |
+ |
print " -q Be quiet, even supress errors\n"; |
405 |
+ |
print " -V Print version number\n"; |
406 |
+ |
print " -h Prints this help page\n"; |
407 |
+ |
exit(1); |
408 |
+ |
} |
409 |
+ |
|
410 |
+ |
# prints a log message if verbose is turned on |
411 |
+ |
sub log() { |
412 |
+ |
my($msg) = @_; |
413 |
+ |
print $msg if $verbose; |
414 |
+ |
} |
415 |
+ |
|
416 |
+ |
# prints an error message unless quiet is turned on |
417 |
+ |
sub error() { |
418 |
+ |
my($msg) = @_; |
419 |
+ |
print STDERR $msg unless $quiet; |
420 |
|
} |