代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Perl
】
监控网站的性能
作者:
dezai
/ 发布于
2014/9/12
/
1051
#!/usr/bin/perl use warnings; use strict; use Tie::File; use Net::SMTP; use LWP::UserAgent; ################################################################# # Program Settings # my $error_log = 'Responser_errors.txt';# File to store errors of program my $input_file = 'urls.txt'; # From where program will read WEB Addresses my $smtp_file = 'SMTP_Settings.txt'; # File for SMTP Settings my $response_limit = 12; #In Seconds # Positively diggit -> SendMail; # 0 -> will not send mail my $send_mail = 1; # my $send_mail = 1; ->SMTP option is ON, # my $send_mail = 0; ->SMTP option is OFF ################################################################## # END OF SETTINGS # Do not edit bellow if you dont understand it. ################################################################## die "File $input_file is not exist\n" unless (-e $input_file); die "SMTP is ON, but file $smtp_file is not exist\n" unless (-e $smtp_file); my $localtime = localtime; our @errors; my ($day,$month,$date,$hour,$year) = split /\s+/,scalar localtime; my $output_file = 'report-'.$date.'.'.$month.'.'.$year.'.txt'; my ($smtp_host,$recipient,$reverse_path, @all_addr) = (); tie @all_addr, 'Tie::File', $input_file or error("Cant open $input_file to read addresses"); if (-e $output_file) { open(OUT,">> $output_file") or error("Cant open exist file $output_file for append"); } else { open(OUT,"> $output_file") or error("Cant open new file $output_file for writting"); } my @smtp_settings; if ($^O =~ /win/i) { tie @smtp_settings, 'Tie::File', $smtp_file,, recsep => "\012" or error("Cant open $smtp_file to read SMTP settings"); } else { tie @smtp_settings, 'Tie::File', $smtp_file,autochomp => '0' or error("Cant open $smtp_file to read SMTP settings"); } for (@smtp_settings) { chomp; next if /^#/; #next if /^$/; if (/^(\w+)\s=\s'(\S+)'/) { $smtp_host = $2 if ($1 eq 'SMTPHost'); $recipient = $2 if ($1 eq 'Recipient'); $reverse_path = $2 if ($1 eq 'Reverse'); } } print OUT "\n+" .('-' x 84) . "+\n"; print OUT "|", ' ' x 30,"Time: $hour",' ' x 40,"|\n"; print OUT "|",' 'x 10,'HOST',' ' x 37,'STATUS',' ' x 7, "RESPONSE |\n"; print OUT "+" .('-' x 84) . "+\n"; for (0 .. $#all_addr) { chop $all_addr[$_] if ($all_addr[$_] =~ /\s+$/); next if ($all_addr[$_] eq ""); if ($all_addr[$_] =~ /^http:\/\/\S+\.\w{2,4}$/) { #address will beginnig with http://,next some string # finish with point and 2 to 4 letters check_url($all_addr[$_]); #call subroutine check_url() } else { my $out_format = sprintf "| %-50.50s %-10s %-20s|\n", $all_addr[$_], "WRONG", "N/A"; printf OUT $out_format; printf $out_format; push @errors, "$all_addr[$_] is WRONG Address."; } } my $err = join "\015\012",@errors; my $err_num = scalar @errors; # How match DOWN + WRONG Sites have $send_mail = 0 unless $err_num; untie @all_addr or error("Unable to close file $input_file"); if ($send_mail) { my $smtp = Net::SMTP->new($smtp_host, -Debug=>1, -Timeout=>20, -Hello=>"$smtp_host") or error("Cant connect to $smtp_host"); # Begin Compare mail message my $msg = <<__END_OF_MAIL__; To: $recipient Subject: $err_num Error Sites | $localtime . $localtime $err __END_OF_MAIL__ # End Compare $smtp->mail("$reverse_path") or error("Failed to specify a reverse-path");# If all is OK $smtp->to($recipient) or error("Failed to specify a recipient"); # that will $smtp->data([$msg]) or error("Failed to send a message"); # send mail $smtp->quit or error("Failed to quit"); # to You } else { print "Send Mail is OFF\n" if $err_num; # If you do not wish to receive mail } close OUT or error("Unable to close file $output_file"); print "\nProcess FINISH\n"; sub check_url { # subroutine who check given URL my $target = $_[0]; my $ua = LWP::UserAgent->new; $ua->agent("$0/0.1 " . $ua->agent); my $req = HTTP::Request->new(GET => "$target"); $req->header('Accept' => 'text/html'); #Accept HTML Page # send request my $start = time; # Start timer my $res = $ua->request($req); # check the outcome if ($res->is_success) { # Success....all content of page has been received my $time = time; # End timer my $out_format; $time = ($time - $start); # Result of timer if ($response_limit && ($response_limit <= $time)) { push(@errors, "Slow response from $target\: $time seconds"); $out_format = sprintf "| %-50.50s %-10s %-20s |\n", $target, "SLOW", "Response $time seconds"; } else { $out_format = sprintf "| %-50.50s %-10s %-20s |\n", $target, "ACCESSED", "Response $time seconds"; } print OUT $out_format; # write to file print $out_format; # print to console } else { # Error .... Site is DOWN and script send e-mail to you.. my $out_format = sprintf "| %-50.50s %-10s %-20s |\n", $target, "DOWN", " N/A"; push(@errors, "$target is DOWN." . $res->status_line) or error("Cannot push error for DOWN"); print OUT $out_format; # write to file print $out_format; # print to console } } sub error { # subroutine who print in Error Log my $error_msg = shift; open ERR,">> $error_log" or die "Cannot open log file $error_log : $!\n"; print ERR "$localtime\: $error_msg : $!\n"; close ERR or die "Cannot close log file $error_log : $!\n"; }
试试其它关键字
监控网站
监控性能
性能
同语言下
.
获取本机所有IP和设备的绑定情况
.
生成隨機密碼
.
取文件的最后修改时间
.
获取本机所有IP和设备的绑定情况
.
将perl脚本变成乱糟糟的一团
.
从 HTML网页中解析出链接
.
使用 HTTP::Request 请求 URL 并将响应保存到文件
.
使用指定的User-Agent抓取网页
.
使用 Net::SMTP发送邮件
.
编写的一个简单 Web服务器
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3