Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 251 Rev 256
Line 1... Line 1...
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
use warnings;
2
use warnings;
3
use strict;  
3
use strict;  
4
 
4
 
5
# Description: Gets information on Unix based systems
5
use version ; our $VERSION = 'v1.0.0';
6
 
6
 
7
our $VERSION = '1.0';
-
 
8
 
-
 
9
# Basic Unix module for sysinfo client
7
# Basic FreeBSD Module for sysinfo
10
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
11
# Date:   2016-04-08
9
# Date:   2016-04-08
12
 
10
#
13
# gets additional systems information on BSD machine using some standard
11
# gets additional systems information on BSD machine using some standard
14
# utilities
12
# utilities
-
 
13
#
-
 
14
# Revision History
-
 
15
#
-
 
16
#
15
 
17
 
16
 
-
 
17
# find our location and use it for searching for libraries
18
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
19
# or, if run interactively, in the parent of the modules
18
BEGIN {
20
BEGIN {
19
   use FindBin;
21
   use FindBin;
20
   use File::Spec;
22
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
23
   # prepend the bin directory and its parent
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
24
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
23
   eval( 'use Data::Dumper;' );
25
   eval( 'use library;' );
-
 
26
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
24
}
27
}
25
 
28
 
-
 
29
#####
26
# check for valid OS. 
30
##### Change these to match your needs
-
 
31
#####
-
 
32
 
-
 
33
# Make this a list of all the modules we are going to use. You can replace undef with the version you need, if you like
-
 
34
my $modulesList = {
27
exit 1 unless &checkOS( { 'freebsd' => undef } );
35
        'Data::Dumper'     => undef,
-
 
36
   };
28
 
37
 
29
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
38
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
-
 
39
# the full path (from which or where)
30
# script returns a 2
40
my $commandsList = {
31
foreach my $command ( 'grep', 'dmesg', 'uname', 'sysctl' ) {
41
        'grep' => undef,
-
 
42
        'dmesg' => undef,
32
   exit 2 unless &validCommandOnSystem( $command );
43
        'uname' => undef,
-
 
44
        'sysctl' => undef,
-
 
45
   };
33
}
46
 
-
 
47
# list of operating systems this module can be used on.
-
 
48
my $osList = {
-
 
49
#         'mswin32' => undef,
-
 
50
         'freebsd' => undef,
-
 
51
#         'linux'   => undef,
-
 
52
   };
34
 
53
 
35
# category we will use for all values found
54
# the category the return data should go into. See sysinfo for a list
36
# see sysinfo for a list of valid categories
-
 
37
my $CATEGORY = 'system';
55
my $CATEGORY = 'system';
38
 
56
 
39
my $temp;
57
#####
40
 
-
 
41
# following removed as they are now gotten through dmidecode module
-
 
42
#$temp = getSysctlParameter( $commands{ 'sysctl' }, 'hw.ncpu' );
-
 
43
#print "$CATEGORY\tnum_cpu\t$temp\n" if $temp;
58
##### End of required
44
 
-
 
45
#$temp = getSysctlParameter( $commands{ 'sysctl' }, 'hw.clockrate' );
-
 
46
#print "$CATEGORY\tcpu_speed\t$temp\n" if $temp;;
-
 
47
 
59
#####
48
#$temp = getSysctlParameter( $commands{ 'sysctl' }, 'hw.model' );
-
 
49
#print "$CATEGORY\tcpu\t$temp\n" if $temp;
-
 
50
 
60
 
51
# all this needs is uname
61
# some variables needed for our system
52
#print "$CATEGORY\tcpu_sub\t" . &cleanUp('', qx(uname -m)) . "\n" if $commands{'uname'};
62
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
53
#print "$CATEGORY\tcpu_type\tUNK\n";
63
my @out; # temporary location for each line of output
54
 
64
 
55
#$temp = getSysctlParameter( $commands{ 'sysctl' }, 'hw.realmem' );
65
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
56
#$temp /= 1024;
-
 
57
#print "$CATEGORY\tmemory\t$temp\n";
66
for my $module ( keys %$modulesList ) {
58
 
-
 
59
$temp = getSysctlParameter( 'sysctl', 'kern.boottime' );
-
 
60
$temp =~ m/sec = (\d+),/;
67
   eval ( "use $module;" );
61
$temp = $1;
-
 
62
print "$CATEGORY\tlast_boot\t$temp\n";
68
   push @out, "$errorPrepend Could not load $module" if $@;
63
 
69
}
64
$temp = time - $temp;
-
 
65
print "$CATEGORY\tuptime\t$temp\n";
-
 
66
 
70
 
-
 
71
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
-
 
72
    push @out, "$errorPrepend Invalid Operating System";
-
 
73
}
-
 
74
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
75
   push @out, "$errorPrepend Can not find some commands needed";
-
 
76
}
-
 
77
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
78
   #####
-
 
79
   ##### Your code starts here. Remember to push all output onto @out
-
 
80
   #####
-
 
81
   
-
 
82
      my $temp = getSysctlParameter( 'sysctl', 'kern.boottime' );
-
 
83
      $temp =~ m/sec = (\d+),/;
-
 
84
      $temp = $1;
-
 
85
      push @out, "$CATEGORY\tlast_boot\t$temp\n";
-
 
86
 
-
 
87
      $temp = time - $temp;
-
 
88
      push @out, "$CATEGORY\tuptime\t$temp\n";
-
 
89
   
-
 
90
   #####
-
 
91
   ##### Your code ends here.
-
 
92
   #####
-
 
93
}
67
 
94
 
-
 
95
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
96
print join( "\n", @out ) . "\n" unless caller;
-
 
97
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
-
 
98
my $return = join( "\n", @out );
68
 
99
 
69
exit 0;
-