- 论坛徽章:
- 0
|
脚本如下:
#!/usr/bin/perl -w
use strict;
open (DD,"date +%Y-%m |")|| die "can not exec shell command";
my $datedir=<DD>;
my @dt=split /-/, $datedir;
my $path="/usr/local/tomcat/webapps/WEB-INF/work/log/$dt[0]/$dt[1]";
chdir "$path" || die "can not change : $!";
close DD;
open (DALOG, "date +%Y%m%d |") || die "can not exec shell command";
my $datelog=<DALOG>;
close DALOG;
my $line=0;
if (-e "session\.$datelog\.log") {
open ALTER,"session\.$datelog\.log";
while(<ALTER>){
chomp;
if (!(/^,\s*(487|-1|0),$/)) {
++$line;
print $_;
}
if ($line <=100) {
print "OK -- now alter count $line";
}elsif($line >100 && $line<=150) {
print "Warning --now alter count $line";
}else{
print "Critical --now alter count $line";
}
}
}
执行时,错误提示: can not change : No such file or directory at ./check_session.pl line 10, <DD> line 1. |
|