2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/plugins/bsd/uptime_bsd

64 lines
1.2 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env perl
2010-10-18 12:54:59 +02:00
# -*- perl -*-
# Plugin to monitor the system uptime
2010-10-18 12:54:59 +02:00
#
#%# family=auto
#%# capabilities=autoconf
use strict;
use warnings;
2010-10-18 12:54:59 +02:00
my %IN;
my $sysctl = defined($ENV{sysctl}) ? $ENV{sysctl} : '/sbin/sysctl';
my $ostype = `uname -s`;
chomp ($ostype);
2010-10-18 12:54:59 +02:00
if (defined($ARGV[0]) and ($ARGV[0] eq 'autoconf')) {
2012-02-18 23:33:00 +01:00
if ( -x $sysctl ) {
print "yes\n";
} else {
print "no (sysctl binary not found)\n";
};
exit;
2010-10-18 12:54:59 +02:00
};
if (defined($ARGV[0]) and ($ARGV[0] eq 'config')) {
print <<EOT ;
graph_title Uptime
graph_args --base 1000 -l 0
graph_vlabel days
graph_category system
compile.label Kernel age
2010-10-18 12:54:59 +02:00
compile.type GAUGE
compile.min 0
compile.max 1000
compile.draw AREA
uptime.label Uptime
2010-10-18 12:54:59 +02:00
uptime.type GAUGE
uptime.min 0
uptime.max 1000
uptime.draw AREA
EOT
exit;
}
use Date::Parse;
my $kern=`sysctl -n kern.version`;
$kern=~ /:\s+(.*\S)\s+\w+\@/;
#print "Compile: $1\n";
2010-10-18 12:54:59 +02:00
$kern=str2time($1);
my $boot=`sysctl -n kern.boottime`; # OpenBSD will return seconds from the epoch
if ($ostype ne "OpenBSD") {
$boot=~ / sec = (\d+)/;
#print "Boot: $1\n";
$boot=$1;
}
2010-10-18 12:54:59 +02:00
my $now=time;
print "compile.value ",($now-$kern)/60/60/24,"\n";
print "uptime.value ",($now-$boot)/60/60/24,"\n";