Mercurial > bottledash
view doc/connect_with_mon/bottledash.alert @ 47:190a81a60e7e tip
Update README
G: changed README.txt
author | Gernot Schulz <gernot@intevation.de> |
---|---|
date | Sun, 07 Feb 2016 13:26:32 +0100 |
parents | a957a56bb694 |
children |
line wrap: on
line source
#!/usr/bin/perl # # # Sean Engelhardt, sean.engelhardt@intevation.de # # # Copyright (C) 2015, Intevation # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # the argument passed to the script should be the service-name in the # dash.conf from the bottledash-configuration use LWP::UserAgent; use Getopt::Std; getopts ("S:s:g:h:t:l:f:u"); $ALERT = $opt_u ? "UPALERT" : "ALERT"; my $server_endpoint = "http://localhost:8080/updown"; my $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(POST => $server_endpoint); $req->header('content-type' => 'x-www-form-urlencoded'); my $post_data = "service=@ARGV&status=$ALERT"; $req->content($post_data); my $resp = $ua->request($req);