Rev 197 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/usr/bin/env perl
use warnings;
use strict;
# Description: Disk usage for BSD Unix systems
our $VERSION = '1.3';
# BSD disks module for sysinfo client
# Author: R. W. Rodolico
# Date: 2017-11-24
# gets information on disks. Returns them as a hash
# uses standard df -kT and parses the output
# skips anything that does not have a device with /dev in it
# assumes the structure of the output is:
# device fstype size usedSpace availableSpace percentSpace mountPoint
# however, the output can sometimes wrap to multi lines, especially if the
# device is long. So, we will replace all newlines with spaces, then
# remove space duplications, then split on spaces and process each item in
# turn.
# NOTE: this will totally break if you have spaces in your mount point
#
# v1.3 20180424 RWR
# Fixed bug when diskinfo generates an error. Will still send error
# to STDERR, but will not break program.
# find our location and use it for searching for libraries
BEGIN {
use FindBin;
use File::Spec;
use lib File::Spec->catdir($FindBin::Bin);
eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
eval( 'use Data::Dumper;' );
}
# check for valid OS.
exit 1 unless &checkOS( { 'freebsd' => undef } );
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
# script returns a 2
foreach my $command ( 'sysctl' ) {
exit 2 unless &validCommandOnSystem( $command );
}
my $temp;
my $device;
my @temp;
my $CATEGORY = 'diskinfo';
$temp = getSysctlParameter( 'sysctl', 'kern.disks' );
my @disks = split( /\s+/, $temp );
foreach $device ( @disks ) {
next unless eval { $temp = qx( diskinfo $device ); };
chomp $temp;
my @info = split( /\s+/, $temp );
$temp = $info[2] / 1024;
print "$CATEGORY\t/dev/$device\tsize\t$temp\n";
}