Subversion Repositories camp_sysinfo_client_3

Rev

Rev 87 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
58 rodolico 1
#!/usr/bin/env perl
2
use warnings;
251 rodolico 3
use strict;
58 rodolico 4
 
251 rodolico 5
use Data::Dumper;
6
 
58 rodolico 7
# Description: get information on md (RAID)
8
 
9
our $VERSION = '1.0';
10
 
11
# Linux MD (RAID)
12
# Author: R. W. Rodolico
13
# Date:  2017-11-24
14
 
15
# get some information on RAID arrays covered by mdadm
16
 
17
BEGIN {
251 rodolico 18
   use FindBin;
19
   use File::Spec;
20
   use lib File::Spec->catdir($FindBin::Bin);
21
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
22
   eval( 'use Data::Dumper;' );
58 rodolico 23
}
24
 
251 rodolico 25
# check for valid OS. 
26
exit 1 unless &checkOS( { 'linux' => undef } );
58 rodolico 27
 
251 rodolico 28
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
29
# script returns a 2
30
foreach my $command ( 'mdadm', 'fdisk' ) {
31
   exit 2 unless &validCommandOnSystem( $command );
32
}
33
 
58 rodolico 34
# category we will use for all values found
35
# see sysinfo for a list of valid categories
36
my $CATEGORY = 'diskinfo';
37
 
38
# run the commands necessary to do whatever you want to do
39
# The library entered above has some helper routines
40
# validCommandOnSystem -- passed a name, returns the fully qualified path or '' if it does not exist
41
# cleanUp - passed a delimiter and a string, does the following (delimiter can be '')
42
#           chomps the string (removes trailing newlines)
43
#           removes all text BEFORE the delimiter, the delimiter, and any whitespace
44
#           thus, the string 'xxI Am x  a weird string' with a newline will become
45
#           'a weird string' with no newline
46
 
47
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
48
# item, name as recognized by sysinfo is the second and the value is
49
# the last one. For multiple entries, place on separate lines (ie, newline separated)
50
 
51
 
52
exit 1 unless -e '/proc/mdstat';
53
 
54
open MD,'</proc/mdstat' or exit 1;
55
my @temp = <MD>;
56
close MD;
57
 
58
my @results;
59
 
60
while ( my $line = shift @temp ) {
61
   chomp $line;
62
   if ( $line =~ m/^(md\d+)\s+:\s+(.*)$/ ) {
63
      my $device = $1;
64
      my @components = split( /\s+/, $2 );
65
      shift @components;
66
      push @results, "$CATEGORY\t$device\tlevel\t" . shift(@components);
67
      push @results, "$CATEGORY\t$device\tcomponents\t" . join( " ", @components );
251 rodolico 68
      my $temp = qx( mdadm --detail /dev/$device | grep 'Array Size' | cut -d':' -f2 | cut -d' ' -f2 );
58 rodolico 69
      chomp $temp;
70
      push @results, "$CATEGORY\t$device\tsize\t$temp";
71
   }
72
}
73
 
74
print join( "\n", @results ) . "\n";
75
 
76
exit 0;
77