Skip to content

Instantly share code, notes, and snippets.

@treed
treed / app.psgi
Created May 15, 2011 10:12 — forked from tene/.gitignore
basic psgi worker running on nginx
#!/usr/bin/perl
use strict;
use warnings;
use Dancer;
get '/' => sub {
return "Hi!";
};
get '/bye' => sub {
#!/usr/bin/perl -w
use strict;
use Net::SNMP;
use Getopt::Long;
use Data::Dumper;
use lib "/usr/lib/nagios/plugins";
use utils qw (%ERRORS &print_revision);
my $PROGNAME = "check_snmp_traffic";