mirror of https://github.com/mikaku/Monitorix.git
added an error message into the email if 'emailreports' can't connect to Monitorix
This commit is contained in:
parent
fcc4e168a1
commit
f29d94138d
|
@ -87,6 +87,13 @@ EOF
|
||||||
my $ua = LWP::UserAgent->new(timeout => 30);
|
my $ua = LWP::UserAgent->new(timeout => 30);
|
||||||
my $response = $ua->request(HTTP::Request->new('GET', $url));
|
my $response = $ua->request(HTTP::Request->new('GET', $url));
|
||||||
|
|
||||||
|
if(!$response->is_success) {
|
||||||
|
logger("$myself: " . $response->status_line);
|
||||||
|
$html .= "<pre>\n";
|
||||||
|
$html .= $response->status_line;
|
||||||
|
$html .= "</pre>\n";
|
||||||
|
}
|
||||||
|
|
||||||
my $data = $response->content;
|
my $data = $response->content;
|
||||||
$e = 0;
|
$e = 0;
|
||||||
foreach ($data =~ /<!-- graph table begins -->/gi) {
|
foreach ($data =~ /<!-- graph table begins -->/gi) {
|
||||||
|
|
Loading…
Reference in New Issue