- 论坛徽章:
- 0
|
zhlong8 发表于 2012-04-12 10:21 ![]()
这个模块不是 Perl 自带的吗,安装它干嘛
好吧我离线安装成功了。。。。现在遇到了新的问题,其实我的目的是想用Solarwinds来监控apache的服务状态,现在依然是报错,帮我看一下这个脚本有需要修改的地方么?- #!/usr/bin/perl
- #
- #
- # Copyright ¿ 1999-2008 SolarWinds, Inc. All Rights Reserved.
- #
- #
- use LWP::UserAgent;
- if (@ARGV[0] =~ /\bhelp\b/)
- {
- print "ServerUptime.pl StatusURL\n";
- print "StatusURL - url to apache server status (ex. www.mysite.com/server-status ) \n";
- exit 1;
- }
- # Get hostname and trim newline
- $localhost = `hostname`;
- $localhost =~ s/\s*$//g;
- $hostname = shift || "localhost"; # $localhost
- $url = "$hostname/server-status?auto&match=www&errors=0";
- # Create a user agent object
- $ua = new LWP::UserAgent;
- $ua->agent("AgentName/0.1 " . $ua->agent);
- # Create a request
- my $req = new HTTP::Request GET => "http://$url";
- #print "http://$url\n";
- $req->content_type("application\/x-www-form-urlencoded");
- $req->content("match=www&errors=0");
- # Pass request to the user agent and get a response back
- my $res = $ua->request($req);
- my $val ="";
- # Check the outcome of the response
- if ($res->is_success) {
- #print $res->content;
- $content = $res->content;
- while ( $content =~ /Uptime:\s(\d+)/ig){
- $hour = sprintf("%d",$1 / 3600);
- $min = sprintf("%d",($1-$hour*3600)/60);
- $sec = sprintf("%d",($1-$hour*3600-$min*60));
- $sut = "${hour}h ${min}m ${sec}s";
- print "Message: Server Uptime at host \"$hostname\" $sut\n";
- print "statistic: $1\n";
- exit 0;
- }
- } else {
- print "Message: unable access to $hostname\n";
- print "Statistic: 0\n";
- exit 1;
- }
复制代码 |
|