2018-01-11 02:35:10 +08:00
|
|
|
#!/usr/bin/perl -wT
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# ZoneMinder WatchDog Script, $Date$, $Revision$
|
|
|
|
# Copyright (C) 2001-2008 Philip Coombes
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
zmwatch.pl - ZoneMinder Stats Updating Script
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
zmstats.pl
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This does background updating various stats in the db like event counts, diskspace, etc.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
use strict;
|
|
|
|
use bytes;
|
|
|
|
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# These are the elements you can edit to suit your installation
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
|
|
|
|
use constant START_DELAY => 30; # To give everything else time to start
|
|
|
|
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# Don't change anything below here
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
|
|
|
|
@EXTRA_PERL_LIB@
|
|
|
|
use ZoneMinder;
|
|
|
|
use ZoneMinder::Storage;
|
|
|
|
use POSIX;
|
|
|
|
use DBI;
|
|
|
|
use autouse 'Data::Dumper'=>qw(Dumper);
|
|
|
|
|
|
|
|
$| = 1;
|
|
|
|
|
|
|
|
$ENV{PATH} = '/bin:/usr/bin:/usr/local/bin';
|
|
|
|
$ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL};
|
|
|
|
delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
|
|
|
|
|
|
|
|
logInit();
|
|
|
|
logSetSignal();
|
|
|
|
|
|
|
|
Info( "Stats Daemon starting in ".START_DELAY." seconds\n" );
|
|
|
|
sleep( START_DELAY );
|
|
|
|
|
|
|
|
my $dbh = zmDbConnect();
|
|
|
|
|
|
|
|
my $sql = $Config{ZM_SERVER_ID} ? 'SELECT * FROM Monitors WHERE ServerId=?' : 'SELECT * FROM Monitors';
|
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
|
|
|
|
|
|
|
|
while( 1 ) {
|
2018-01-20 07:25:24 +08:00
|
|
|
while ( ! ( $dbh and $dbh->ping() ) ) {
|
|
|
|
Info("Reconnecting to db");
|
|
|
|
$dbh = zmDbConnect();
|
|
|
|
}
|
2018-01-11 02:35:10 +08:00
|
|
|
|
|
|
|
$dbh->do('DELETE FROM Events_Hour WHERE StartTime < DATE_SUB(NOW(), INTERVAL 1 hour)');
|
|
|
|
$dbh->do('DELETE FROM Events_Day WHERE StartTime < DATE_SUB(NOW(), INTERVAL 1 day)');
|
|
|
|
$dbh->do('DELETE FROM Events_Week WHERE StartTime < DATE_SUB(NOW(), INTERVAL 1 week)');
|
|
|
|
$dbh->do('DELETE FROM Events_Month WHERE StartTime < DATE_SUB(NOW(), INTERVAL 1 month)');
|
|
|
|
|
2018-01-16 22:32:18 +08:00
|
|
|
sleep( $Config{ZM_STATS_UPDATE_INTERVAL} );
|
2018-01-11 02:35:10 +08:00
|
|
|
} # end while (1)
|
|
|
|
|
|
|
|
Info( "Stats Daemon exiting\n" );
|
|
|
|
exit();
|
|
|
|
1;
|
|
|
|
__END__
|