2004-06-22 06:37:04 +08:00
|
|
|
#!/usr/bin/perl
|
2010-04-29 05:57:11 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004 Hyperic, Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use Sigar;
|
|
|
|
|
|
|
|
my $sigar = new Sigar;
|
|
|
|
|
|
|
|
my $fslist = $sigar->file_system_list;
|
|
|
|
|
2004-09-19 02:02:54 +08:00
|
|
|
print "Filesystem\tSize\tUsed\tAvail\tUse%\tMounted on\tType\n";
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
for my $fs (@$fslist) {
|
|
|
|
my $dirname = $fs->dir_name;
|
2004-09-18 02:15:36 +08:00
|
|
|
my $usage;
|
|
|
|
|
|
|
|
#e.g. on win32 D:\ fails with "Device not ready"
|
|
|
|
#if there is no cd in the drive.
|
|
|
|
eval {
|
|
|
|
$usage = $sigar->file_system_usage($dirname);
|
|
|
|
} or next;
|
2004-06-22 06:37:04 +08:00
|
|
|
|
|
|
|
my $total = $usage->total;
|
|
|
|
my $used = $total - $usage->free;
|
|
|
|
my $avail = $usage->avail;
|
|
|
|
my $pct = $usage->use_percent * 100;
|
|
|
|
my $usePct;
|
|
|
|
|
|
|
|
if ($pct == 0) {
|
|
|
|
$usePct = "-"
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$usePct = $pct . '%';
|
|
|
|
}
|
|
|
|
|
|
|
|
print
|
|
|
|
$fs->dev_name . "\t" .
|
2004-09-19 02:02:54 +08:00
|
|
|
format_size($total) . "\t" .
|
|
|
|
format_size($used) . "\t" .
|
|
|
|
format_size($avail) . "\t" .
|
2004-06-22 06:37:04 +08:00
|
|
|
$usePct . "\t" .
|
|
|
|
$dirname . "\t" .
|
|
|
|
$fs->sys_type_name . "/" . $fs->type_name . "\n";
|
|
|
|
|
|
|
|
}
|
2004-09-19 02:02:54 +08:00
|
|
|
|
|
|
|
sub format_size {
|
|
|
|
my($size) = @_;
|
|
|
|
return Sigar::format_size($size * 1024);
|
|
|
|
}
|