Subversion Repositories camp_sysinfo_client_3

Rev

Rev 256 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
56 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;  
4
 
256 rodolico 5
use version ; our $VERSION = 'v1.0.0';
56 rodolico 6
 
256 rodolico 7
# Template for modules to be used in sysinfo
56 rodolico 8
# Author: R. W. Rodolico
256 rodolico 9
# Date:   2017-11-24
10
#
56 rodolico 11
# gets information on ZFS partitions. Returns them as a hash
256 rodolico 12
#
13
# Revision History
14
#
15
#
56 rodolico 16
 
256 rodolico 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
56 rodolico 19
BEGIN {
251 rodolico 20
   use FindBin;
21
   use File::Spec;
256 rodolico 22
   # prepend the bin directory and its parent
23
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
24
   eval( 'use library;' );
25
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
56 rodolico 26
}
27
 
256 rodolico 28
#####
29
##### Change these to match your needs
30
#####
56 rodolico 31
 
256 rodolico 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
33
my $modulesList = {
34
        'Data::Dumper'     => undef,
35
   };
56 rodolico 36
 
256 rodolico 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 = {
40
        'zpool' => undef,
41
   };
42
 
43
# list of operating systems this module can be used on.
44
my $osList = {
45
#         'mswin32' => undef,
46
         'freebsd' => undef,
47
         'linux'   => undef,
48
   };
49
 
50
# the category the return data should go into. See sysinfo for a list
56 rodolico 51
my $CATEGORY = 'diskinfo';
52
 
256 rodolico 53
#####
54
##### End of required
55
#####
56
 
57
# some variables needed for our system
58
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
59
my @out; # temporary location for each line of output
60
 
61
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
62
for my $module ( keys %$modulesList ) {
63
   eval ( "use $module;" );
64
   push @out, "$errorPrepend Could not load $module" if $@;
65
}
66
 
67
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
68
    push @out, "$errorPrepend Invalid Operating System";
69
}
70
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
71
   push @out, "$errorPrepend Can not find some commands needed";
72
}
73
if ( !@out ) { # we made it, we have everything, so do the processing
74
   #####
75
   ##### Your code starts here. Remember to push all output onto @out
76
   #####
77
 
78
   sub zfsComponents {
79
      my $zpoolName = shift;
80
      my @lines = qx( zpool list -pHv $zpoolName );
81
      my @result;
82
      shift @lines; # we already have the first line of info
83
      my @temp = split( "\t", $lines[0] );
257 rodolico 84
      if ( $temp[1] =~ m/raid|mirror/ ) { # we are looking at a parity level, so add it
85
         push @result, "$CATEGORY\t$zpoolName\tlevel\t$temp[1]";
86
         shift @lines;
87
      } else {
88
         push @result, "$CATEGORY\t$zpoolName\tlevel\tdisk";
89
      }
256 rodolico 90
      my @out;
91
      while ( my $temp = shift @lines ) {
92
         @temp = split( "\t", $temp );
93
         push @out, $temp[1] if defined $temp[1];
94
      }
95
      push @result, "$CATEGORY\t$zpoolName\tcomponents\t" . join( " ", @out );
96
      return join( "\n", @result ) . "\n";
56 rodolico 97
   }
256 rodolico 98
 
99
   # process zfs
100
   my @devices = qx ( zpool list -pH );
101
   foreach my $device ( @devices ) {
102
      chomp $device;
103
      my ( $name, $size, $allocated, $free, $expandsz, $frag, $cap, $dedup, $health, $altroot ) = split( "\t", $device );
104
      $size /= 1024;
105
      $allocated /= 1024;
106
      $allocated = int( $allocated );
107
      push @out,  "$CATEGORY\t$name\tfstype\tzfs"; # next is fs type
108
      push @out,  "$CATEGORY\t$name\tsize\t$size"; # total partition size, in k
109
      push @out,  "$CATEGORY\t$name\tused\t$allocated"; # disk usage, in k
257 rodolico 110
      push @out,  &zfsComponents( $name );
256 rodolico 111
   } # foreach
112
 
113
   #####
114
   ##### Your code ends here.
115
   #####
56 rodolico 116
}
117
 
256 rodolico 118
# If we are testing from the command line (caller is undef), print the results for debugging
119
print join( "\n", @out ) . "\n" unless caller;
120
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
121
my $return = join( "\n", @out );
251 rodolico 122