Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | 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
-
 
6
 
-
 
7
our $VERSION = '1.1.1';
5
use version ; our $VERSION = '1.1.1';
8
 
6
 
9
# Basic Unix module for sysinfo client
7
# Basic Unix module for sysinfo client
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 Linux machine using some standard
11
# gets additional systems information on Linux machine using some standard
14
# utilities
12
# utilities
-
 
13
#
-
 
14
# Revision History
-
 
15
#
15
 
16
 
16
 
-
 
17
# find our location and use it for searching for libraries
17
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
18
# or, if run interactively, in the parent of the modules
18
BEGIN {
19
BEGIN {
19
   use FindBin;
20
   use FindBin;
20
   use File::Spec;
21
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
22
   # prepend the bin directory and its parent
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
23
   eval( 'use Data::Dumper;' );
24
   eval( 'use library;' );
24
}
-
 
25
 
-
 
26
# check for valid OS. 
-
 
27
exit 1 unless &checkOS( { 'linux' => undef } );
-
 
28
 
-
 
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
25
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
30
# script returns a 2
-
 
31
foreach my $command ( 'free', 'awk', 'grep', 'tail', 'uname' ) {
-
 
32
   exit 2 unless &validCommandOnSystem( $command );
-
 
33
}
26
}
34
 
27
 
-
 
28
#####
35
# The files/directories the script will use
29
##### Change these to match your needs
-
 
30
#####
-
 
31
 
-
 
32
# 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
36
my %directory = (
33
my $modulesList = {
37
#                  '/proc/cpuinfo' => 0,
34
        'Data::Dumper'     => undef,
-
 
35
   };
-
 
36
 
-
 
37
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
-
 
38
# the full path (from which or where)
-
 
39
my $commandsList = {
38
                  '/proc/uptime' => 0,
40
         'free' => undef,
39
#                  '/tmp/rodolico' => 0
41
         'awk' => undef,
-
 
42
         'grep' => undef,
40
                );
43
         'tail' => undef,
-
 
44
         'uname' => undef,
-
 
45
   };
41
 
46
 
-
 
47
# list of operating systems this module can be used on.
-
 
48
my $osList = {
42
# check the file/directory exists
49
#         'mswin32' => undef,
43
foreach my $dir ( keys %directory ) {
50
#         'freebsd' => undef,
44
   $directory{$dir} =  1 if (-e $dir);
51
         'linux'   => undef,
45
}
52
   };
46
 
53
 
47
# category we will use for all values found
54
# the category the return data should go into. See sysinfo for a list
48
# see sysinfo for a list of valid categories
-
 
49
my $CATEGORY = 'system';
55
my $CATEGORY = 'system';
50
 
56
 
-
 
57
#####
-
 
58
##### End of required
-
 
59
#####
-
 
60
 
-
 
61
# some variables needed for our system
-
 
62
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
-
 
63
my @out; # temporary location for each line of output
-
 
64
 
-
 
65
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
-
 
66
for my $module ( keys %$modulesList ) {
-
 
67
   eval ( "use $module;" );
-
 
68
   push @out, "$errorPrepend Could not load $module" if $@;
-
 
69
}
51
 
70
 
52
# this is now done via dmidecode module
-
 
53
# make sure the commands will work before we run them.
-
 
54
#if ( $commands{'awk'} && $commands{'grep'} ) { # we need grep and awk for all these
71
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
55
#   print "$CATEGORY\tmemory\t" . &cleanUp('', qx(free | grep Mem | awk '{print \$2}')) . "\n" if $commands{'free'};
-
 
56
#   if ( $directory{'/proc/cpuinfo'} ) { # and we need /proc/cpuinfo file for these
72
    push @out, "$errorPrepend Invalid Operating System";
57
#      print "$CATEGORY\tnum_cpu\t" . &cleanUp('', qx(cat /proc/cpuinfo | grep processor | wc -l | awk '{print \$1}')) . "\n";
-
 
58
#      print "$CATEGORY\tcpu_speed\t" . &cleanUp('', qx(cat /proc/cpuinfo | grep MHz | tail -n1 | awk '{print \$4}')) . "\n";
-
 
59
#      print "$CATEGORY\tcpu_type\t" . &cleanUp('', qx(cat /proc/cpuinfo | grep vendor_id | tail -n 1 | awk '{print \$3}')) . "\n";
-
 
60
#   }
-
 
61
#}
73
}
62
# all this needs is uname
-
 
63
#print "$CATEGORY\tcpu_sub\t" . &cleanUp('', qx(uname -m)) . "\n" if $commands{'uname'};
-
 
64
 
-
 
65
# need /proc/uptime to get the uptime
-
 
66
if ( $directory{'/proc/uptime'} ) {
-
 
67
   my $uptime = qx(cat /proc/uptime);
-
 
68
   $uptime =~ m/(\d+)/;
-
 
69
   $uptime = int($1); # uptime now has the up time in seconds
74
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
70
   print "$CATEGORY\tlast_boot\t" . (time - $uptime) . "\n";
75
   push @out, "$errorPrepend Can not find some commands needed";
71
   print "$CATEGORY\tuptime\t" . $uptime . "\n";
-
 
72
}
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
   # need /proc/uptime to get the uptime
-
 
83
   if ( -e '/proc/uptime' ) {
-
 
84
      my $uptime = qx(cat /proc/uptime);
-
 
85
      $uptime =~ m/(\d+)/;
-
 
86
      $uptime = int($1); # uptime now has the up time in seconds
-
 
87
      push @out, "$CATEGORY\tlast_boot\t" . (time - $uptime);
-
 
88
      push @out, "$CATEGORY\tuptime\t" . $uptime;
-
 
89
   }
-
 
90
   #####
-
 
91
   ##### Your code ends here.
-
 
92
   #####
-
 
93
}
-
 
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 );
73
 
99
 
74
exit 0;
-