BackupPC verification helper
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

194 lines
6.5 KiB

5 years ago
#============================================================= -*-perl-*-
#
# BackupPC::CGI::Check package
#
# DESCRIPTION
#
# This module implements the Check action for the CGI interface.
#
# AUTHOR
# Heuze Florent <heuzef@firewall-services.com>
#
#========================================================================
#
# Released October 2019 - firewall-services.com
5 years ago
#
#========================================================================
package BackupPC::CGI::Check;
use strict;
5 years ago
use lib "/usr/share/BackupPC/lib";
use BackupPC::Lib;
5 years ago
use BackupPC::CGI::Lib qw(:all);
5 years ago
use Statistics::Descriptive;
sub action
{
# Init
5 years ago
my($str, $strGood, $header);
GetStatusInfo("hosts info");
my $Privileged = CheckPermission();
my $bpc = BackupPC::Lib->new();
# Start loop
foreach my $host ( GetUserHosts(1) ) {
5 years ago
my($incrAge, $reasonHilite, $frequency, $lastAge, $lastAgeColor, $tempState, $tempReason, $lastXferErrors, $lastXferErrorsColor);
5 years ago
my($shortErr);
my @Backups = $bpc->BackupInfoRead($host);
my $fullAge = $incrAge = $lastAge = -1;
$bpc->ConfigRead($host);
%Conf = $bpc->Conf();
next if ( $Conf{XferMethod} eq "archive" );
next if ( !$Privileged && !CheckPermission($host) );
5 years ago
# Get frequency for this host
if ( $Conf{IncrPeriod} < $Conf{FullPeriod} ) {
5 years ago
$frequency = $Conf{IncrPeriod};
} else {
5 years ago
$frequency = $Conf{FullPeriod};
5 years ago
}
# Age
for ( my $i = 0 ; $i < @Backups ; $i++ ) {
5 years ago
if ( $Backups[$i]{type} eq "full" or "incr" ) {
$lastAge = sprintf("%.1f", (time - $Backups[-1]{startTime}) / (24 * 3600));
}
}
5 years ago
# Color for age
5 years ago
if ( $lastAge < $frequency ) {
$lastAgeColor = "MediumSeaGreen";
} else {
$lastAgeColor = "Tomato";
}
if ( $fullAge < 0 ) {
5 years ago
$fullAge = 0;
} else {
$fullAge = sprintf("%.1f", (time - $fullAge) / (24 * 3600));
}
if ( $incrAge < 0 ) {
5 years ago
$incrAge = 0;
} else {
$incrAge = sprintf("%.1f", (time - $incrAge) / (24 * 3600));
}
5 years ago
$incrAge = "&nbsp;" if ( $incrAge eq "" );
# Color for errors
$lastXferErrors = $Backups[@Backups-1]{xferErrs} if ( @Backups );
if ( $lastXferErrors == 0 ) {
$lastXferErrorsColor = "MediumSeaGreen";
} else {
$lastAgeColor = "Tomato";
}
# Colors statuts
5 years ago
$reasonHilite = $Conf{CgiStatusHilightColor}{$Status{$host}{reason}} || $Conf{CgiStatusHilightColor}{$Status{$host}{state}};
$reasonHilite = " bgcolor=\"$reasonHilite\"" if ( $reasonHilite ne "" );
5 years ago
if ( $tempState ne "Status_backup_in_progress" && $tempState ne "Status_restore_in_progress" && $Conf{BackupsDisable} == 0 && $Status{$host}{error} ne "" ) {
($shortErr = $Status{$host}{error}) =~ s/(.{48}).*/$1.../;
$shortErr = " ($shortErr)";
5 years ago
}
5 years ago
# Check Size Consistency
5 years ago
my $new_size = 0;
my $new_size_avg = 0;
my $new_size_q1 = 0;
my $new_size_q3 = 0;
my $sizes = new Statistics::Descriptive::Full;
5 years ago
5 years ago
if ( scalar( @Backups ) ){
foreach my $backup ( @Backups ) {
5 years ago
# Skip partial or active backups
next if ( $backup->{type} !~ m/^full|incr$/ );
# Push all the sizes in our data set to compute avg sizes
# Exclude backup N°0 as it'll always have much more new data than normal backups
$sizes->add_data($backup->{sizeNew}) unless ( $backup->{num} == 0 );
}
5 years ago
5 years ago
# Ignore the last backup if it's not full or incr (which means it's either partial or active)
my $i = ( $Backups[-1]->{type} =~ m/^full|incr$/ ) ? -1 : -2;
5 years ago
5 years ago
$new_size = $Backups[$i]->{sizeNew};
$new_size_avg = int $sizes->mean;
$new_size_q1 = eval { int $sizes->quantile(1) } || 0;
$new_size_q3 = eval { int $sizes->quantile(3) } || 0;
5 years ago
}
# TOO BIG ?
my $toobig = 0;
5 years ago
if ( $new_size > ($new_size_q3 + $new_size_q3 - $new_size_q1) * 1.5 or $new_size > $new_size_avg * 6 ) {
$toobig = 1;
5 years ago
}
5 years ago
5 years ago
# TOO SMALL ?
my $toosmall = 0;
5 years ago
if ( $new_size < ($new_size_q1 - $new_size_q3 - $new_size_q1) * 1.5 or $new_size < $new_size_avg / 3 ) {
$toosmall = 1;
5 years ago
}
# Get result
5 years ago
my $sizeConsistency = "<strong>ANOMALOUS</strong>";
my $sizeConsistencyColor = "Tomato";
if ( not $toobig and not $toosmall ) {
5 years ago
$sizeConsistency = "Normal";
$sizeConsistencyColor = "MediumSeaGreen";
5 years ago
}
5 years ago
# Get URL for explore file
my $browseFile = "?action=browse&host=$host";
5 years ago
5 years ago
# Show summary
$str = <<EOF;
<tr$reasonHilite><td class="border">${HostLink($host)}</td>
<td align="center" class="border" style="color:$lastAgeColor;">$lastAge <em>(Freq: $frequency)</em></td>
<td align="center" class="border" style="color:$lastXferErrorsColor;">$lastXferErrors</td>
<td align="center" class="border" style="color:$sizeConsistencyColor;">$sizeConsistency</td>
<td align="center" class="border"><a href="$browseFile" target="_blank">Explore files ...</a></td>
EOF
}
5 years ago
# End loop
5 years ago
5 years ago
# Time set
my $now = timeStamp2(time);
my $DUmaxTime = timeStamp2($Info{DUDailyMaxTime});
my $DUInodemaxTime = timeStamp2($Info{DUInodeDailyMaxTime});
5 years ago
# Show header
$header = <<EOF;
5 years ago
\${h1(qq{BackupPC: Check})}
5 years ago
<p>This check was generated at <strong>\$now</strong>.</p>
5 years ago
<p>File system pool size usage (\$DUmaxTime) :</p>
<div style="background-color:#f1f1f1!important">
5 years ago
<div style="color:#fff!important;background-color:#2196F3!important; text-align:center; width:\$Info{DUDailyMax}%">\$Info{DUDailyMax}%</div>
</div>
5 years ago
<p>File system inode size usage (\$DUInodemaxTime) :</p>
<div style="background-color:#f1f1f1!important">
5 years ago
<div style="color:#fff!important;background-color:#2196F3!important; text-align:center; width:\$Info{DUInodeDailyMax}%">\$Info{DUInodeDailyMax}%</div>
</div>
5 years ago
\${h2("Backups summary")}
<table class="sortable" id="host_summary_backups" border cellpadding="3" cellspacing="1">
<tr class="tableheader"><td> Host </td>
<td> Last backup in days </td>
<td> Errors </td>
<td> Size Consistency </td>
<td> Browse </td>
5 years ago
\$str
</table>
EOF
5 years ago
# Show page
my $content = eval ("qq{$header}");
5 years ago
Header("BackupPC: Check", $content);
Trailer();
}
5 years ago
5 years ago
1;