763f71b37e4367c449ed114f77dbf4383068407c
[debian/amanda] / installcheck / amreport.pl
1 # Copyright (c) 2009, 2010 Zmanda, Inc.  All Rights Reserved.
2 #
3 # This program is free software; you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License version 2 as published
5 # by the Free Software Foundation.
6 #
7 # This program is distributed in the hope that it will be useful, but
8 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
9 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
10 # for more details.
11 #
12 # You should have received a copy of the GNU General Public License along
13 # with this program; if not, write to the Free Software Foundation, Inc.,
14 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 #
16 # Contact information: Zmanda Inc, 465 S. Mathilda Ave., Suite 300
17 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
18
19 use Test::More tests => 156;
20
21 use strict;
22 use warnings;
23 use Cwd qw(abs_path);
24 use lib "@amperldir@";
25
26 use Installcheck;
27 use Installcheck::Run qw( run run_get run_err );
28 use Amanda::Paths;
29 use Amanda::Constants;
30 use Amanda::Util qw( slurp burp );
31 use Amanda::Debug;
32 use Amanda::Config qw (:getconf);
33
34 # easy knob to twiddle to check amreport_new instead
35 my $amreport = "amreport";
36
37 Amanda::Debug::dbopen("installcheck");
38 Installcheck::log_test_output();
39
40 # we use Text::Diff for diagnostics if it's installed
41 my $have_text_diff;
42 BEGIN {
43     eval "use Text::Diff;";
44     if ($@) {
45         $have_text_diff = 0;
46     } else {
47         $have_text_diff = 1;
48     }
49 }
50
51 # set up a fake "printer" for postscript output
52 my $printer_output = "$Installcheck::TMP/postscript-output";
53 $ENV{'INSTALLCHECK_MOCK_LPR_OUTPUT'} = $printer_output;
54 $ENV{'INSTALLCHECK_MOCK_LPR'} = abs_path("mock") . "/lpr";
55
56 # and a fake template
57 my $ps_template = "$Installcheck::TMP/postscript-template";
58 burp($ps_template, "--PS-TEMPLATE--\n");
59
60 # and a fake "mail" for email output
61 my $mail_output = "$Installcheck::TMP/mail-output";
62 $ENV{'INSTALLCHECK_MOCK_MAIL_OUTPUT'} = $mail_output;
63 my $mail_mock = abs_path("mock") . "/mail";
64
65 my $old_log_filename="$Installcheck::TMP/installcheck-log.datastamp.0";
66 my $current_log_filename="$Installcheck::TMP/log";
67 my $out_filename="$Installcheck::TMP/installcheck-amreport-output";
68
69 sub setup_config {
70     my %params = @_;
71     my $testconf = Installcheck::Run::setup();
72
73     my $mailer =
74         $params{want_mailer}  ? "\"$mail_mock\""
75       : $params{bogus_mailer} ? "\"$mail_mock.bogus\""
76       :                         '""';                    #default
77
78     $testconf->add_param('mailer', $mailer);
79     $testconf->add_param('mailto',
80         $params{want_mailto} ? '"nobody\@localhost"' : '""');
81
82     $testconf->add_tapetype('TEST-TAPE-TEMPLATE', [
83         'length' => '30 mbytes',
84         'filemark' => '4 kbytes',
85         $params{'want_template'}? ('lbl_templ' => "\"$ps_template\""):(),
86     ]);
87     $testconf->add_param('tapetype', "\"TEST-TAPE-TEMPLATE\"");
88
89     $testconf->remove_param('send_amreport_on');
90     $testconf->add_param('send_amreport_on',
91         exists $params{send_amreport} ? uc($params{send_amreport}) : "ALL"
92     );
93
94     $testconf->remove_param('logdir');
95     $testconf->add_param('logdir', "\"$Installcheck::TMP\"");
96     $testconf->write();
97 }
98
99 sub cleanup {
100     unlink $old_log_filename;
101     unlink $current_log_filename;
102     unlink $out_filename;
103     unlink $mail_output;
104     unlink $printer_output;
105 }
106
107 # compare two multiline strings, giving a diff if they do not match
108 sub results_match
109 {
110     my ( $a_filename, $b, $msg ) = @_;
111
112     if ($a_filename eq 'stdout') {
113         $a = $Installcheck::Run::stdout;
114         if (!$a) {
115             diag("stdout is empty");
116             fail($msg);
117             return;
118         }
119     } else {
120         if (!-f $a_filename) {
121             diag("'$a_filename' does not exist");
122             fail($msg);
123             return;
124         }
125         $a = slurp($a_filename);
126     }
127
128     my $is_ps = ($b =~ m/^--PS-TEMPLATE--/);
129
130     my $cleanup = sub {
131         my $str = shift;
132         chomp $str;
133
134         # strip out special characters
135         $str =~ tr{\f}{};
136
137         if ($is_ps) {
138             # old amreport underquotes the postscript strings
139             $str =~ s{\\\(}{(}mgx;
140             $str =~ s{\\\)}{)}mgx;
141         } else {
142             # make human report insensitive to whitespace differences
143             $str =~ s{[\t ]+}{ }mgx;
144             $str =~ s{\s*\n[\n ]*\s*}{\n}mgx;
145         }
146
147         # chomp the version lines
148         $str =~ s{\n\(brought to you by Amanda version .*$}{\n<versioninfo>}g;
149         $str =~ s{\(Amanda Version .*\) DrawVers}{(Amanda Version x.y.z) DrawVers}g;
150
151         return $str;
152     };
153
154     $a = $cleanup->($a);
155     $b = $cleanup->($b);
156
157     if ( $a eq $b ) {
158         pass($msg);
159     } else {
160         my $diff;
161         if ($have_text_diff) {
162             $diff = diff( \$a, \$b, { 'STYLE' => "Unified" } );
163         } else {
164             $diff = "---- GOT: ----\n$a\n---- EXPECTED: ----\n$b\n---- ----";
165         }
166         fail($msg);
167         diag($diff);
168     }
169 }
170
171 # convert a regular report into what we expect to see in a mail
172 sub make_mail {
173     my ($report, $config, $error, $date, $addr) = @_;
174     my $error_msg ="";
175     $error_msg = " FAIL:" if $error;
176     return <<EOF . $report;
177 \$ARGS = ['-s','$config${error_msg} AMANDA MAIL REPORT FOR $date','$addr'];
178 EOF
179 }
180
181 ## read __DATA__ to a hash, keyed by the names following '%%%%'
182
183 my %datas;
184 my $key = undef;
185 while (<DATA>) {
186     if (/^%%%% (.*)/) {
187         $key = $1;
188     } else {
189         $datas{$key} .= $_;
190     }
191 }
192
193 ## and make a very long logfile
194 {
195     my $trigger_line = "  . /bin/tar: ./var/run/acpid.socket: socket ignored\n";
196     my $replacement = "  | /bin/tar: something crazy!\n" x 1000;
197     $datas{'longstrange'} = $datas{'shortstrange'};
198     $datas{'longstrange'} =~
199         s{$trigger_line}{$replacement};
200
201     # this set of 1000 lines is shortened in the report..
202     $trigger_line = "--LINE-REPLACED-BY-91-LINES--\n";
203     $replacement = "  | /bin/tar: something crazy!\n" x 91;
204     $datas{'longstrange-rpt'} =~
205         s{$trigger_line}{$replacement};
206 }
207
208 ## try a few various options with a pretty normal logfile.  Note that
209 ## these tests all use amreport's script mode
210
211 setup_config(want_mailer => 1, want_mailto => 1, want_template => 1);
212 cleanup();
213 burp($current_log_filename, $datas{'normal'});
214
215 like(run_err($amreport, 'TESTCONF-NOSUCH'),
216     qr/could not open conf/,
217     "amreport with bogus config exits with error status and error message");
218
219 ok(!run($amreport, 'TESTCONF-NOSUCH', '--help'),
220     "amreport --help exits with status 1");
221 like($Installcheck::Run::stdout,
222     qr/Usage: amreport conf/,
223     "..and prints usage message");
224
225 like(run_get($amreport, 'TESTCONF-NOSUCH', '--version'),
226     qr/^amreport-.*/,
227     "amreport --version gives version");
228
229 ok(run($amreport, 'TESTCONF', '--from-amdump'),
230     "amreport, as run from amdump, with mailer, mailto, and a template")
231     or diag($Installcheck::Run::stderr);
232 is($Installcheck::Run::stdout, "", "..produces no output");
233 results_match($mail_output,
234     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "nobody\@localhost"),
235     "..mail matches");
236 results_match($printer_output,
237     $datas{'normal-postscript'},
238     "..printer output matches");
239
240 ok(run($amreport, 'TESTCONF', '--from-amdump', '/garbage/directory/'),
241     "amreport, as run from amdump, with mailer, mailto, and a template, and  bogus option")
242     or diag($Installcheck::Run::stderr);
243 is($Installcheck::Run::stdout, "", "..produces no output");
244 results_match($mail_output,
245     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "nobody\@localhost"),
246     "..mail matches");
247 results_match($printer_output,
248     $datas{'normal-postscript'},
249     "..printer output matches");
250
251
252 cleanup();
253 burp($current_log_filename, $datas{'normal'});
254
255 ok(run($amreport, 'TESTCONF', '-M', 'somebody@localhost'),
256     "amreport -M, with mailer, mailto, and a template")
257     or diag($Installcheck::Run::stderr);
258 is($Installcheck::Run::stdout, "", "..produces no output");
259 results_match($mail_output,
260     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "somebody\@localhost"),
261     "..mail matches");
262 results_match($printer_output,
263     $datas{'normal-postscript'},
264     "..printer output matches");
265
266 cleanup();
267 burp($current_log_filename, $datas{'normal'});
268
269 like(run_get($amreport, 'TESTCONF', '-i'),
270     qr/nothing to do/,
271     "amreport -i, with mailer, mailto, and a template, prints an error but exit==0");
272
273 cleanup();
274 burp($current_log_filename, $datas{'normal'});
275
276 ok(run($amreport, 'TESTCONF', '-p', $out_filename),
277     "amreport -p, with mailer, mailto, and a template")
278     or diag($Installcheck::Run::stderr);
279 is($Installcheck::Run::stdout, "", "..produces no output");
280 results_match($mail_output,
281     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "nobody\@localhost"),
282     "..mail matches");
283 ok(! -f $printer_output,
284     "..doesn't print");
285 results_match($out_filename, $datas{'normal-postscript'}, "..postscript file matches");
286
287 # test a bare 'amreport', which should now output to stdout
288 cleanup();
289 burp($current_log_filename, $datas{'normal'});
290
291 ok(run($amreport, 'TESTCONF'),
292     "amreport with no other options outputs to stdout for user convenience")
293   or diag($Installcheck::Run::stderr);
294 results_match('stdout', $datas{'normal-rpt1'},
295     "..output matches");
296 ok(!-f $printer_output, "..no printer output")
297   or diag("error: printer output!:\n" . burp($printer_output));
298 ok(!-f $mail_output, "..no mail output")
299   or diag("error: mail output!:\n" . burp($printer_output));
300
301 # test long-form file option
302 cleanup();
303 burp($current_log_filename, $datas{'normal'});
304
305 ok(run($amreport, 'TESTCONF', "--text=$out_filename"),
306     "amreport --text=foo, no other options")
307   or diag($Installcheck::Run::stderr);
308 results_match($out_filename, $datas{'normal-rpt1'},
309     "..output matches");
310 ok(!-f $printer_output, "..no printer output")
311   or diag("error: printer output!:\n" . burp($printer_output));
312 ok(!-f $mail_output, "..no mail output")
313   or diag("error: mail output!:\n" . burp($printer_output));
314
315 # test long form postscript option
316 cleanup();
317 burp($current_log_filename, $datas{'normal'});
318
319 ok(
320     run($amreport, 'TESTCONF', '--ps', $out_filename),
321     "amreport --ps foo, no other options"
322 );
323 results_match($out_filename, $datas{"normal-postscript"}, '..results match');
324 ok(!-f $printer_output, "..no printer output");
325 ok(!-f $mail_output, "..no mail output");
326
327 cleanup();
328
329 # test new mail option, using config mailto
330 setup_config(want_mailer => 1, want_mailto => 1, want_template => 1);
331 burp($current_log_filename, $datas{'normal'});
332 ok(run($amreport, 'TESTCONF', '--mail-text'),
333     "amreport --mail-text, no other options, built-in mailto");
334 results_match(
335     $mail_output,
336     make_mail(
337         $datas{'normal-rpt1'}, "DailySet1", 0,
338         "February 25, 2009",   "nobody\@localhost"
339     ),
340     "..mail matches"
341 );
342 ok(!-f $printer_output, "..no printer output");
343 ok(!-f $out_filename,   "..no file output");
344
345 cleanup();
346
347 # test new mail option, using passed mailto
348 burp($current_log_filename, $datas{'normal'});
349 ok(run($amreport, 'TESTCONF', '--mail-text=somebody@localhost',),
350     'amreport --mail-text=somebody\@localhost, no other options');
351 results_match(
352     $mail_output,
353     make_mail(
354         $datas{'normal-rpt1'}, "DailySet1", 0,
355         "February 25, 2009",   "somebody\@localhost"
356     ),
357     "..mail matches"
358 );
359 ok(!-f $printer_output, "..no printer output");
360 ok(!-f $out_filename, "..no file output");
361
362 cleanup();
363
364 # test long-form old log option
365 burp($old_log_filename, $datas{'normal'});
366 ok(
367     run($amreport, 'TESTCONF', '--log', $old_log_filename),
368     "amreport --log with old log, no other config options"
369 );
370 results_match('stdout', $datas{'normal-rpt1'},
371     '..stdout output matches');
372 ok(!-f $mail_output, "..no mail output");
373 ok(!-f $out_filename, "..no file output");
374 ok(!-f $printer_output, "..no printer output");
375
376 cleanup();
377
378 # test long-form print option, without specified printer
379 setup_config(want_template => 1);
380 burp($current_log_filename, $datas{'normal'});
381 ok(run($amreport, 'TESTCONF', '--print'),
382     'amreport --print, no other options');
383 results_match(
384     $printer_output,
385     $datas{'normal-postscript'},
386     "..printer output matches"
387 );
388 ok(!-f $mail_output,  "..no mail output");
389 ok(!-f $out_filename, "..no file output");
390
391 cleanup();
392 burp($current_log_filename, $datas{'normal'});
393
394 setup_config(want_mailer => 1, want_mailto => 1, want_template => 1);
395 ok(run($amreport, 'TESTCONF', '-i', '-p', $out_filename),
396     "amreport -i -p, with mailer, mailto, and a template")
397     or diag($Installcheck::Run::stderr);
398 is($Installcheck::Run::stdout, "", "..produces no output");
399 ok(! -f $mail_output,
400     "..produces no mail");
401 ok(! -f $printer_output,
402     "..doesn't print");
403 results_match($out_filename,
404     $datas{'normal-postscript'},
405     "..postscript output in -p file matches");
406
407 cleanup();
408 burp($current_log_filename, $datas{'normal'});
409
410 ok(run($amreport, 'TESTCONF', '-i', '-f', $out_filename),
411     "amreport -i -f, with mailer, mailto, and a template")
412     or diag($Installcheck::Run::stderr);
413 is($Installcheck::Run::stdout, "", "..produces no output");
414 ok(! -f $mail_output,
415     "..produces no mail");
416 results_match($printer_output,
417     $datas{'normal-postscript'},
418     "..printer output matches");
419 results_match($out_filename,
420     $datas{'normal-rpt1'},
421     "..report output in -f file matches");
422
423 cleanup();
424 burp($old_log_filename, $datas{'normal'});
425
426 ok(run($amreport, 'TESTCONF', '-l', $old_log_filename),
427     "amreport -l, with mailer, mailto, and a template")
428     or diag($Installcheck::Run::stderr);
429 is($Installcheck::Run::stdout, "", "..produces no output");
430 results_match($mail_output,
431     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "nobody\@localhost"),
432     "..mail matches");
433 results_match($printer_output,
434     $datas{'normal-postscript'},
435     "..printer output matches");
436
437 setup_config(want_mailer => 1);
438 cleanup();
439 burp($current_log_filename, $datas{'normal'});
440
441 like(run_get($amreport, 'TESTCONF', '--from-amdump'),
442     qr/nothing to do/,
443     "amreport --from-amdump, with mailer but no mailto and no template, "
444     . "prints an error but exit==0");
445 ok(! -f $mail_output, "..doesn't mail");
446 ok(! -f $printer_output, "..doesn't print");
447
448 cleanup();
449 burp($current_log_filename, $datas{'normal'});
450
451 ok(run($amreport, 'TESTCONF', '--from-amdump', '-o', 'mailto=hello'),
452     "amreport -o to set mailto, with mailer but no mailto and no template")
453     or diag($Installcheck::Run::stderr);
454 is($Installcheck::Run::stdout, "", "..produces no output");
455 results_match($mail_output,
456     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "hello"),
457     "..mail matches");
458 ok(! -f $printer_output,
459     "..doesn't print");
460
461 cleanup();
462 burp($current_log_filename, $datas{'normal'});
463
464 like(run_err($amreport, 'TESTCONF', '--from-amdump', '-o', 'mailto=ill\egal'),
465     qr/mail address has invalid characters/,
466     "amreport with illegal email in -o, with mailer but no mailto and no template, errors out");
467
468 setup_config(want_mailer => 1, want_template => 1);
469 cleanup();
470 burp($current_log_filename, $datas{'normal'});
471
472 like(run_get($amreport, 'TESTCONF', '--from-amdump'),
473     qr/nothing to do/, ## this is arguably a bug, but we'll keep it
474     "no-args amreport with mailer, no mailto, and a template does nothing even though it could "
475         . "print a label");
476 ok(! -f $mail_output, "..doesn't mail");
477 ok(! -f $printer_output, "..doesn't print");
478
479 cleanup();
480 burp($current_log_filename, $datas{'normal'});
481
482 ok(run($amreport, 'TESTCONF', '--from-amdump', '-o', 'mailto=dustin'),
483     "amreport with mailer, no mailto, and a template, but mailto in config override works")
484     or diag($Installcheck::Run::stderr);
485 is($Installcheck::Run::stdout, "", "..produces no output");
486 results_match($mail_output,
487     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "dustin"),
488     "..mail matches");
489 results_match($printer_output,
490     $datas{'normal-postscript'},
491     "..printer output matches");
492
493 cleanup();
494 burp($current_log_filename, $datas{'doublefailure'});
495
496 ok(!run($amreport, 'TESTCONF', '-M', 'dustin'),
497     "amreport with log in error")
498     or diag($Installcheck::Run::stderr);
499 is($Installcheck::Run::stdout, "", "..produces no output");
500 results_match($mail_output,
501     make_mail($datas{'doublefailure-rpt'}, "DailySet1", 1, "March 26, 2009", "dustin"),
502     "..mail matches");
503
504 cleanup();
505 burp($current_log_filename, $datas{'normal'});
506
507 ok(run($amreport, 'TESTCONF', '-M', 'pcmantz'),
508     "amreport with mailer, no mailto, and a template, but mailto in -M works")
509     or diag($Installcheck::Run::stderr);
510 is($Installcheck::Run::stdout, "", "..produces no output");
511 results_match($mail_output,
512     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "pcmantz"),
513     "..mail matches");
514 results_match($printer_output,
515     $datas{'normal-postscript'},
516     "..printer output matches");
517
518 setup_config(want_template => 1);
519 cleanup();
520 burp($current_log_filename, $datas{'normal'});
521
522 like(run_get($amreport, 'TESTCONF', '-M', 'martineau'),
523     qr/Warning: a mailer is not defined/,
524     "amreport with no mailer, no mailto, and a template, but mailto in -M fails with "
525         . "warning, but exit==0");
526 ok(! -f $mail_output, "..doesn't mail");
527 ok(! -f $printer_output, "..doesn't print");
528
529 setup_config(want_mailer => 1, want_mailto => 1);
530 cleanup();
531 burp($current_log_filename, $datas{'normal'});
532
533 ok(run($amreport, 'TESTCONF', '-p', $out_filename), # XXX another probable bug
534     "amreport with mailer, mailto, but no template, ignores -p option ")
535     or diag($Installcheck::Run::stderr);
536 is($Installcheck::Run::stdout, "", "..produces no output");
537 results_match($mail_output,
538     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "nobody\@localhost"),
539     "..mail matches");
540 ok(! -f $printer_output,
541     "..doesn't print");
542
543 cleanup();
544 burp($current_log_filename, $datas{'normal'});
545
546 ok(run($amreport, 'TESTCONF', '-o', "tapetype:TEST-TAPE-TEMPLATE:lbl_templ=$ps_template",
547                                             '-p', $out_filename),
548     "amreport with mailer, mailto, but no template, minds -p option if template given via -o")
549     or diag($Installcheck::Run::stderr);
550 is($Installcheck::Run::stdout, "", "..produces no output");
551 results_match($mail_output,
552     make_mail($datas{'normal-rpt1'}, "DailySet1", 0, "February 25, 2009", "nobody\@localhost"),
553     "..mail matches");
554 results_match($out_filename,
555     $datas{'normal-postscript'},
556     "..printer output matches");
557
558 cleanup();
559 burp($current_log_filename, $datas{'normal'});
560 setup_config(bogus_mailer => 1, want_mailto => 1, want_template => 1);
561
562 ok(run($amreport, 'TESTCONF', '--from-amdump'),
563     "amreport with bogus mailer; doesn't mail, still prints")
564   or diag($Installcheck::Run::stderr);
565 ok(!-f $mail_output, "..produces no mail output");
566 is($Installcheck::Run::stdout, "", "..produces no stdout output");
567 results_match(
568     $printer_output,
569     $datas{'normal-postscript'},
570     "..printer output matches"
571 );
572
573 cleanup();
574 burp($current_log_filename, $datas{'normal'});
575 setup_config(
576     want_mailer   => 1,
577     want_mailto   => 1,
578     want_template => 1,
579     send_amreport => 'error'
580 );
581
582 ok(
583     run($amreport, 'TESTCONF', '--from-amdump'),
584 "amreport with CNF_SEND_AMREPORT_ON set to errors only, no mail, still prints"
585 ) or diag($Installcheck::Run::stderr);
586 ok(!-f $mail_output, "..produces no mail output") or diag(slurp $mail_output);
587 is($Installcheck::Run::stdout, "", "..produces no stdout output")
588   or diag($Installcheck::Run::stdout);
589 results_match(
590     $printer_output,
591     $datas{'normal-postscript'},
592     "..printer output matches"
593 );
594
595 ## test columnspec adjustments, etc.
596
597 cleanup();
598 setup_config();
599 burp($current_log_filename, $datas{'normal'});
600
601 ok(run($amreport, 'TESTCONF', '-f', $out_filename, '-o', 'columnspec=OrigKB=::2'),
602     "amreport with OrigKB=::2");
603 results_match($out_filename, $datas{'normal-rpt2'},
604     "..result matches");
605
606 ok(run($amreport, 'TESTCONF', '-f', $out_filename, '-o', 'columnspec=OrigKB=:5'),
607     "amreport with OrigKB=:5");
608 results_match($out_filename, $datas{'normal-rpt3'},
609     "..result matches");
610
611 ok(run($amreport, 'TESTCONF', '-f', $out_filename, '-o', 'columnspec=OrigKB=:5:6'),
612     "amreport with OrigKB=:5:6");
613 results_match($out_filename, $datas{'normal-rpt4'},
614     "..result matches");
615 # TODO: do a lot more tests of the colspec stuff
616
617 ok(run($amreport, 'TESTCONF', '-f', $out_filename, '-o', 'displayunit=m'),
618     "amreport with displayunit=m");
619 results_match($out_filename, $datas{'normal-rpt5'},
620     "..result matches");
621
622 ## some (anonymized) real logfiles, for regression testing
623
624 cleanup();
625 setup_config(want_template => 1);
626 burp($current_log_filename, $datas{'strontium'});
627
628 ok(run($amreport, 'TESTCONF', '-f', $out_filename),
629     "amreport with strontium logfile (simple example with multiple levels)");
630 results_match($out_filename, $datas{'strontium-rpt'},
631     "..result matches");
632 results_match($printer_output,
633     $datas{'strontium-postscript'},
634     "..printer output matches");
635
636 cleanup();
637 burp($current_log_filename, $datas{'amflush'});
638
639 ok(run($amreport, 'TESTCONF', '-f', $out_filename),
640     "amreport with amflush logfile (regression check for flush-related DUMP STATUS)");
641 results_match($out_filename, $datas{'amflush-rpt'},
642     "..result matches");
643 results_match($printer_output,
644     $datas{'amflush-postscript'},
645     "..printer output matches");
646
647 cleanup();
648 burp($current_log_filename, $datas{'resultsmissing'});
649
650 run($amreport, 'TESTCONF', '-f', $out_filename);
651 is($Installcheck::Run::exit_code, 8,
652     "amreport with resultsmissing logfile ('RESULTS MISSING') exit==8");
653 results_match($out_filename, $datas{'resultsmissing-rpt'},
654     "..result matches");
655 results_match($printer_output,
656     $datas{'resultsmissing-postscript'},
657     "..printer output matches");
658
659 cleanup();
660 burp($current_log_filename, $datas{'shortstrange'});
661
662 run($amreport, 'TESTCONF', '-f', $out_filename);
663 is($Installcheck::Run::exit_code, 2,
664     "amreport with shortstrange logfile exit==2");
665 results_match($out_filename, $datas{'shortstrange-rpt'},
666     "..result matches");
667 results_match($printer_output,
668     $datas{'shortstrange-postscript'},
669     "..printer output matches");
670
671 cleanup();
672 burp($current_log_filename, $datas{'longstrange'});
673
674 run($amreport, 'TESTCONF', '-f', $out_filename);
675 is($Installcheck::Run::exit_code, 2,
676     "amreport with longstrange logfile exit==2");
677 results_match($out_filename, $datas{'longstrange-rpt'},
678     "..result matches");
679
680 cleanup();
681 burp($current_log_filename, $datas{'doublefailure'});
682
683 run($amreport, 'TESTCONF', '-f', $out_filename);
684 is($Installcheck::Run::exit_code, 4,
685     "amreport with doublefailure logfile exit==4");
686 results_match($out_filename, $datas{'doublefailure-rpt'},
687     "..result matches");
688 results_match($printer_output,
689     $datas{'doublefailure-postscript'},
690     "..printer output matches");
691
692 cleanup();
693 burp($current_log_filename, $datas{'bigestimate'});
694
695 run($amreport, 'TESTCONF', '-f', $out_filename);
696 is($Installcheck::Run::exit_code, 0,
697     "amreport with bigestimate logfile exit==0");
698 results_match($out_filename, $datas{'bigestimate-rpt'},
699     "..result matches");
700 results_match($printer_output,
701     $datas{'bigestimate-postscript'},
702     "..printer output matches");
703
704 cleanup();
705 burp($current_log_filename, $datas{'retried'});
706
707 run($amreport, 'TESTCONF', '-f', $out_filename);
708 is($Installcheck::Run::exit_code, 4,
709     "amreport with retried logfile exit==4");
710 results_match($out_filename, $datas{'retried-rpt'},
711     "..result matches");
712 results_match($printer_output,
713     $datas{'retried-postscript'},
714     "..printer output matches");
715
716 cleanup();
717 # if the 'FINISH DRIVER' line is missing, then the dumps did not finish
718 # properly, and the runtime is 0:00. We'll simulate that by "adjusting"
719 # the retried logfile.  First, lose the final line
720 $datas{'retried'} =~ s/^FINISH driver.*\n//m;
721 # and correspondingly add "FAILED" message to report
722 $datas{'retried-rpt'} = "*** THE DUMPS DID NOT FINISH PROPERLY!\n"
723                         . $datas{'retried-rpt'};
724 # and adjust the runtime
725 $datas{'retried-rpt'} =~ s{(Run Time .*)21:32}{$1 0:00};
726 burp($current_log_filename, $datas{'retried'});
727
728 run($amreport, 'TESTCONF', '-f', $out_filename);
729 is($Installcheck::Run::exit_code, 4,
730     "amreport with retried logfile where driver did not finish exit==4");
731 results_match($out_filename, $datas{'retried-rpt'},
732     "..result matches");
733
734 cleanup();
735 burp($current_log_filename, $datas{'taperr'});
736
737 run($amreport, 'TESTCONF', '-f', $out_filename);
738 is($Installcheck::Run::exit_code, 16,
739     "amreport with taperr logfile exit==16");
740 results_match($out_filename, $datas{'taperr-rpt-holding'},
741     "..result matches");
742 ok((-f $printer_output and -z $printer_output),
743     "..printer output exists but is empty");
744 cleanup();
745 burp($old_log_filename, $datas{'taperr'});
746
747 # use an explicit -l here so amreport doesn't try to look at the holding disk
748 run($amreport, 'TESTCONF', '-f', $out_filename, '-l', $old_log_filename);
749 is($Installcheck::Run::exit_code, 16,
750     "amreport with taperr logfile specified explicitly exit==16");
751 results_match($out_filename, $datas{'taperr-rpt-noholding'},
752     "..result matches");
753
754 cleanup();
755 burp($current_log_filename, $datas{'spanned'});
756
757 run($amreport, 'TESTCONF', '-f', $out_filename);
758 is($Installcheck::Run::exit_code, 0,
759     "amreport with spanned logfile");
760 results_match($out_filename, $datas{'spanned-rpt'},
761     "..result matches");
762 results_match($printer_output,
763     $datas{'spanned-postscript'},
764     "..printer output matches");
765
766 cleanup();
767 burp($current_log_filename, $datas{'fatal'});
768
769 run($amreport, 'TESTCONF', '-f', $out_filename);
770 is($Installcheck::Run::exit_code, 13,
771     "amreport with fatal logfile");
772 results_match($out_filename, $datas{'fatal-rpt'},
773     "..result matches");
774 ok(-f $printer_output && -z $printer_output,
775     "..printer output is empty (no dumps, no tapes)");
776
777 cleanup();
778 burp($current_log_filename, $datas{'flush-origsize'});
779
780 run($amreport, 'TESTCONF', '-f', $out_filename);
781 is($Installcheck::Run::exit_code, 0,
782     "..exit status is correct");
783 results_match($out_filename, $datas{'flush-origsize-rpt'},
784     "..result matches flush-origsize-rpt");
785
786 cleanup();
787 burp($current_log_filename, $datas{'flush-noorigsize'});
788
789 run($amreport, 'TESTCONF', '-f', $out_filename);
790 is($Installcheck::Run::exit_code, 0,
791     "..exit status is correct");
792 results_match($out_filename, $datas{'flush-noorigsize-rpt'},
793     "..result matches flush-origsize-rpt");
794
795 cleanup();
796 burp($current_log_filename, $datas{'plannerfail'});
797
798 run($amreport, 'TESTCONF', '-f', $out_filename);
799 is($Installcheck::Run::exit_code, 12,
800     "..exit status is correct (failed|missing)");
801 results_match($out_filename, $datas{'plannerfail-rpt'},
802     "..result matches plannerfail-rpt");
803
804 cleanup();
805
806 __DATA__
807 %%%% normal
808 INFO amdump amdump pid 23649
809 INFO planner planner pid 23682
810 DISK planner localhost.localdomain /boot1
811 DISK planner localhost.localdomain /boot2
812 DISK planner localhost.localdomain /boot3
813 DISK planner localhost.localdomain /boot4
814 DISK planner localhost.localdomain /boot5
815 DISK planner localhost.localdomain /boot6
816 DISK planner localhost.localdomain /boot7
817 DISK planner localhost.localdomain /boot8
818 DISK planner localhost.localdomain /boot9
819 START planner date 20090225080737
820 INFO driver driver pid 23684
821 START driver date 20090225080737
822 STATS driver hostname localhost.localdomain
823 STATS driver startup time 0.004
824 INFO dumper dumper pid 23686
825 INFO taper taper pid 23685
826 FINISH planner date 20090225080737 time 0.084
827 INFO planner pid-done 23682
828 INFO chunker chunker pid 23733
829 INFO dumper gzip pid 23738
830 SUCCESS dumper localhost.localdomain /boot1 20090225080737 0 [sec 1.585 kb 12 kps 24748.4 orig-kb 16]
831 STATS driver estimate localhost.localdomain /boot1 20090225080737 0 [sec 1 nkb 12 ckb 12 kps 25715]
832 SUCCESS chunker localhost.localdomain /boot1 20090225080737 0 [sec 1.607 kb 12 kps 24426.5]
833 INFO chunker pid-done 23733
834 INFO dumper pid-done 23738
835 START taper datestamp 20090225080737 label DIRO-TEST-003 tape 1
836 PART taper DIRO-TEST-003 1 localhost.localdomain /boot1 20090225080737 1/1 0 [sec 0.250557 kb 12 kps 156611.070535]
837 DONE taper localhost.localdomain /boot1 20090225080737 1 0 [sec 0.250557 kb 12 kps 156611.070535]
838 INFO chunker chunker pid 23733
839 INFO dumper gzip pid 23738
840 SUCCESS dumper localhost.localdomain /boot2 20090225080737 0 [sec 1.585 kb 123 kps 24748.4 orig-kb 167]
841 STATS driver estimate localhost.localdomain /boot2 20090225080737 0 [sec 1 nkb 123 ckb 123 kps 25715]
842 SUCCESS chunker localhost.localdomain /boot2 20090225080737 0 [sec 1.607 kb 123 kps 24426.5]
843 INFO chunker pid-done 23733
844 INFO dumper pid-done 23738
845 PART taper DIRO-TEST-003 2 localhost.localdomain /boot2 20090225080737 1/1 0 [sec 0.250557 kb 123 kps 156611.070535]
846 DONE taper localhost.localdomain /boot2 20090225080737 1 0 [sec 0.250557 kb 123 kps 156611.070535]
847 INFO chunker chunker pid 23733
848 INFO dumper gzip pid 23738
849 SUCCESS dumper localhost.localdomain /boot3 20090225080737 0 [sec 1.585 kb 1234 kps 24748.4 orig-kb 1678]
850 STATS driver estimate localhost.localdomain /boot3 20090225080737 0 [sec 1 nkb 1234 ckb 1234 kps 25715]
851 SUCCESS chunker localhost.localdomain /boot3 20090225080737 0 [sec 1.607 kb 1234 kps 24426.5]
852 INFO chunker pid-done 23733
853 INFO dumper pid-done 23738
854 PART taper DIRO-TEST-003 3 localhost.localdomain /boot3 20090225080737 1/1 0 [sec 0.250557 kb 1234 kps 156611.070535]
855 DONE taper localhost.localdomain /boot3 20090225080737 1 0 [sec 0.250557 kb 1234 kps 156611.070535]
856 INFO chunker chunker pid 23733
857 INFO dumper gzip pid 23738
858 SUCCESS dumper localhost.localdomain /boot4 20090225080737 0 [sec 1.585 kb 12345 kps 24748.4 orig-kb 16789]
859 STATS driver estimate localhost.localdomain /boot4 20090225080737 0 [sec 1 nkb 12345 ckb 12345 kps 25715]
860 SUCCESS chunker localhost.localdomain /boot4 20090225080737 0 [sec 1.607 kb 12345 kps 24426.5]
861 INFO chunker pid-done 23733
862 INFO dumper pid-done 23738
863 PART taper DIRO-TEST-003 4 localhost.localdomain /boot4 20090225080737 1/1 0 [sec 0.250557 kb 12345 kps 156611.070535]
864 DONE taper localhost.localdomain /boot4 20090225080737 1 0 [sec 0.250557 kb 12345 kps 156611.070535]
865 INFO chunker chunker pid 23733
866 INFO dumper gzip pid 23738
867 SUCCESS dumper localhost.localdomain /boot5 20090225080737 0 [sec 1.585 kb 123456 kps 24748.4 orig-kb 167890]
868 STATS driver estimate localhost.localdomain /boot5 20090225080737 0 [sec 1 nkb 123456 ckb 123456 kps 25715]
869 SUCCESS chunker localhost.localdomain /boot5 20090225080737 0 [sec 1.607 kb 123456 kps 24426.5]
870 INFO chunker pid-done 23733
871 INFO dumper pid-done 23738
872 PART taper DIRO-TEST-003 5 localhost.localdomain /boot5 20090225080737 1/1 0 [sec 0.250557 kb 123456 kps 156611.070535]
873 DONE taper localhost.localdomain /boot5 20090225080737 1 0 [sec 0.250557 kb 123456 kps 156611.070535]
874 INFO chunker chunker pid 23733
875 INFO dumper gzip pid 23738
876 SUCCESS dumper localhost.localdomain /boot6 20090225080737 0 [sec 1.585 kb 1234567 kps 24748.4 orig-kb 1678901]
877 STATS driver estimate localhost.localdomain /boot6 20090225080737 0 [sec 1 nkb 1234567 ckb 1234567 kps 25715]
878 SUCCESS chunker localhost.localdomain /boot6 20090225080737 0 [sec 1.607 kb 1234567 kps 24426.5]
879 INFO chunker pid-done 23733
880 INFO dumper pid-done 23738
881 PART taper DIRO-TEST-003 6 localhost.localdomain /boot6 20090225080737 1/1 0 [sec 0.250557 kb 1234567 kps 156611.070535]
882 DONE taper localhost.localdomain /boot6 20090225080737 1 0 [sec 0.250557 kb 1234567 kps 156611.070535]
883 INFO chunker chunker pid 23733
884 INFO dumper gzip pid 23738
885 SUCCESS dumper localhost.localdomain /boot7 20090225080737 0 [sec 1.585 kb 12345678 kps 24748.4 orig-kb 16789012]
886 STATS driver estimate localhost.localdomain /boot7 20090225080737 0 [sec 1 nkb 12345678 ckb 12345678 kps 25715]
887 SUCCESS chunker localhost.localdomain /boot7 20090225080737 0 [sec 1.607 kb 12345678 kps 24426.5]
888 INFO chunker pid-done 23733
889 INFO dumper pid-done 23738
890 PART taper DIRO-TEST-003 7 localhost.localdomain /boot7 20090225080737 1/1 0 [sec 0.250557 kb 12345678 kps 156611.070535]
891 DONE taper localhost.localdomain /boot7 20090225080737 1 0 [sec 0.250557 kb 12345678 kps 156611.070535]
892 INFO chunker chunker pid 23733
893 INFO dumper gzip pid 23738
894 SUCCESS dumper localhost.localdomain /boot8 20090225080737 0 [sec 1.585 kb 123456789 kps 24748.4 orig-kb 167890123]
895 STATS driver estimate localhost.localdomain /boot8 20090225080737 0 [sec 1 nkb 123456789 ckb 123456789 kps 25715]
896 SUCCESS chunker localhost.localdomain /boot8 20090225080737 0 [sec 1.607 kb 123456789 kps 24426.5]
897 INFO chunker pid-done 23733
898 INFO dumper pid-done 23738
899 PART taper DIRO-TEST-003 8 localhost.localdomain /boot8 20090225080737 1/1 0 [sec 0.250557 kb 123456789 kps 156611.070535]
900 DONE taper localhost.localdomain /boot8 20090225080737 1 0 [sec 0.250557 kb 123456789 kps 156611.070535]
901 INFO chunker chunker pid 23733
902 INFO dumper gzip pid 23738
903 SUCCESS dumper localhost.localdomain /boot9 20090225080737 0 [sec 1.585 kb 1234567890 kps 24748.4 orig-kb 1678901234]
904 STATS driver estimate localhost.localdomain /boot9 20090225080737 0 [sec 1 nkb 1234567890 ckb 1234567890 kps 25715]
905 SUCCESS chunker localhost.localdomain /boot9 20090225080737 0 [sec 1.607 kb 1234567890 kps 24426.5]
906 INFO chunker pid-done 23733
907 INFO dumper pid-done 23738
908 PART taper DIRO-TEST-003 9 localhost.localdomain /boot9 20090225080737 1/1 0 [sec 0.250557 kb 1234567890 kps 156611.070535]
909 DONE taper localhost.localdomain /boot9 20090225080737 1 0 [sec 0.250557 kb 1234567890 kps 156611.070535]
910 INFO dumper pid-done 23686
911 INFO taper tape DIRO-TEST-003 kb 39240 fm 10 [OK]
912 INFO taper pid-done 23685
913 FINISH driver date 20090225080737 time 5.306
914 INFO driver pid-done 23684
915 %%%% normal-postscript
916 --PS-TEMPLATE--
917 (February 25, 2009) DrawDate
918
919 (Amanda Version x.y.z) DrawVers
920 (DIRO-TEST-003) DrawTitle
921 (Total Size:        1339591.9 MB) DrawStat
922 (Tape Used (%)       ##### %) DrawStat
923 (Number of files:      9) DrawStat
924 (Filesystems Taped:    9) DrawStat
925 (-) (DIRO-TEST-003) (-) (  0) (      32) (      32) DrawHost
926 (localhost.localdomain) (/boot1) (0) (  1) (      16) (      12) DrawHost
927 (localhost.localdomain) (/boot2) (0) (  2) (     167) (     123) DrawHost
928 (localhost.localdomain) (/boot3) (0) (  3) (    1678) (    1234) DrawHost
929 (localhost.localdomain) (/boot4) (0) (  4) (   16789) (   12345) DrawHost
930 (localhost.localdomain) (/boot5) (0) (  5) (  167890) (  123456) DrawHost
931 (localhost.localdomain) (/boot6) (0) (  6) ( 1678901) ( 1234567) DrawHost
932 (localhost.localdomain) (/boot7) (0) (  7) (16789012) (12345678) DrawHost
933 (localhost.localdomain) (/boot8) (0) (  8) (167890123) (123456789) DrawHost
934 (localhost.localdomain) (/boot9) (0) (  9) (1678901234) (1234567890) DrawHost
935
936 showpage
937 %%%% normal-rpt1
938 Hostname: localhost.localdomain
939 Org     : DailySet1
940 Config  : TESTCONF
941 Date    : February 25, 2009
942
943 These dumps were to tape DIRO-TEST-003.
944 The next tape Amanda expects to use is: 1 new tape.
945
946
947 STATISTICS:
948                           Total       Full      Incr.
949                         --------   --------   --------
950 Estimate Time (hrs:min)    0:00
951 Run Time (hrs:min)         0:00
952 Dump Time (hrs:min)        0:00       0:00       0:00
953 Output Size (meg)      1339591.9   1339591.9        0.0
954 Original Size (meg)    1821724.4   1821724.4        0.0
955 Avg Compressed Size (%)    73.5       73.5        --
956 Filesystems Dumped            9          9          0
957 Avg Dump Rate (k/s)     #######    #######        --
958
959 Tape Time (hrs:min)        0:00       0:00       0:00
960 Tape Size (meg)        1339591.9   1339591.9        0.0
961 Tape Used (%)             #####      #####        0.0
962 Filesystems Taped             9          9          0
963
964 Parts Taped                   9          9          0
965 Avg Tp Write Rate (k/s) #######    #######        --
966
967 USAGE BY TAPE:
968   Label               Time      Size      %    Nb    Nc
969   DIRO-TEST-003       0:00 1371742094k  #####     9     9
970
971 \f
972 NOTES:
973   taper: tape DIRO-TEST-003 kb 39240 fm 10 [OK]
974
975 \f
976 DUMP SUMMARY:
977                                           DUMPER STATS                    TAPER STATS
978 HOSTNAME     DISK        L    ORIG-kB     OUT-kB  COMP%  MMM:SS    KB/s MMM:SS     KB/s
979 -------------------------- -------------------------------------------- ---------------
980 localhost.lo /boot1      0         16         12   75.0    0:02 24748.4   0:00 156611.1
981 localhost.lo /boot2      0        167        123   73.7    0:02 24748.4   0:00 156611.1
982 localhost.lo /boot3      0       1678       1234   73.5    0:02 24748.4   0:00 156611.1
983 localhost.lo /boot4      0      16789      12345   73.5    0:02 24748.4   0:00 156611.1
984 localhost.lo /boot5      0     167890     123456   73.5    0:02 24748.4   0:00 156611.1
985 localhost.lo /boot6      0    1678901    1234567   73.5    0:02 24748.4   0:00 156611.1
986 localhost.lo /boot7      0   16789012   12345678   73.5    0:02 24748.4   0:00 156611.1
987 localhost.lo /boot8      0  167890123  123456789   73.5    0:02 24748.4   0:00 156611.1
988 localhost.lo /boot9      0 1678901234 1234567890   73.5    0:02 24748.4   0:00 156611.1
989
990 (brought to you by Amanda version x.y.z)
991 %%%% normal-rpt2
992 Hostname: localhost.localdomain
993 Org     : DailySet1
994 Config  : TESTCONF
995 Date    : February 25, 2009
996
997 These dumps were to tape DIRO-TEST-003.
998 The next tape Amanda expects to use is: 1 new tape.
999
1000
1001 STATISTICS:
1002                           Total       Full      Incr.
1003                         --------   --------   --------
1004 Estimate Time (hrs:min)    0:00
1005 Run Time (hrs:min)         0:00
1006 Dump Time (hrs:min)        0:00       0:00       0:00
1007 Output Size (meg)      1339591.9   1339591.9        0.0
1008 Original Size (meg)    1821724.4   1821724.4        0.0
1009 Avg Compressed Size (%)    73.5       73.5        --
1010 Filesystems Dumped            9          9          0
1011 Avg Dump Rate (k/s)     #######    #######        --
1012
1013 Tape Time (hrs:min)        0:00       0:00       0:00
1014 Tape Size (meg)        1339591.9   1339591.9        0.0
1015 Tape Used (%)             #####      #####        0.0
1016 Filesystems Taped             9          9          0
1017
1018 Parts Taped                   9          9          0
1019 Avg Tp Write Rate (k/s) #######    #######        --
1020
1021 USAGE BY TAPE:
1022   Label               Time      Size      %    Nb    Nc
1023   DIRO-TEST-003       0:00 1371742094k  #####     9     9
1024
1025 \f
1026 NOTES:
1027   taper: tape DIRO-TEST-003 kb 39240 fm 10 [OK]
1028
1029 \f
1030 DUMP SUMMARY:
1031                                             DUMPER STATS                     TAPER STATS
1032 HOSTNAME     DISK        L       ORIG-kB     OUT-kB  COMP%  MMM:SS    KB/s MMM:SS     KB/s
1033 -------------------------- ----------------------------------------------- ---------------
1034 localhost.lo /boot1      0         16.00         12   75.0    0:02 24748.4   0:00 156611.1
1035 localhost.lo /boot2      0        167.00        123   73.7    0:02 24748.4   0:00 156611.1
1036 localhost.lo /boot3      0       1678.00       1234   73.5    0:02 24748.4   0:00 156611.1
1037 localhost.lo /boot4      0      16789.00      12345   73.5    0:02 24748.4   0:00 156611.1
1038 localhost.lo /boot5      0     167890.00     123456   73.5    0:02 24748.4   0:00 156611.1
1039 localhost.lo /boot6      0    1678901.00    1234567   73.5    0:02 24748.4   0:00 156611.1
1040 localhost.lo /boot7      0   16789012.00   12345678   73.5    0:02 24748.4   0:00 156611.1
1041 localhost.lo /boot8      0  167890123.00  123456789   73.5    0:02 24748.4   0:00 156611.1
1042 localhost.lo /boot9      0 1678901234.00 1234567890   73.5    0:02 24748.4   0:00 156611.1
1043
1044 (brought to you by Amanda version x.y.z)
1045 %%%% normal-rpt3
1046 Hostname: localhost.localdomain
1047 Org     : DailySet1
1048 Config  : TESTCONF
1049 Date    : February 25, 2009
1050
1051 These dumps were to tape DIRO-TEST-003.
1052 The next tape Amanda expects to use is: 1 new tape.
1053
1054
1055 STATISTICS:
1056                           Total       Full      Incr.
1057                         --------   --------   --------
1058 Estimate Time (hrs:min)    0:00
1059 Run Time (hrs:min)         0:00
1060 Dump Time (hrs:min)        0:00       0:00       0:00
1061 Output Size (meg)      1339591.9   1339591.9        0.0
1062 Original Size (meg)    1821724.4   1821724.4        0.0
1063 Avg Compressed Size (%)    73.5       73.5        --
1064 Filesystems Dumped            9          9          0
1065 Avg Dump Rate (k/s)     #######    #######        --
1066
1067 Tape Time (hrs:min)        0:00       0:00       0:00
1068 Tape Size (meg)        1339591.9   1339591.9        0.0
1069 Tape Used (%)             #####      #####        0.0
1070 Filesystems Taped             9          9          0
1071
1072 Parts Taped                   9          9          0
1073 Avg Tp Write Rate (k/s) #######    #######        --
1074
1075 USAGE BY TAPE:
1076   Label               Time      Size      %    Nb    Nc
1077   DIRO-TEST-003       0:00 1371742094k  #####     9     9
1078
1079 \f
1080 NOTES:
1081   taper: tape DIRO-TEST-003 kb 39240 fm 10 [OK]
1082
1083 \f
1084 DUMP SUMMARY:
1085                                         DUMPER STATS                 TAPER STATS
1086 HOSTNAME     DISK        L ORIG-kB     OUT-kB  COMP%  MMM:SS    KB/s MMM:SS     KB/s
1087 -------------------------- --------------------------------------- ---------------
1088 localhost.lo /boot1      0    16         12   75.0    0:02 24748.4   0:00 156611.1
1089 localhost.lo /boot2      0   167        123   73.7    0:02 24748.4   0:00 156611.1
1090 localhost.lo /boot3      0  1678       1234   73.5    0:02 24748.4   0:00 156611.1
1091 localhost.lo /boot4      0 16789      12345   73.5    0:02 24748.4   0:00 156611.1
1092 localhost.lo /boot5      0 167890     123456   73.5    0:02 24748.4   0:00 156611.1
1093 localhost.lo /boot6      0 1678901    1234567   73.5    0:02 24748.4   0:00 156611.1
1094 localhost.lo /boot7      0 16789012   12345678   73.5    0:02 24748.4   0:00 156611.1
1095 localhost.lo /boot8      0 167890123  123456789   73.5    0:02 24748.4   0:00 156611.1
1096 localhost.lo /boot9      0 1678901234 1234567890   73.5    0:02 24748.4   0:00 156611.1
1097
1098 (brought to you by Amanda version x.y.z)
1099 %%%% normal-rpt4
1100 Hostname: localhost.localdomain
1101 Org     : DailySet1
1102 Config  : TESTCONF
1103 Date    : February 25, 2009
1104
1105 These dumps were to tape DIRO-TEST-003.
1106 The next tape Amanda expects to use is: 1 new tape.
1107
1108
1109 STATISTICS:
1110                           Total       Full      Incr.
1111                         --------   --------   --------
1112 Estimate Time (hrs:min)    0:00
1113 Run Time (hrs:min)         0:00
1114 Dump Time (hrs:min)        0:00       0:00       0:00
1115 Output Size (meg)      1339591.9   1339591.9        0.0
1116 Original Size (meg)    1821724.4   1821724.4        0.0
1117 Avg Compressed Size (%)    73.5       73.5        --
1118 Filesystems Dumped            9          9          0
1119 Avg Dump Rate (k/s)     #######    #######        --
1120
1121 Tape Time (hrs:min)        0:00       0:00       0:00
1122 Tape Size (meg)        1339591.9   1339591.9        0.0
1123 Tape Used (%)             #####      #####        0.0
1124 Filesystems Taped             9          9          0
1125
1126 Parts Taped                   9          9          0
1127 Avg Tp Write Rate (k/s) #######    #######        --
1128
1129 USAGE BY TAPE:
1130   Label               Time      Size      %    Nb    Nc
1131   DIRO-TEST-003       0:00 1371742094k  #####     9     9
1132
1133 \f
1134 NOTES:
1135   taper: tape DIRO-TEST-003 kb 39240 fm 10 [OK]
1136
1137 \f
1138 DUMP SUMMARY:
1139                                         DUMPER STATS                 TAPER STATS
1140 HOSTNAME     DISK        L ORIG-kB     OUT-kB  COMP%  MMM:SS    KB/s MMM:SS     KB/s
1141 -------------------------- --------------------------------------- ---------------
1142 localhost.lo /boot1 0 16.000000 12 75.0 0:02 24748.4 0:00 156611.1
1143 localhost.lo /boot2 0 167.000000 123 73.7 0:02 24748.4 0:00 156611.1
1144 localhost.lo /boot3 0 1678.000000 1234 73.5 0:02 24748.4 0:00 156611.1
1145 localhost.lo /boot4 0 16789.000000 12345 73.5 0:02 24748.4 0:00 156611.1
1146 localhost.lo /boot5 0 167890.000000 123456 73.5 0:02 24748.4 0:00 156611.1
1147 localhost.lo /boot6 0 1678901.000000 1234567 73.5 0:02 24748.4 0:00 156611.1
1148 localhost.lo /boot7 0 16789012.000000 12345678 73.5 0:02 24748.4 0:00 156611.1
1149 localhost.lo /boot8 0 167890123.000000 123456789 73.5 0:02 24748.4 0:00 156611.1
1150 localhost.lo /boot9 0 1678901234.000000 1234567890 73.5 0:02 24748.4 0:00 156611.1
1151
1152 (brought to you by Amanda version x.y.z)
1153 %%%% normal-rpt5
1154 Hostname: localhost.localdomain
1155 Org     : DailySet1
1156 Config  : TESTCONF
1157 Date    : February 25, 2009
1158
1159 These dumps were to tape DIRO-TEST-003.
1160 The next tape Amanda expects to use is: 1 new tape.
1161
1162
1163 STATISTICS:
1164                           Total       Full      Incr.
1165                         --------   --------   --------
1166 Estimate Time (hrs:min)    0:00
1167 Run Time (hrs:min)         0:00
1168 Dump Time (hrs:min)        0:00       0:00       0:00
1169 Output Size (meg)      1339591.9   1339591.9        0.0
1170 Original Size (meg)    1821724.4   1821724.4        0.0
1171 Avg Compressed Size (%)    73.5       73.5        --
1172 Filesystems Dumped            9          9          0
1173 Avg Dump Rate (k/s)     #######    #######        --
1174
1175 Tape Time (hrs:min)        0:00       0:00       0:00
1176 Tape Size (meg)        1339591.9   1339591.9        0.0
1177 Tape Used (%)             #####      #####        0.0
1178 Filesystems Taped             9          9          0
1179
1180 Parts Taped                   9          9          0
1181 Avg Tp Write Rate (k/s) #######    #######        --
1182
1183 USAGE BY TAPE:
1184   Label               Time      Size      %    Nb    Nc
1185   DIRO-TEST-003       0:00  1339592M  #####     9     9
1186
1187 \f
1188 NOTES:
1189   taper: tape DIRO-TEST-003 kb 39240 fm 10 [OK]
1190
1191 \f
1192 DUMP SUMMARY:
1193                                        DUMPER STATS                 TAPER STATS
1194 HOSTNAME     DISK        L ORIG-MB  OUT-MB  COMP%  MMM:SS    KB/s MMM:SS     KB/s
1195 -------------------------- -------------------------------------- ---------------
1196 localhost.lo /boot1      0       0       0   75.0    0:02 24748.4   0:00 156611.1
1197 localhost.lo /boot2      0       0       0   73.7    0:02 24748.4   0:00 156611.1
1198 localhost.lo /boot3      0       2       1   73.5    0:02 24748.4   0:00 156611.1
1199 localhost.lo /boot4      0      16      12   73.5    0:02 24748.4   0:00 156611.1
1200 localhost.lo /boot5      0     164     121   73.5    0:02 24748.4   0:00 156611.1
1201 localhost.lo /boot6      0    1640    1206   73.5    0:02 24748.4   0:00 156611.1
1202 localhost.lo /boot7      0   16396   12056   73.5    0:02 24748.4   0:00 156611.1
1203 localhost.lo /boot8      0  163955  120563   73.5    0:02 24748.4   0:00 156611.1
1204 localhost.lo /boot9      0 1639552 1205633   73.5    0:02 24748.4   0:00 156611.1
1205
1206 (brought to you by Amanda version x.y.z)
1207 %%%% strontium
1208 INFO amdump amdump pid 12920
1209 INFO planner planner pid 12944
1210 START planner date 20100107111335
1211 DISK planner strontium /etc
1212 DISK planner strontium /local
1213 DISK planner strontium /home/elantra
1214 DISK planner strontium /zones/data/strontium.example.com/repositories/repository_13
1215 INFO driver driver pid 12945
1216 START driver date 20100107111335
1217 STATS driver hostname advantium
1218 STATS driver startup time 0.016
1219 INFO dumper dumper pid 12947
1220 INFO dumper dumper pid 12948
1221 INFO dumper dumper pid 12949
1222 INFO dumper dumper pid 12950
1223 INFO taper taper pid 12946
1224 FINISH planner date 20100107111335 time 2.344
1225 INFO planner pid-done 12944
1226 INFO chunker chunker pid 13015
1227 INFO dumper gzip pid 13016
1228 SUCCESS dumper strontium /home/elantra 20100107111335 1 [sec 0.152 kb 10 kps 65.6 orig-kb 10]
1229 SUCCESS chunker strontium /home/elantra 20100107111335 1 [sec 0.184 kb 10 kps 228.0]
1230 INFO chunker pid-done 13015
1231 INFO dumper pid-done 13016
1232 STATS driver estimate strontium /home/elantra 20100107111335 1 [sec 0 nkb 49 ckb 64 kps 1024]
1233 START taper datestamp 20100107111335 label metals-013 tape 1
1234 PART taper metals-013 1 strontium /home/elantra 20100107111335 1/1 1 [sec 0.001107 kb 10 kps 9033.423668]
1235 DONE taper strontium /home/elantra 20100107111335 1 1 [sec 0.001107 kb 10 kps 9033.423668]
1236 INFO chunker chunker pid 13017
1237 INFO dumper gzip pid 13018
1238 SUCCESS dumper strontium /local 20100107111335 0 [sec 0.149 kb 20 kps 133.9 orig-kb 20]
1239 SUCCESS chunker strontium /local 20100107111335 0 [sec 0.183 kb 20 kps 283.3]
1240 INFO chunker pid-done 13017
1241 INFO dumper pid-done 13018
1242 STATS driver estimate strontium /local 20100107111335 0 [sec 0 nkb 46 ckb 64 kps 1024]
1243 PART taper metals-013 2 strontium /local 20100107111335 1/1 0 [sec 0.000724 kb 20 kps 27624.309392]
1244 DONE taper strontium /local 20100107111335 1 0 [sec 0.000724 kb 20 kps 27624.309392]
1245 INFO chunker chunker pid 13026
1246 INFO dumper gzip pid 13027
1247 SUCCESS dumper strontium /etc 20100107111335 1 [sec 0.235 kb 270 kps 1146.3 orig-kb 270]
1248 SUCCESS chunker strontium /etc 20100107111335 1 [sec 0.271 kb 270 kps 1110.9]
1249 INFO chunker pid-done 13026
1250 INFO dumper pid-done 13027
1251 STATS driver estimate strontium /etc 20100107111335 1 [sec 0 nkb 516 ckb 544 kps 1024]
1252 PART taper metals-013 3 strontium /etc 20100107111335 1/1 1 [sec 0.001916 kb 270 kps 140918.580376]
1253 DONE taper strontium /etc 20100107111335 1 1 [sec 0.001916 kb 270 kps 140918.580376]
1254 INFO chunker chunker pid 13034
1255 INFO dumper gzip pid 13035
1256 SUCCESS dumper strontium /zones/data/strontium.example.com/repositories/repository_13 20100107111335 1 [sec 0.525 kb 1350 kps 2568.5 orig-kb 1350]
1257 SUCCESS chunker strontium /zones/data/strontium.example.com/repositories/repository_13 20100107111335 1 [sec 0.561 kb 1350 kps 2461.3]
1258 INFO chunker pid-done 13034
1259 INFO dumper pid-done 13035
1260 STATS driver estimate strontium /zones/data/strontium.example.com/repositories/repository_13 20100107111335 1 [sec 0 nkb 1344 ckb 1344 kps 1350]
1261 PART taper metals-013 4 strontium /zones/data/strontium.example.com/repositories/repository_13 20100107111335 1/1 1 [sec 0.007714 kb 1350 kps 175006.481722]
1262 DONE taper strontium /zones/data/strontium.example.com/repositories/repository_13 20100107111335 1 1 [sec 0.007714 kb 1350 kps 175006.481722]
1263 INFO dumper pid-done 12947
1264 INFO dumper pid-done 12948
1265 INFO dumper pid-done 12949
1266 INFO dumper pid-done 12950
1267 INFO taper tape metals-013 kb 1650 fm 4 [OK]
1268 INFO taper pid-done 12946
1269 FINISH driver date 20100107111335 time 49.037
1270 INFO driver pid-done 12945
1271 %%%% strontium-rpt
1272 Hostname: advantium
1273 Org     : DailySet1
1274 Config  : TESTCONF
1275 Date    : January 7, 2010
1276
1277 These dumps were to tape metals-013.
1278 The next tape Amanda expects to use is: 1 new tape.
1279
1280
1281 STATISTICS:
1282                           Total       Full      Incr.
1283                         --------   --------   --------
1284 Estimate Time (hrs:min)    0:00
1285 Run Time (hrs:min)         0:01
1286 Dump Time (hrs:min)        0:00       0:00       0:00
1287 Output Size (meg)           1.6        0.0        1.6
1288 Original Size (meg)         1.6        0.0        1.6
1289 Avg Compressed Size (%)   100.0      100.0      100.0   (level:#disks ...)
1290 Filesystems Dumped            4          1          3   (1:3)
1291 Avg Dump Rate (k/s)      1555.1      134.2     1787.3
1292
1293 Tape Time (hrs:min)        0:00       0:00       0:00
1294 Tape Size (meg)             1.6        0.0        1.6
1295 Tape Used (%)               5.5        0.1        5.4   (level:#disks ...)
1296 Filesystems Taped             4          1          3   (1:3)
1297    (level:#parts ...)
1298 Parts Taped                   4          1          3   (1:3)
1299 Avg Tp Write Rate (k/s)  143966    27624.3     151811
1300
1301 USAGE BY TAPE:
1302   Label            Time      Size      %    Nb    Nc
1303   metals-013       0:00     1650k    5.4     4     4
1304
1305
1306 NOTES:
1307   taper: tape metals-013 kb 1650 fm 4 [OK]
1308
1309
1310 DUMP SUMMARY:
1311                                        DUMPER STATS                TAPER STATS
1312 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS     KB/s
1313 -------------------------- ------------------------------------- ---------------
1314 strontium    /etc        1     270     270    --     0:00 1146.3   0:00 140918.6
1315 strontium    -me/elantra 1      10      10    --     0:00   65.6   0:00   9033.4
1316 strontium    /local      0      20      20    --     0:00  133.9   0:00  27624.3
1317 strontium    -ository_13 1    1350    1350    --     0:01 2568.5   0:00 175006.5
1318
1319 (brought to you by Amanda version x.y.z)
1320 %%%% strontium-postscript
1321 --PS-TEMPLATE--
1322 (January 7, 2010) DrawDate
1323
1324 (Amanda Version x.y.z) DrawVers
1325 (metals-013) DrawTitle
1326 (Total Size:           1.6 MB) DrawStat
1327 (Tape Used (%)         5.4 %) DrawStat
1328 (Number of files:      4) DrawStat
1329 (Filesystems Taped:    4) DrawStat
1330 (-) (metals-013) (-) (  0) (      32) (      32) DrawHost
1331 (strontium) (/home/elantra) (1) (  1) (      10) (      10) DrawHost
1332 (strontium) (/local) (0) (  2) (      20) (      20) DrawHost
1333 (strontium) (/etc) (1) (  3) (     270) (     270) DrawHost
1334 (strontium) (/zones/data/strontium.example.com/repositories/repository_13) (1) (  4) (    1350) (    1350) DrawHost
1335
1336 showpage
1337 %%%% amflush
1338 INFO amflush amflush pid 26036
1339 DISK amflush localhost /usr/local
1340 DISK amflush localhost /opt
1341 DISK amflush localhost /usr/lib
1342 DISK amflush localhost /var/mysql
1343 DISK amflush localhost /home
1344 START amflush date 20090622075550
1345 INFO driver driver pid 26076
1346 START driver date 20090622075550
1347 STATS driver hostname centralcity.zmanda.com
1348 STATS driver startup time 0.011
1349 INFO taper taper pid 26077
1350 START taper datestamp 20090622075550 label Flushy-017 tape 1
1351 PART taper Flushy-017 1 localhost /var/mysql 20090620020002 1/1 1 [sec 2.504314 kb 36980 kps 14766.518895]
1352 DONE taper localhost /var/mysql 20090620020002 1 1 [sec 2.504314 kb 36980 kps 14766.518895]
1353 PART taper Flushy-017 2 localhost /usr/lib 20090620020002 1/1 1 [sec 1.675693 kb 309 kps 184.632684]
1354 DONE taper localhost /usr/lib 20090620020002 1 1 [sec 1.675693 kb 309 kps 184.632684]
1355 INFO taper pid-done 26077
1356 FINISH driver date 20090622075550 time 177.708
1357 INFO driver pid-done 26076
1358 INFO amflush pid-done 26075
1359 %%%% amflush-rpt
1360 Hostname: centralcity.zmanda.com
1361 Org     : DailySet1
1362 Config  : TESTCONF
1363 Date    : June 22, 2009
1364
1365 The dumps were flushed to tape Flushy-017.
1366 The next tape Amanda expects to use is: 1 new tape.
1367
1368
1369 STATISTICS:
1370                           Total       Full      Incr.
1371                         --------   --------   --------
1372 Estimate Time (hrs:min)    0:00
1373 Run Time (hrs:min)         0:03
1374 Dump Time (hrs:min)        0:00       0:00       0:00
1375 Output Size (meg)           0.0        0.0        0.0
1376 Original Size (meg)         0.0        0.0        0.0
1377 Avg Compressed Size (%)     --         --         --
1378 Filesystems Dumped            0          0          0
1379 Avg Dump Rate (k/s)         --         --         --
1380
1381 Tape Time (hrs:min)        0:00       0:00       0:00
1382 Tape Size (meg)            36.4        0.0       36.4
1383 Tape Used (%)             121.4        0.0      121.4   (level:#disks ...)
1384 Filesystems Taped             2          0          2   (1:2)
1385    (level:#parts ...)
1386 Parts Taped                   2          0          2   (1:2)
1387 Avg Tp Write Rate (k/s)  8920.8        --      8920.8
1388
1389 USAGE BY TAPE:
1390   Label            Time      Size      %    Nb    Nc
1391   Flushy-017       0:00    37289k  121.4     2     2
1392
1393
1394 DUMP SUMMARY:
1395                                        DUMPER STATS               TAPER STATS
1396 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS    KB/s
1397 -------------------------- ------------------------------------- --------------
1398 localhost    /home         NO FILE TO FLUSH -----------------------------------
1399 localhost    /opt          NO FILE TO FLUSH -----------------------------------
1400 localhost    /usr/lib    1             309    --       FLUSH       0:02   184.6
1401 localhost    /usr/local    NO FILE TO FLUSH -----------------------------------
1402 localhost    /var/mysql  1           36980    --       FLUSH       0:03 14766.5
1403
1404 (brought to you by Amanda version x.y.z)
1405 %%%% amflush-postscript
1406 --PS-TEMPLATE--
1407 (June 22, 2009) DrawDate
1408
1409 (Amanda Version x.y.z) DrawVers
1410 (Flushy-017) DrawTitle
1411 (Total Size:          36.4 MB) DrawStat
1412 (Tape Used (%)       121.4 %) DrawStat
1413 (Number of files:      2) DrawStat
1414 (Filesystems Taped:    2) DrawStat
1415 (-) (Flushy-017) (-) (  0) (      32) (      32) DrawHost
1416 (localhost) (/var/mysql) (1) (  1) (        ) (   36980) DrawHost
1417 (localhost) (/usr/lib) (1) (  2) (        ) (     309) DrawHost
1418
1419 showpage
1420 %%%% resultsmissing
1421 START planner date 20090326001503
1422 START driver date 20090326001503
1423 INFO amdump amdump pid 22014
1424 INFO driver driver pid 22043
1425 INFO planner planner pid 22042
1426 DISK planner cnc.slikon.local /boot
1427 DISK planner cnc.slikon.local /
1428 INFO taper taper pid 22044
1429 DISK planner ns-new.slikon.local //usr/local
1430 DISK planner ns-new.slikon.local /home
1431 SUCCESS dumper ns-new.slikon.local //usr/local 20090326001503 0 [sec 0.040 kb 1 kps 24.6 orig-kb 30]
1432 START taper datestamp 20090326001503 label Daily-36 tape 1
1433 SUCCESS dumper cnc.slikon.local /boot 20090326001503 0 [sec 4.255 kb 17246 kps 4052.7 orig-kb 20670]
1434 INFO dumper pid-done 7337
1435 SUCCESS chunker ns-new.slikon.local //usr/local 20090326001503 0 [sec 1.109 kb 1 kps 29.8]
1436 SUCCESS chunker cnc.slikon.local /boot 20090326001503 0 [sec 10.093 kb 17246 kps 1711.9]
1437 STATS driver estimate ns-new.slikon.local //usr/local 20090326001503 0 [sec 1 nkb 62 ckb 64 kps 1]
1438 INFO chunker pid-done 7334
1439 STATS driver estimate cnc.slikon.local /boot 20090326001503 0 [sec 2 nkb 20702 ckb 17280 kps 5749]
1440 PART taper Daily-36 1 cnc.slikon.local /boot 20090326001503 1/1 0 [sec 0.742831 kb 17245 kps 23216.462699]
1441 DONE taper cnc.slikon.local /boot 20090326001503 1 0 [sec 0.742831 kb 17245 kps 23216.462699]
1442 PART taper Daily-36 2 ns-new.slikon.local //usr/local 20090326001503 1/1 0 [sec 0.004696 kb 1 kps 153.471705]
1443 DONE taper ns-new.slikon.local //usr/local 20090326001503 1 0 [sec 0.004696 kb 1 kps 153.471705]
1444 INFO taper pid-done 22044
1445 FINISH driver date 20090326001503 time 77506.015
1446 INFO driver pid-done 22043
1447 %%%% resultsmissing-rpt
1448 These dumps were to tape Daily-36.
1449 The next tape Amanda expects to use is: 1 new tape.
1450
1451 FAILURE DUMP SUMMARY:
1452    cnc.slikon.local    /      RESULTS MISSING
1453    ns-new.slikon.local /home  RESULTS MISSING
1454
1455
1456 STATISTICS:
1457                           Total       Full      Incr.
1458                         --------   --------   --------
1459 Estimate Time (hrs:min)    0:00
1460 Run Time (hrs:min)        21:32
1461 Dump Time (hrs:min)        0:00       0:00       0:00
1462 Output Size (meg)          16.8       16.8        0.0
1463 Original Size (meg)        20.2       20.2        0.0
1464 Avg Compressed Size (%)    83.3       83.3        --
1465 Filesystems Dumped            2          2          0
1466 Avg Dump Rate (k/s)      4015.6     4015.6        --
1467
1468 Tape Time (hrs:min)        0:00       0:00       0:00
1469 Tape Size (meg)            16.8       16.8        0.0
1470 Tape Used (%)              56.2       56.2        0.0
1471 Filesystems Taped             2          2          0
1472
1473 Parts Taped                   2          2          0
1474 Avg Tp Write Rate (k/s) 23070.7    23070.7        --
1475
1476 USAGE BY TAPE:
1477   Label          Time      Size      %    Nb    Nc
1478   Daily-36       0:00    17246k   56.2     2     2
1479
1480
1481 DUMP SUMMARY:
1482                                        DUMPER STATS               TAPER STATS
1483 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS    KB/s
1484 -------------------------- ------------------------------------- --------------
1485 cnc.slikon.l /             MISSING --------------------------------------------
1486 cnc.slikon.l /boot       0   20670   17245   83.4    0:04 4052.7   0:01 23216.5
1487 ns-new.sliko //usr/local 0      30       1    3.3    0:00   24.6   0:00   153.5
1488 ns-new.sliko /home         MISSING --------------------------------------------
1489
1490 (brought to you by Amanda version x.y.z)
1491 %%%% resultsmissing-postscript
1492 --PS-TEMPLATE--
1493 (March 26, 2009) DrawDate
1494
1495 (Amanda Version x.y.z) DrawVers
1496 (Daily-36) DrawTitle
1497 (Total Size:          16.8 MB) DrawStat
1498 (Tape Used (%)        56.2 %) DrawStat
1499 (Number of files:      2) DrawStat
1500 (Filesystems Taped:    2) DrawStat
1501 (-) (Daily-36) (-) (  0) (      32) (      32) DrawHost
1502 (cnc.slikon.local) (/boot) (0) (  1) (   20670) (   17245) DrawHost
1503 (ns-new.slikon.local) (//usr/local) (0) (  2) (      30) (       1) DrawHost
1504
1505 showpage
1506 %%%% shortstrange
1507 START planner date 20090326001503
1508 START driver date 20090326001503
1509 INFO amdump amdump pid 22014
1510 INFO driver driver pid 22043
1511 INFO planner planner pid 22042
1512 DISK planner bsdfw.slikon.local /
1513 START taper datestamp 20090326001503 label Daily-36 tape 1
1514 STRANGE dumper bsdfw.slikon.local / 0 [sec 1775.514 kb 2317814 kps 1305.4 orig-kb 5401240]
1515   sendbackup: info BACKUP=APPLICATION
1516   sendbackup: info APPLICATION=amgtar
1517   sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1518   sendbackup: info COMPRESS_SUFFIX=.gz
1519   sendbackup: info end
1520   | /bin/tar: ./tmp/.gdm_socket: socket ignored
1521   | /bin/tar: ./tmp/.X11-unix/X0: socket ignored
1522   | /bin/tar: ./tmp/.font-unix/fs7100: socket ignored
1523   ? /bin/tar: ./var/log/messages: file changed as we read it
1524   | /bin/tar: ./var/run/acpid.socket: socket ignored
1525   | /bin/tar: ./var/run/dbus/system_bus_socket: socket ignored
1526   | Total bytes written: 5530869760 (5.2GiB, 3.0MiB/s)
1527   sendbackup: size 5401240
1528   sendbackup: end
1529 SUCCESS chunker bsdfw.slikon.local / 20090326001503 0 [sec 1782.341 kb 2293471 kps 1286.8]
1530 STATS driver estimate bsdfw.slikon.local / 20090326001503 0 [sec 1715 nkb 5400282 ckb 2294272 kps 1337]
1531 PART taper Daily-36 1 bsdfw.slikon.local / 20090326001503 1/1 0 [sec 157.123731 kb 2293470 kps 14596.586283]
1532 DONE taper bsdfw.slikon.local / 20090326001503 1 0 [sec 157.123731 kb 2293470 kps 14596.586283]
1533 FINISH driver date 20090326001503 time 77506.015
1534 %%%% shortstrange-rpt
1535 These dumps were to tape Daily-36.
1536 The next tape Amanda expects to use is: 1 new tape.
1537
1538 STRANGE DUMP SUMMARY:
1539    bsdfw.slikon.local / lev 0  STRANGE (see below)
1540
1541
1542 STATISTICS:
1543                           Total       Full      Incr.
1544                         --------   --------   --------
1545 Estimate Time (hrs:min)    0:00
1546 Run Time (hrs:min)        21:32
1547 Dump Time (hrs:min)        0:30       0:30       0:00
1548 Output Size (meg)        2239.7     2239.7        0.0
1549 Original Size (meg)      5274.6     5274.6        0.0
1550 Avg Compressed Size (%)    42.5       42.5        --
1551 Filesystems Dumped            1          1          0
1552 Avg Dump Rate (k/s)      1291.7     1291.7        --
1553
1554 Tape Time (hrs:min)        0:03       0:03       0:00
1555 Tape Size (meg)          2239.7     2239.7        0.0
1556 Tape Used (%)              7466       7466        0.0
1557 Filesystems Taped             1          1          0
1558
1559 Parts Taped                   1          1          0
1560 Avg Tp Write Rate (k/s) 14596.6    14596.6        --
1561
1562 USAGE BY TAPE:
1563   Label          Time      Size      %    Nb    Nc
1564   Daily-36       0:03  2293470k   7466     1     1
1565
1566
1567 STRANGE DUMP DETAILS:
1568
1569 /--  bsdfw.slikon.local / lev 0 STRANGE
1570 sendbackup: info BACKUP=APPLICATION
1571 sendbackup: info APPLICATION=amgtar
1572 sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1573 sendbackup: info COMPRESS_SUFFIX=.gz
1574 sendbackup: info end
1575 | /bin/tar: ./tmp/.gdm_socket: socket ignored
1576 | /bin/tar: ./tmp/.X11-unix/X0: socket ignored
1577 | /bin/tar: ./tmp/.font-unix/fs7100: socket ignored
1578 ? /bin/tar: ./var/log/messages: file changed as we read it
1579 | /bin/tar: ./var/run/acpid.socket: socket ignored
1580 | /bin/tar: ./var/run/dbus/system_bus_socket: socket ignored
1581 | Total bytes written: 5530869760 (5.2GiB, 3.0MiB/s)
1582 sendbackup: size 5401240
1583 sendbackup: end
1584 \--------
1585
1586
1587 DUMP SUMMARY:
1588                                        DUMPER STATS               TAPER STATS
1589 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS    KB/s
1590 -------------------------- ------------------------------------- --------------
1591 bsdfw.slikon /           0 5401240 2293470   42.5   29:36 1305.4   2:37 14596.6
1592
1593 (brought to you by Amanda version x.y.z)
1594 %%%% shortstrange-postscript
1595 --PS-TEMPLATE--
1596 (March 26, 2009) DrawDate
1597
1598 (Amanda Version x.y.z) DrawVers
1599 (Daily-36) DrawTitle
1600 (Total Size:        2239.7 MB) DrawStat
1601 (Tape Used (%)        7466 %) DrawStat
1602 (Number of files:      1) DrawStat
1603 (Filesystems Taped:    1) DrawStat
1604 (-) (Daily-36) (-) (  0) (      32) (      32) DrawHost
1605 (bsdfw.slikon.local) (/) (0) (  1) ( 5401240) ( 2293470) DrawHost
1606
1607 showpage
1608 %%%% longstrange-rpt
1609 These dumps were to tape Daily-36.
1610 The next tape Amanda expects to use is: 1 new tape.
1611
1612 STRANGE DUMP SUMMARY:
1613    bsdfw.slikon.local / lev 0  STRANGE (see below)
1614
1615
1616 STATISTICS:
1617                           Total       Full      Incr.
1618                         --------   --------   --------
1619 Estimate Time (hrs:min)    0:00
1620 Run Time (hrs:min)        21:32
1621 Dump Time (hrs:min)        0:30       0:30       0:00
1622 Output Size (meg)        2239.7     2239.7        0.0
1623 Original Size (meg)      5274.6     5274.6        0.0
1624 Avg Compressed Size (%)    42.5       42.5        --
1625 Filesystems Dumped            1          1          0
1626 Avg Dump Rate (k/s)      1291.7     1291.7        --
1627
1628 Tape Time (hrs:min)        0:03       0:03       0:00
1629 Tape Size (meg)          2239.7     2239.7        0.0
1630 Tape Used (%)              7466       7466        0.0
1631 Filesystems Taped             1          1          0
1632
1633 Parts Taped                   1          1          0
1634 Avg Tp Write Rate (k/s) 14596.6    14596.6        --
1635
1636 USAGE BY TAPE:
1637   Label          Time      Size      %    Nb    Nc
1638   Daily-36       0:03  2293470k   7466     1     1
1639
1640
1641 STRANGE DUMP DETAILS:
1642
1643 /--  bsdfw.slikon.local / lev 0 STRANGE
1644 sendbackup: info BACKUP=APPLICATION
1645 sendbackup: info APPLICATION=amgtar
1646 sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1647 sendbackup: info COMPRESS_SUFFIX=.gz
1648 sendbackup: info end
1649 | /bin/tar: ./tmp/.gdm_socket: socket ignored
1650 | /bin/tar: ./tmp/.X11-unix/X0: socket ignored
1651 | /bin/tar: ./tmp/.font-unix/fs7100: socket ignored
1652 ? /bin/tar: ./var/log/messages: file changed as we read it
1653 --LINE-REPLACED-BY-91-LINES--
1654 \--------
1655 913 lines follow, see the corresponding log.* file for the complete list
1656 \--------
1657
1658
1659 DUMP SUMMARY:
1660                                        DUMPER STATS               TAPER STATS
1661 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS    KB/s
1662 -------------------------- ------------------------------------- --------------
1663 bsdfw.slikon /           0 5401240 2293470   42.5   29:36 1305.4   2:37 14596.6
1664
1665 (brought to you by Amanda version x.y.z)
1666 %%%% doublefailure
1667 START planner date 20090326001503
1668 START driver date 20090326001503
1669 INFO amdump amdump pid 22014
1670 INFO driver driver pid 22043
1671 INFO planner planner pid 22042
1672 START taper datestamp 20090326001503 label Daily-13 tape 1
1673 DISK planner ns-new.slikon.local /opt/var
1674 INFO planner Forcing full dump of ns-new.slikon.local:/opt/var as directed.
1675 FAIL dumper ns-new.slikon.local /opt/var 20090326001503 0 [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134405000.debug]
1676   sendbackup: info BACKUP=APPLICATION
1677   sendbackup: info APPLICATION=amgtar
1678   sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1679   sendbackup: info COMPRESS_SUFFIX=.gz
1680   sendbackup: info end
1681   ? /bin/tar: ./gdm: Cannot savedir: Permission denied
1682   | Total bytes written: 943831040 (901MiB, 4.9MiB/s)
1683   | /bin/tar: Error exit delayed from previous errors
1684   sendbackup: error [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134405000.debug]
1685   sendbackup: size 921710
1686   sendbackup: end
1687 PARTIAL chunker ns-new.slikon.local /opt/var 20090326001503 0 [sec 187.313 kb 54930 kps 293.4]
1688 FAIL dumper ns-new.slikon.local /opt/var 20090326001503 0 [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134714000.debug]
1689   sendbackup: info BACKUP=APPLICATION
1690   sendbackup: info APPLICATION=amgtar
1691   sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1692   sendbackup: info COMPRESS_SUFFIX=.gz
1693   sendbackup: info end
1694   ? /bin/tar: ./gdm: Cannot savedir: Permission denied
1695   | Total bytes written: 943851520 (901MiB, 7.4MiB/s)
1696   | /bin/tar: Error exit delayed from previous errors
1697   sendbackup: error [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134714000.debug]
1698   sendbackup: size 921730
1699   sendbackup: end
1700 PARTIAL chunker ns-new.slikon.local /opt/var 20090326001503 0 [sec 123.421 kb 54930 kps 445.3]
1701 PART taper Daily-13 1 ns-new.slikon.local /opt/var 20090326001503 1/1 0 [sec 3.555085 kb 54929 kps 15451.027696]
1702 PARTIAL taper ns-new.slikon.local /opt/var 20090326001503 1 0 [sec 3.555085 kb 54929 kps 15451.027696]
1703 FINISH driver date 20090326001503 time 77506.015
1704 %%%% doublefailure-rpt
1705 These dumps were to tape Daily-13.
1706 The next tape Amanda expects to use is: 1 new tape.
1707
1708 FAILURE DUMP SUMMARY:
1709    ns-new.slikon.local /opt/var lev 0  FAILED [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134405000.debug]
1710    ns-new.slikon.local /opt/var lev 0  FAILED [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134714000.debug]
1711    ns-new.slikon.local /opt/var lev 0  partial taper: successfully taped a partial dump
1712
1713
1714 STATISTICS:
1715                           Total       Full      Incr.
1716                         --------   --------   --------
1717 Estimate Time (hrs:min)    0:00
1718 Run Time (hrs:min)        21:32
1719 Dump Time (hrs:min)        0:00       0:00       0:00
1720 Output Size (meg)         107.3      107.3        0.0
1721 Original Size (meg)         0.0        0.0        0.0
1722 Avg Compressed Size (%)     --         --         --
1723 Filesystems Dumped            0          0          0
1724 Avg Dump Rate (k/s)         --         --         --
1725
1726 Tape Time (hrs:min)        0:00       0:00       0:00
1727 Tape Size (meg)            53.6       53.6        0.0
1728 Tape Used (%)             178.8      178.8        0.0
1729 Filesystems Taped             1          1          0
1730
1731 Parts Taped                   1          1          0
1732 Avg Tp Write Rate (k/s) 15450.8    15450.8        --
1733
1734 USAGE BY TAPE:
1735   Label          Time      Size      %    Nb    Nc
1736   Daily-13       0:00    54929k  178.8     1     1
1737
1738 FAILED DUMP DETAILS:
1739
1740 /--  ns-new.slikon.local /opt/var lev 0 FAILED [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134405000.debug]
1741 sendbackup: info BACKUP=APPLICATION
1742 sendbackup: info APPLICATION=amgtar
1743 sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1744 sendbackup: info COMPRESS_SUFFIX=.gz
1745 sendbackup: info end
1746 ? /bin/tar: ./gdm: Cannot savedir: Permission denied
1747 | Total bytes written: 943831040 (901MiB, 4.9MiB/s)
1748 | /bin/tar: Error exit delayed from previous errors
1749 sendbackup: error [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134405000.debug]
1750 sendbackup: size 921710
1751 sendbackup: end
1752 \--------
1753
1754 /--  ns-new.slikon.local /opt/var lev 0 FAILED [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134714000.debug]
1755 sendbackup: info BACKUP=APPLICATION
1756 sendbackup: info APPLICATION=amgtar
1757 sendbackup: info RECOVER_CMD=/usr/bin/gzip -dc |amgtar -f... -
1758 sendbackup: info COMPRESS_SUFFIX=.gz
1759 sendbackup: info end
1760 ? /bin/tar: ./gdm: Cannot savedir: Permission denied
1761 | Total bytes written: 943851520 (901MiB, 7.4MiB/s)
1762 | /bin/tar: Error exit delayed from previous errors
1763 sendbackup: error [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326134714000.debug]
1764 sendbackup: size 921730
1765 sendbackup: end
1766 \--------
1767
1768
1769 NOTES:
1770   planner: Forcing full dump of ns-new.slikon.local:/opt/var as directed.
1771
1772
1773 DUMP SUMMARY:
1774                                        DUMPER STATS               TAPER STATS
1775 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS   KB/s
1776 -------------------------- ------------------------------------- --------------
1777 ns-new.sliko /opt/var    0           54929    --      PARTIAL      0:04 15451.0 PARTIAL
1778
1779 (brought to you by Amanda version x.y.z)
1780 %%%% doublefailure-postscript
1781 --PS-TEMPLATE--
1782 (March 26, 2009) DrawDate
1783
1784 (Amanda Version x.y.z) DrawVers
1785 (Daily-13) DrawTitle
1786 (Total Size:          53.6 MB) DrawStat
1787 (Tape Used (%)       178.8 %) DrawStat
1788 (Number of files:      1) DrawStat
1789 (Filesystems Taped:    1) DrawStat
1790 (-) (Daily-13) (-) (  0) (      32) (      32) DrawHost
1791 (ns-new.slikon.local) (/opt/var) (0) (  1) (        ) (   54929) DrawHost
1792
1793 showpage
1794 %%%% bigestimate
1795 START planner date 20090326001503
1796 START driver date 20090326001503
1797 INFO amdump amdump pid 22014
1798 INFO driver driver pid 22043
1799 INFO planner planner pid 22042
1800 DISK planner home.slikon.local /opt/public
1801 SUCCESS dumper home.slikon.local /opt/public 20090326001503 0 [sec 2816.520 kb 50917370 kps 18078.1 orig-kb 72987320]
1802 START taper datestamp 20090326001503 label Daily-36 tape 1
1803 SUCCESS chunker home.slikon.local /opt/public 20090326001503 0 [sec 2821.633 kb 50917370 kps 18045.9]
1804 STATS driver estimate home.slikon.local /opt/public 20090326001503 0 [sec 0 nkb 72987352 ckb 80286112 kps 4294967295]
1805 PART taper Daily-36 1 home.slikon.local /opt/public 20090326001503 1/3 0 [sec 813.482141 kb 22020096 kps 27068.935985]
1806 PART taper Daily-36 2 home.slikon.local /opt/public 20090326001503 2/3 0 [sec 800.783991 kb 22020096 kps 27498.172101]
1807 PART taper Daily-36 3 home.slikon.local /opt/public 20090326001503 3/3 0 [sec 251.674410 kb 6877177 kps 27325.692199]
1808 DONE taper home.slikon.local /opt/public 20090326001503 3 0 [sec 1865.940542 kb 50917369 kps 27287.777030]
1809 FINISH driver date 20090326001503 time 77506.015
1810 %%%% bigestimate-rpt
1811 These dumps were to tape Daily-36.
1812 The next tape Amanda expects to use is: 1 new tape.
1813
1814
1815 STATISTICS:
1816                           Total       Full      Incr.
1817                         --------   --------   --------
1818 Estimate Time (hrs:min)    0:00
1819 Run Time (hrs:min)        21:32
1820 Dump Time (hrs:min)        0:47       0:47       0:00
1821 Output Size (meg)       49724.0    49724.0        0.0
1822 Original Size (meg)     71276.7    71276.7        0.0
1823 Avg Compressed Size (%)    69.8       69.8        --
1824 Filesystems Dumped            1          1          0
1825 Avg Dump Rate (k/s)     18078.1    18078.1        --
1826
1827 Tape Time (hrs:min)        0:31       0:31       0:00
1828 Tape Size (meg)         49724.0    49724.0        0.0
1829 Tape Used (%)             #####      #####        0.0
1830 Filesystems Taped             1          1          0
1831
1832 Parts Taped                   3          3          0
1833 Avg Tp Write Rate (k/s) 27287.8    27287.8        --
1834
1835 USAGE BY TAPE:
1836   Label          Time      Size      %    Nb    Nc
1837   Daily-36       0:31 50917369k  #####     1     3
1838
1839
1840 NOTES:
1841   big estimate: home.slikon.local /opt/public 0
1842                 est: 80286112k    out 50917369k
1843
1844
1845 DUMP SUMMARY:
1846                                         DUMPER STATS                 TAPER STATS
1847 HOSTNAME     DISK        L  ORIG-kB   OUT-kB  COMP%  MMM:SS    KB/s MMM:SS    KB/s
1848 -------------------------- ---------------------------------------- --------------
1849 home.slikon. /opt/public 0 72987320 50917369   69.8   46:57 18078.1  31:06 27287.8
1850
1851 (brought to you by Amanda version x.y.z)
1852 %%%% bigestimate-postscript
1853 --PS-TEMPLATE--
1854 (March 26, 2009) DrawDate
1855
1856 (Amanda Version x.y.z) DrawVers
1857 (Daily-36) DrawTitle
1858 (Total Size:        49724.0 MB) DrawStat
1859 (Tape Used (%)       ##### %) DrawStat
1860 (Number of files:      3) DrawStat
1861 (Filesystems Taped:    1) DrawStat
1862 (-) (Daily-36) (-) (  0) (      32) (      32) DrawHost
1863 (home.slikon.local) (/opt/public) (0) (  1) (72987320) (50917369) DrawHost
1864
1865 showpage
1866 %%%% retried
1867 START planner date 20090326001503
1868 START driver date 20090326001503
1869 INFO amdump amdump pid 22014
1870 INFO driver driver pid 22043
1871 INFO planner planner pid 22042
1872 START taper datestamp 20090326001503 label Daily-36 tape 1
1873 DISK planner jamon.slikon.local /var
1874 WARNING planner disk jamon.slikon.local:/var, estimate of level 1 failed.
1875 FAIL dumper jamon.slikon.local /var 20090326001503 0 [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326133640000.debug]
1876   blah blah blah
1877 PARTIAL chunker jamon.slikon.local /var 20090326001503 0 [sec 64.950 kb 268358 kps 4132.2]
1878 SUCCESS dumper jamon.slikon.local /var 20090326001503 0 [sec 53.356 kb 268357 kps 5029.5 orig-kb 2985670]
1879 SUCCESS chunker jamon.slikon.local /var 20090326001503 0 [sec 58.396 kb 268357 kps 4596.0]
1880 STATS driver estimate jamon.slikon.local /var 20090326001503 0 [sec 62 nkb 2950092 ckb 266528 kps 4294]
1881 PART taper Daily-36 1 jamon.slikon.local /var 20090326001503 1/1 0 [sec 15.589804 kb 268356 kps 17213.595632]
1882 DONE taper jamon.slikon.local /var 20090326001503 1 0 [sec 15.589804 kb 268356 kps 17213.595632]
1883 FINISH driver date 20090326001503 time 77506.015
1884 %%%% retried-rpt
1885 These dumps were to tape Daily-36.
1886 The next tape Amanda expects to use is: 1 new tape.
1887
1888 FAILURE DUMP SUMMARY:
1889    jamon.slikon.local /var lev 0  FAILED [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326133640000.debug]
1890    jamon.slikon.local /var lev 0  was successfully retried
1891
1892
1893 STATISTICS:
1894                           Total       Full      Incr.
1895                         --------   --------   --------
1896 Estimate Time (hrs:min)    0:00
1897 Run Time (hrs:min)        21:32
1898 Dump Time (hrs:min)        0:01       0:01       0:00
1899 Output Size (meg)         524.1      524.1        0.0
1900 Original Size (meg)      2915.7     2915.7        0.0
1901 Avg Compressed Size (%)    18.0       18.0        --
1902 Filesystems Dumped            1          1          0
1903 Avg Dump Rate (k/s)     10059.1    10059.1        --
1904
1905 Tape Time (hrs:min)        0:00       0:00       0:00
1906 Tape Size (meg)           262.1      262.1        0.0
1907 Tape Used (%)             873.6      873.6        0.0
1908 Filesystems Taped             1          1          0
1909
1910 Parts Taped                   1          1          0
1911 Avg Tp Write Rate (k/s) 17213.6    17213.6        --
1912
1913 USAGE BY TAPE:
1914   Label          Time      Size      %    Nb    Nc
1915   Daily-36       0:00   268356k  873.6     1     1
1916
1917
1918 FAILED DUMP DETAILS:
1919
1920 /--  jamon.slikon.local /var lev 0 FAILED [/bin/tar exited with status 2: see /var/log/amanda/client/Daily/amgtar.20090326133640000.debug]
1921 blah blah blah
1922 \--------
1923
1924
1925 NOTES:
1926   planner: disk jamon.slikon.local:/var, estimate of level 1 failed.
1927
1928
1929 DUMP SUMMARY:
1930                                        DUMPER STATS               TAPER STATS
1931 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS    KB/s
1932 -------------------------- ------------------------------------- --------------
1933 jamon.slikon /var        0 2985670  268356    9.0    0:53 5029.5   0:16 17213.6
1934
1935 (brought to you by Amanda version x.y.z)
1936 %%%% retried-postscript
1937 --PS-TEMPLATE--
1938 (March 26, 2009) DrawDate
1939
1940 (Amanda Version x.y.z) DrawVers
1941 (Daily-36) DrawTitle
1942 (Total Size:         262.1 MB) DrawStat
1943 (Tape Used (%)       873.6 %) DrawStat
1944 (Number of files:      1) DrawStat
1945 (Filesystems Taped:    1) DrawStat
1946 (-) (Daily-36) (-) (  0) (      32) (      32) DrawHost
1947 (jamon.slikon.local) (/var) (0) (  1) ( 2985670) (  268356) DrawHost
1948
1949 showpage
1950 %%%% taperr
1951 INFO amdump amdump pid 32302
1952 INFO planner planner pid 32323
1953 START planner date 20100303133320
1954 DISK planner euclid /A/p/etc
1955 INFO driver driver pid 32324
1956 START driver date 20100303133320
1957 STATS driver hostname euclid
1958 INFO dumper dumper pid 32331
1959 INFO dumper dumper pid 32337
1960 STATS driver startup time 0.130
1961 INFO dumper dumper pid 32338
1962 INFO dumper dumper pid 32335
1963 INFO taper taper pid 32326
1964 ERROR taper no-tape [Virtual-tape directory /A/p/vtapes does not exist.]
1965 FINISH planner date 20100303133320 time 1.137
1966 INFO planner pid-done 32323
1967 INFO chunker chunker pid 32351
1968 INFO dumper gzip pid 32355
1969 SUCCESS dumper euclid /A/p/etc 20100303133320 0 [sec 0.040 kb 100 kps 2491.0 orig-kb 100]
1970 SUCCESS chunker euclid /A/p/etc 20100303133320 0 [sec 0.064 kb 100 kps 2044.3]
1971 INFO chunker pid-done 32351
1972 STATS driver estimate euclid /A/p/etc 20100303133320 0 [sec 0 nkb 132 ckb 160 kps 1024]
1973 INFO dumper pid-done 32337
1974 INFO dumper pid-done 32335
1975 INFO dumper pid-done 32338
1976 INFO dumper pid-done 32355
1977 INFO dumper pid-done 32331
1978 INFO taper pid-done 32326
1979 FINISH driver date 20100303133320 time 2.247
1980 INFO driver pid-done 32324
1981 %%%% taperr-rpt-holding
1982 Hostname: euclid
1983 Org     : DailySet1
1984 Config  : TESTCONF
1985 Date    : March 3, 2010
1986
1987 *** A TAPE ERROR OCCURRED: [Virtual-tape directory /A/p/vtapes does not exist.].
1988 No dumps are left in the holding disk.
1989
1990 The next tape Amanda expects to use is: 1 new tape.
1991
1992
1993 STATISTICS:
1994                           Total       Full      Incr.
1995                         --------   --------   --------
1996 Estimate Time (hrs:min)    0:00
1997 Run Time (hrs:min)         0:00
1998 Dump Time (hrs:min)        0:00       0:00       0:00
1999 Output Size (meg)           0.1        0.1        0.0
2000 Original Size (meg)         0.1        0.1        0.0
2001 Avg Compressed Size (%)   100.0      100.0        --
2002 Filesystems Dumped            1          1          0
2003 Avg Dump Rate (k/s)      2500.0     2500.0        --
2004
2005 Tape Time (hrs:min)        0:00       0:00       0:00
2006 Tape Size (meg)             0.0        0.0        0.0
2007 Tape Used (%)               0.0        0.0        0.0
2008 Filesystems Taped             0          0          0
2009
2010 Parts Taped                   0          0          0
2011 Avg Tp Write Rate (k/s)     --         --         --
2012
2013
2014 DUMP SUMMARY:
2015                                        DUMPER STATS               TAPER STATS
2016 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS   KB/s
2017 -------------------------- ------------------------------------- -------------
2018 euclid       /A/p/etc    0     100     100    --     0:00 2491.0
2019
2020 (brought to you by Amanda version x.y.z)
2021 %%%% taperr-rpt-noholding
2022 Hostname: euclid
2023 Org     : DailySet1
2024 Config  : TESTCONF
2025 Date    : March 3, 2010
2026
2027 *** A TAPE ERROR OCCURRED: [Virtual-tape directory /A/p/vtapes does not exist.].
2028 Some dumps may have been left in the holding disk.
2029
2030 The next tape Amanda expects to use is: 1 new tape.
2031
2032
2033 STATISTICS:
2034                           Total       Full      Incr.
2035                         --------   --------   --------
2036 Estimate Time (hrs:min)    0:00
2037 Run Time (hrs:min)         0:00
2038 Dump Time (hrs:min)        0:00       0:00       0:00
2039 Output Size (meg)           0.1        0.1        0.0
2040 Original Size (meg)         0.1        0.1        0.0
2041 Avg Compressed Size (%)   100.0      100.0        --
2042 Filesystems Dumped            1          1          0
2043 Avg Dump Rate (k/s)      2500.0     2500.0        --
2044
2045 Tape Time (hrs:min)        0:00       0:00       0:00
2046 Tape Size (meg)             0.0        0.0        0.0
2047 Tape Used (%)               0.0        0.0        0.0
2048 Filesystems Taped             0          0          0
2049
2050 Parts Taped                   0          0          0
2051 Avg Tp Write Rate (k/s)     --         --         --
2052
2053
2054 DUMP SUMMARY:
2055                                        DUMPER STATS               TAPER STATS
2056 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS   KB/s
2057 -------------------------- ------------------------------------- -------------
2058 euclid       /A/p/etc    0     100     100    --     0:00 2491.0
2059
2060 (brought to you by Amanda version x.y.z)
2061 %%%% spanned
2062 INFO amdump amdump pid 30070
2063 INFO planner planner pid 30091
2064 START planner date 20100303153307
2065 DISK planner euclid /A/b/server-src
2066 INFO driver driver pid 30092
2067 START driver date 20100303153307
2068 STATS driver hostname euclid
2069 INFO dumper dumper pid 30095
2070 STATS driver startup time 0.044
2071 INFO dumper dumper pid 30098
2072 INFO dumper dumper pid 30100
2073 INFO dumper dumper pid 30099
2074 INFO taper taper pid 30094
2075 FINISH planner date 20100303153307 time 5.128
2076 INFO planner pid-done 30091
2077 INFO chunker chunker pid 30160
2078 INFO dumper gzip pid 30164
2079 SUCCESS dumper euclid /A/b/server-src 20100303153307 0 [sec 0.264 kb 21830 kps 82641.8 orig-kb 21830]
2080 INFO dumper pid-done 30164
2081 SUCCESS chunker euclid /A/b/server-src 20100303153307 0 [sec 0.290 kb 21830 kps 75337.9]
2082 INFO chunker pid-done 30160
2083 STATS driver estimate euclid /A/b/server-src 20100303153307 0 [sec 21 nkb 21862 ckb 21888 kps 1024]
2084 START taper datestamp 20100303153307 label Conf-001 tape 1
2085 PART taper Conf-001 1 euclid /A/b/server-src 20100303153307 1/-1 0 [sec 0.020357 kb 5120 kps 251515.911452 orig-kb 21830]
2086 PART taper Conf-001 2 euclid /A/b/server-src 20100303153307 2/-1 0 [sec 0.022239 kb 5120 kps 230222.763006 orig-kb 21830]
2087 PART taper Conf-001 3 euclid /A/b/server-src 20100303153307 3/-1 0 [sec 0.019910 kb 5120 kps 257153.694334 orig-kb 21830]
2088 PARTPARTIAL taper Conf-001 4 euclid /A/b/server-src 20100303153307 4/-1 0 [sec 0.017390 kb 4960 kps 285216.405648 orig-kb 21830] "No space left on device"
2089 INFO taper Will request retry of failed split part.
2090 INFO taper tape Conf-001 kb 15360 fm 4 [OK]
2091 START taper datestamp 20100303153307 label Conf-002 tape 2
2092 PART taper Conf-002 1 euclid /A/b/server-src 20100303153307 4/-1 0 [sec 0.022851 kb 5120 kps 224055.372485 orig-kb 21830]
2093 PART taper Conf-002 2 euclid /A/b/server-src 20100303153307 5/-1 0 [sec 0.004047 kb 1350 kps 333557.846590 orig-kb 21830]
2094 DONE taper euclid /A/b/server-src 20100303153307 5 0 [sec 0.089405 kb 21830 kps 244169.966680 orig-kb 21830]
2095 INFO dumper pid-done 30095
2096 INFO dumper pid-done 30098
2097 INFO dumper pid-done 30099
2098 INFO dumper pid-done 30100
2099 INFO taper tape Conf-002 kb 6470 fm 2 [OK]
2100 INFO taper pid-done 30094
2101 FINISH driver date 20100303153307 time 7.391
2102 INFO driver pid-done 30092
2103 %%%% spanned-rpt
2104 Hostname: euclid
2105 Org     : DailySet1
2106 Config  : TESTCONF
2107 Date    : March 3, 2010
2108
2109 These dumps were to tapes Conf-001, Conf-002.
2110 The next tape Amanda expects to use is: 1 new tape.
2111
2112
2113 STATISTICS:
2114                           Total       Full      Incr.
2115                         --------   --------   --------
2116 Estimate Time (hrs:min)    0:00
2117 Run Time (hrs:min)         0:00
2118 Dump Time (hrs:min)        0:00       0:00       0:00
2119 Output Size (meg)          21.3       21.3        0.0
2120 Original Size (meg)        21.3       21.3        0.0
2121 Avg Compressed Size (%)   100.0      100.0        --
2122 Filesystems Dumped            1          1          0
2123 Avg Dump Rate (k/s)     82689.4    82689.4        --
2124
2125 Tape Time (hrs:min)        0:00       0:00       0:00
2126 Tape Size (meg)            21.3       21.3        0.0
2127 Tape Used (%)              71.2       71.2        0.0
2128 Filesystems Taped             1          1          0
2129
2130 Parts Taped                   6          6          0
2131 Avg Tp Write Rate (k/s)  244170     244170        --
2132
2133 USAGE BY TAPE:
2134   Label          Time      Size      %    Nb    Nc
2135   Conf-001       0:00    20320k   66.2     1     4
2136   Conf-002       0:00     6470k   21.1     0     2
2137
2138
2139 NOTES:
2140   taper: Will request retry of failed split part.
2141   taper: tape Conf-001 kb 15360 fm 4 [OK]
2142   taper: tape Conf-002 kb 6470 fm 2 [OK]
2143
2144
2145 DUMP SUMMARY:
2146                                        DUMPER STATS                 TAPER STATS
2147 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS    KB/s MMM:SS     KB/s
2148 -------------------------- -------------------------------------- ---------------
2149 euclid       -server-src 0   21830   21830    --     0:00 82641.8   0:00 244170.0
2150
2151 (brought to you by Amanda version x.y.z)
2152 %%%% spanned-postscript
2153 --PS-TEMPLATE--
2154 (March 3, 2010) DrawDate
2155
2156 (Amanda Version x.y.z) DrawVers
2157 (Conf-001) DrawTitle
2158 (Total Size:          19.8 MB) DrawStat
2159 (Tape Used (%)        66.2 %) DrawStat
2160 (Number of files:      4) DrawStat
2161 (Filesystems Taped:    1) DrawStat
2162 (-) (Conf-001) (-) (  0) (      32) (      32) DrawHost
2163 (euclid) (/A/b/server-src) (0) (  1) (   21830) (   20320) DrawHost
2164
2165 showpage
2166 --PS-TEMPLATE--
2167 (March 3, 2010) DrawDate
2168
2169 (Amanda Version x.y.z) DrawVers
2170 (Conf-002) DrawTitle
2171 (Total Size:           6.3 MB) DrawStat
2172 (Tape Used (%)        21.1 %) DrawStat
2173 (Number of files:      2) DrawStat
2174 (Filesystems Taped:    0) DrawStat
2175 (-) (Conf-002) (-) (  0) (      32) (      32) DrawHost
2176
2177 showpage
2178 %%%% fatal
2179 INFO amdump amdump pid 14564
2180 INFO driver driver pid 14588
2181 INFO planner planner pid 14587
2182 START planner date 20100303144314
2183 START driver date 20100303144314
2184 STATS driver hostname localhost.localdomain
2185 DISK planner localhost /boot
2186 WARNING planner tapecycle (3) <= runspercycle (10)
2187 INFO planner Forcing full dump of localhost:/boot as directed.
2188 INFO dumper dumper pid 14595
2189 INFO dumper dumper pid 14596
2190 INFO dumper dumper pid 14597
2191 INFO dumper dumper pid 14600
2192 INFO dumper dumper pid 14599
2193 INFO dumper dumper pid 14598
2194 INFO dumper dumper pid 14601
2195 INFO dumper dumper pid 14602
2196 INFO dumper dumper pid 14603
2197 STATS driver startup time 0.214
2198 INFO dumper dumper pid 14604
2199 INFO taper taper pid 14590
2200 WARNING planner disk localhost:/boot, full dump (83480KB) will be larger than available tape space
2201 FAIL planner localhost /boot 20100303144314 0 "[dump larger than available tape space, 83480 KB, but cannot incremental dump new disk]"
2202 FATAL planner cannot fit anything on tape, bailing out
2203 WARNING driver WARNING: got empty schedule from planner
2204 INFO dumper pid-done 14595
2205 INFO dumper pid-done 14597
2206 INFO dumper pid-done 14596
2207 INFO dumper pid-done 14598
2208 INFO dumper pid-done 14600
2209 INFO dumper pid-done 14601
2210 INFO dumper pid-done 14604
2211 INFO dumper pid-done 14603
2212 INFO dumper pid-done 14602
2213 INFO dumper pid-done 14599
2214 INFO taper pid-done 14590
2215 FINISH driver date 20100303144314 time 8.150
2216 INFO driver pid-done 14588
2217 %%%% fatal-rpt
2218 Hostname: localhost.localdomain
2219 Org     : DailySet1
2220 Config  : TESTCONF
2221 Date    : March 3, 2010
2222
2223 The next tape Amanda expects to use is: 1 new tape.
2224
2225 FAILURE DUMP SUMMARY:
2226   planner: FATAL cannot fit anything on tape, bailing out
2227    localhost /boot lev 0  FAILED [dump larger than available tape space, 83480 KB, but cannot incremental dump new disk]
2228
2229
2230 STATISTICS:
2231                           Total       Full      Incr.
2232                         --------   --------   --------
2233 Estimate Time (hrs:min)    0:00
2234 Run Time (hrs:min)         0:00
2235 Dump Time (hrs:min)        0:00       0:00       0:00
2236 Output Size (meg)           0.0        0.0        0.0
2237 Original Size (meg)         0.0        0.0        0.0
2238 Avg Compressed Size (%)     --         --         -- 
2239 Filesystems Dumped            0          0          0
2240 Avg Dump Rate (k/s)         --         --         -- 
2241
2242 Tape Time (hrs:min)        0:00       0:00       0:00
2243 Tape Size (meg)             0.0        0.0        0.0
2244 Tape Used (%)               0.0        0.0        0.0
2245 Filesystems Taped             0          0          0
2246
2247 Parts Taped                   0          0          0
2248 Avg Tp Write Rate (k/s)     --         --         -- 
2249
2250
2251 NOTES:
2252   planner: tapecycle (3) <= runspercycle (10)
2253   planner: Forcing full dump of localhost:/boot as directed.
2254   planner: disk localhost:/boot, full dump (83480KB) will be larger than available tape space
2255   driver: WARNING: got empty schedule from planner
2256
2257
2258 DUMP SUMMARY:
2259                                        DUMPER STATS               TAPER STATS 
2260 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS   KB/s
2261 -------------------------- ------------------------------------- -------------
2262 localhost    /boot         MISSING -------------------------------------------
2263
2264 (brought to you by Amanda version x.y.z)
2265 %%%% flush-origsize
2266 INFO amflush amflush pid 11753
2267 DISK amflush localhost /boot
2268 START amflush date 20100303132501
2269 INFO driver driver pid 11755
2270 START driver date 20100303132501
2271 STATS driver hostname localhost.localdomain
2272 STATS driver startup time 0.020
2273 INFO taper taper pid 11756
2274 START taper datestamp 20100303132501 label TESTCONF02 tape 1
2275 PART taper TESTCONF02 1 localhost /boot 20100303132432 1/-1 0 [sec 0.493936 kb 83480 kps 169009.900121 orig-kb 148870]
2276 DONE taper localhost /boot 20100303132432 1 0 [sec 0.493936 kb 83480 kps 169009.900121 orig-kb 148870]
2277 INFO taper tape TESTCONF02 kb 83480 fm 9 [OK]
2278 INFO taper pid-done 11756
2279 FINISH driver date 20100303132501 time 1.966
2280 INFO driver pid-done 11755
2281 INFO amflush pid-done 11754
2282 %%%% flush-origsize-rpt
2283 Hostname: localhost.localdomain                   
2284 Org     : DailySet1                               
2285 Config  : TESTCONF                                
2286 Date    : March 3, 2010                           
2287
2288 The dumps were flushed to tape TESTCONF02.
2289 The next tape Amanda expects to use is: 1 new tape.
2290
2291
2292 STATISTICS:
2293                           Total       Full      Incr.
2294                         --------   --------   --------
2295 Estimate Time (hrs:min)     0:00
2296 Run Time (hrs:min)          0:00
2297 Dump Time (hrs:min)         0:00       0:00       0:00
2298 Output Size (meg)            0.0        0.0        0.0
2299 Original Size (meg)          0.0        0.0        0.0
2300 Avg Compressed Size (%)      --         --         --
2301 Filesystems Dumped             0          0          0
2302 Avg Dump Rate (k/s)          --         --         --
2303
2304 Tape Time (hrs:min)         0:00       0:00       0:00
2305 Tape Size (meg)             81.5       81.5        0.0
2306 Tape Used (%)              271.8      271.8        0.0
2307 Filesystems Taped              1          1          0
2308 Parts Taped                    1          1          0
2309 Avg Tp Write Rate (k/s)   169010     169010        --
2310
2311 USAGE BY TAPE:
2312   Label               Time         Size      %    Nb    Nc
2313   TESTCONF02          0:00       83480k  271.8     1     1
2314
2315 NOTES:
2316   taper: tape TESTCONF02 kb 83480 fm 9 [OK]
2317
2318
2319 DUMP SUMMARY:
2320                                        DUMPER STATS                TAPER STATS
2321 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS     KB/s
2322 -------------------------- ------------------------------------- ---------------
2323 localhost    /boot       0  148870   83480   56.1     FLUSH        0:00 169009.9
2324
2325 (brought to you by Amanda version x.y.z)
2326 %%%% flush-noorigsize
2327 INFO amflush amflush pid 11753
2328 DISK amflush localhost /boot
2329 START amflush date 20100303132501
2330 INFO driver driver pid 11755
2331 START driver date 20100303132501
2332 STATS driver hostname localhost.localdomain
2333 STATS driver startup time 0.020
2334 INFO taper taper pid 11756
2335 START taper datestamp 20100303132501 label TESTCONF02 tape 1
2336 PART taper TESTCONF02 1 localhost /boot 20100303132432 1/-1 0 [sec 0.493936 kb 83480 kps 169009.900121]
2337 DONE taper localhost /boot 20100303132432 1 0 [sec 0.493936 kb 83480 kps 169009.900121]
2338 INFO taper tape TESTCONF02 kb 83480 fm 9 [OK]
2339 INFO taper pid-done 11756
2340 FINISH driver date 20100303132501 time 1.966
2341 INFO driver pid-done 11755
2342 INFO amflush pid-done 11754
2343 %%%% flush-noorigsize-rpt
2344 Hostname: localhost.localdomain                   
2345 Org     : DailySet1                               
2346 Config  : TESTCONF                                
2347 Date    : March 3, 2010                           
2348
2349 The dumps were flushed to tape TESTCONF02.
2350 The next tape Amanda expects to use is: 1 new tape.
2351
2352
2353 STATISTICS:
2354                           Total       Full      Incr.
2355                         --------   --------   --------
2356 Estimate Time (hrs:min)     0:00
2357 Run Time (hrs:min)          0:00
2358 Dump Time (hrs:min)         0:00       0:00       0:00
2359 Output Size (meg)            0.0        0.0        0.0
2360 Original Size (meg)          0.0        0.0        0.0
2361 Avg Compressed Size (%)      --         --         --
2362 Filesystems Dumped             0          0          0
2363 Avg Dump Rate (k/s)          --         --         --
2364
2365 Tape Time (hrs:min)         0:00       0:00       0:00
2366 Tape Size (meg)             81.5       81.5        0.0
2367 Tape Used (%)              271.8      271.8        0.0
2368 Filesystems Taped              1          1          0
2369 Parts Taped                    1          1          0
2370 Avg Tp Write Rate (k/s)   169010     169010        --
2371
2372 USAGE BY TAPE:
2373   Label               Time         Size      %    Nb    Nc
2374   TESTCONF02          0:00       83480k  271.8     1     1
2375
2376 NOTES:
2377   taper: tape TESTCONF02 kb 83480 fm 9 [OK]
2378
2379
2380 DUMP SUMMARY:
2381                                        DUMPER STATS                TAPER STATS
2382 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS     KB/s
2383 -------------------------- ------------------------------------- ---------------
2384 localhost    /boot       0           83480    --      FLUSH        0:00 169009.9
2385
2386 (brought to you by Amanda version x.y.z)
2387 %%%% plannerfail
2388 START planner date 20100313212012
2389 START driver date 20100313212012
2390 DISK planner 1.2.3.4 SystemState
2391 STATS driver hostname advantium
2392 DISK planner 1.2.3.4 "C:/"
2393 DISK planner 1.2.3.4 "E:/Replication/Scripts"
2394 DISK planner 1.2.3.4 "G:/"
2395 STATS driver startup time 0.051
2396 INFO dumper dumper pid 11362
2397 INFO dumper dumper pid 11359
2398 INFO dumper dumper pid 11360
2399 INFO dumper dumper pid 11361
2400 INFO taper taper pid 11358
2401 INFO taper Will write new label `winsafe-002' to new tape
2402 FAIL planner 1.2.3.4 "G:/" 20100313212012 0 "[Request to 1.2.3.4 failed: recv error: Connection reset by peer]"
2403 FAIL planner 1.2.3.4 "E:/Replication/Scripts" 20100313212012 0 "[Request to 1.2.3.4 failed: recv error: Connection reset by peer]"
2404 FAIL planner 1.2.3.4 "C:/" 20100313212012 0 "[Request to 1.2.3.4 failed: recv error: Connection reset by peer]"
2405 FAIL planner 1.2.3.4 SystemState 20100313212012 0 "[Request to 1.2.3.4 failed: recv error: Connection reset by peer]"
2406 FINISH planner date 20100313212012 time 2113.308
2407 WARNING driver WARNING: got empty schedule from planner
2408 FINISH driver date 20100313212012 time 2114.332
2409 %%%% plannerfail-rpt
2410 Hostname: advantium
2411 Org     : DailySet1
2412 Config  : TESTCONF
2413 Date    : March 13, 2010
2414
2415 The next tape Amanda expects to use is: 1 new tape.
2416 FAILURE DUMP SUMMARY:
2417   1.2.3.4 SystemState lev 0  FAILED [Request to 1.2.3.4 failed: recv error: Connection reset by peer]
2418   1.2.3.4 "C:/" lev 0  FAILED [Request to 1.2.3.4 failed: recv error: Connection reset by peer]
2419   1.2.3.4 "E:/Replication/Scripts" lev 0  FAILED [Request to 1.2.3.4 failed: recv error: Connection reset by peer]
2420   1.2.3.4 "G:/" lev 0  FAILED [Request to 1.2.3.4 failed: recv error: Connection reset by peer]
2421
2422
2423
2424 STATISTICS:
2425                           Total       Full      Incr.
2426                         --------   --------   --------
2427 Estimate Time (hrs:min)     0:35
2428 Run Time (hrs:min)          0:35
2429 Dump Time (hrs:min)         0:00       0:00       0:00
2430 Output Size (meg)            0.0        0.0        0.0
2431 Original Size (meg)          0.0        0.0        0.0
2432 Avg Compressed Size (%)      --         --         --
2433 Filesystems Dumped             0          0          0
2434 Avg Dump Rate (k/s)          --         --         --
2435
2436 Tape Time (hrs:min)         0:00       0:00       0:00
2437 Tape Size (meg)              0.0        0.0        0.0
2438 Tape Used (%)                0.0        0.0        0.0
2439 Filesystems Taped              0          0          0
2440 Parts Taped                    0          0          0
2441 Avg Tp Write Rate (k/s)      --         --         --
2442
2443 NOTES:
2444   driver: WARNING: got empty schedule from planner
2445   taper: Will write new label `winsafe-002' to new tape
2446
2447
2448 DUMP SUMMARY:
2449                                        DUMPER STATS               TAPER STATS
2450 HOSTNAME     DISK        L ORIG-kB  OUT-kB  COMP%  MMM:SS   KB/s MMM:SS   KB/s
2451 -------------------------- ------------------------------------- -------------
2452 1.2.3.4      "C:/"         MISSING -------------------------------------------
2453 1.2.3.4      "-/Scripts"   MISSING -------------------------------------------
2454 1.2.3.4      "G:/"         MISSING -------------------------------------------
2455 1.2.3.4      SystemState   MISSING -------------------------------------------
2456
2457 (brought to you by Amanda version x.y.z)