You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
283 B
19 lines
283 B
8 years ago
|
#!/usr/bin/env perl -w
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use LWP::Simple;
|
||
|
use JSON;
|
||
|
|
||
|
my $json;
|
||
|
@{$json->{data}} = ();
|
||
|
|
||
|
my $status = get('http://127.0.0.1/server-status?auto');
|
||
|
|
||
|
if ($status){
|
||
|
push @{$json->{data}}, {"{#HTTPD_STATUS_AVAILABLE}" => 'yes'};
|
||
|
}
|
||
|
|
||
|
print to_json($json);
|
||
|
exit(0);
|