20 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
26 |
rodolico |
3 |
use strict;
|
2 |
rodolico |
4 |
|
37 |
rodolico |
5 |
# Description: Basic template for modules. Do NOT enable
|
2 |
rodolico |
6 |
|
37 |
rodolico |
7 |
our $VERSION = '1.2';
|
|
|
8 |
|
251 |
rodolico |
9 |
exit 1; # remove this before using
|
37 |
rodolico |
10 |
|
20 |
rodolico |
11 |
# Put some comments here on who wrote it and what it does
|
|
|
12 |
|
165 |
rodolico |
13 |
# find our location and use it for searching for libraries
|
2 |
rodolico |
14 |
BEGIN {
|
165 |
rodolico |
15 |
use FindBin;
|
|
|
16 |
use File::Spec;
|
|
|
17 |
use lib File::Spec->catdir($FindBin::Bin);
|
|
|
18 |
eval( 'use library;' );
|
254 |
rodolico |
19 |
die "Could not find library.pm in the module directory\n" if $@;
|
165 |
rodolico |
20 |
eval( 'use Data::Dumper;' );
|
2 |
rodolico |
21 |
}
|
|
|
22 |
|
254 |
rodolico |
23 |
# check for valid OS. Remove any OS' this module is not valid for
|
251 |
rodolico |
24 |
exit 1 unless &checkOS( { 'linux' => undef, 'freebsd' => undef, 'mswin32' => undef } );
|
|
|
25 |
|
|
|
26 |
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
|
254 |
rodolico |
27 |
# script exits and returns an exit code of 2
|
251 |
rodolico |
28 |
foreach my $command ( 'sysctl', 'df' ) {
|
|
|
29 |
exit 2 unless &validCommandOnSystem( $command );
|
|
|
30 |
}
|
|
|
31 |
|
2 |
rodolico |
32 |
# category we will use for all values found
|
|
|
33 |
# see sysinfo for a list of valid categories
|
|
|
34 |
my $CATEGORY = 'system';
|
|
|
35 |
|
20 |
rodolico |
36 |
# run the commands necessary to do whatever you want to do
|
|
|
37 |
# The library entered above has some helper routines
|
|
|
38 |
# validCommandOnSystem -- passed a name, returns the fully qualified path or '' if it does not exist
|
|
|
39 |
# cleanUp - passed a delimiter and a string, does the following (delimiter can be '')
|
|
|
40 |
# chomps the string (removes trailing newlines)
|
|
|
41 |
# removes all text BEFORE the delimiter, the delimiter, and any whitespace
|
|
|
42 |
# thus, the string 'xxI Am x a weird string' with a newline will become
|
|
|
43 |
# 'a weird string' with no newline
|
2 |
rodolico |
44 |
|
20 |
rodolico |
45 |
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
|
|
|
46 |
# item, name as recognized by sysinfo is the second and the value is
|
|
|
47 |
# the last one. For multiple entries, place on separate lines (ie, newline separated)
|
|
|
48 |
|
|
|
49 |
# Example of getting last_boot and uptime on a Unix system
|
251 |
rodolico |
50 |
# exit status of 3 or greater means we could not get data for some reason
|
20 |
rodolico |
51 |
if ( -d '/proc/uptime' ) {
|
2 |
rodolico |
52 |
my $uptime = qx(cat /proc/uptime);
|
|
|
53 |
$uptime =~ m/(\d+)/;
|
|
|
54 |
$uptime = int($1); # uptime now has the up time in seconds
|
|
|
55 |
print "$CATEGORY\tlast_boot\t" . (time - $uptime) . "\n";
|
|
|
56 |
print "$CATEGORY\tuptime\t" . $uptime . "\n";
|
20 |
rodolico |
57 |
exit 0;
|
|
|
58 |
} else {
|
251 |
rodolico |
59 |
exit 3;
|
2 |
rodolico |
60 |
}
|
|
|
61 |
|
251 |
rodolico |
62 |
# if you have not done an exit state above (1 indicating wrong operating system, 2 meaning the commands do not exist), do one
|
20 |
rodolico |
63 |
# here (exit 0 indicates success)
|
2 |
rodolico |
64 |
exit 0;
|