![]() |
![]()
| ![]() |
![]()
NAMEUnix::Statgrab::sg_fs_stats - container for libstatgrab filesystem statistics DESCRIPTION"Unix::Statgrab::sg_fs_stats" is a Perl package name providing accessors to bundled libstatgrab sg_fs_stats <http://www.i-scream.org/libstatgrab/docs/sg_get_fs_stats.3.html> filesystem statistics. METHODSnentriesReturns the number of entries in the container. systimeReturns the seconds since Epoch (0:00:00 on January, 1st 1970) of the time measure the filesystem statistics. as_listDeprecated alias of "fetchall_hash" fetchall_hashReturns all records from sg_fs_stats <http://www.i-scream.org/libstatgrab/docs/sg_get_fs_stats.3.html> container as list of hash containing each datum name as key and the datum as value. fetchall_arrayReturns all records from sg_fs_stats <http://www.i-scream.org/libstatgrab/docs/sg_get_fs_stats.3.html> container as list of arrays containing the values in following order: (device_name fs_type mnt_point device_type size used free avail total_inodes used_inodes free_inodes avail_inodes io_size block_size total_blocks used_blocks free_blocks avail_blocks systime) in that order without leading headline. fetchall_tableReturns all records from sg_fs_stats <http://www.i-scream.org/libstatgrab/docs/sg_get_fs_stats.3.html> container as list of arrays containing the values in following order: (device_name fs_type mnt_point device_type size used free avail total_inodes used_inodes free_inodes avail_inodes io_size block_size total_blocks used_blocks free_blocks avail_blocks systime) in that order including leading headline. fetchrow_arrayref($row = 0)Returns one row as array containing values as above. fetchall_arrayrefReturns all records from sg_fs_stats <http://www.i-scream.org/libstatgrab/docs/sg_get_fs_stats.3.html> container as array of arrays without header. fetchrow_hashref($row = 0)Returns one row as hash containing "{ device_name => $self.device_name($row), fs_type => ... }". fetchall_hashrefReturns all records from sg_fs_stats <http://www.i-scream.org/libstatgrab/docs/sg_get_fs_stats.3.html> container as array of hashes. colnamesReturns list of column names: "(device_name fs_type mnt_point device_type size used free avail total_inodes used_inodes free_inodes avail_inodes io_size block_size total_blocks used_blocks free_blocks avail_blocks systime)" device_nameName of the device the filesystem statistics belong to device_canonicalCanonical name of the device the filesystem statistics belong to fs_typeFilesystem type (as string), e.g. "zfs" mnt_pointPath name of mount point for the file system device_typeBitwise combination of "sg_fs_regular sg_fs_special sg_fs_loopback sg_fs_remote", usually one of sizeSize of filesystem, in bytes usedUsed bytes of filesystem freeFree bytes in filesystem availAvailable bytes in filesystem (free - reserved) total_inodesTotal number of inodes in filesystem used_inodesUsed number of inodes in filesystem free_inodesFree number of inodes in filesystem avail_inodesAvailable inodes in filesystem (free - reserved) io_sizeOptimal size for I/O for this filesystem in bytes block_sizeSize of blocks in bytes total_blocksTotal number of blocks in filesystem used_blocksUsed number of blocks in filesystem free_blocksFree number of blocks in filesystem avail_blocksAvailable blocks in filesystem (free - reserved) get_fs_stats_diffProvides the difference between the last measurement and the recent one. $recent->get_fs_stats_diff($last); CONSTANTSsg_fs_unknown sg_fs_regular sg_fs_special sg_fs_loopback sg_fs_remote sg_fs_local sg_fs_alltypes AUTHORJens Rehsack, <rehsack AT cpan.org> COPYRIGHT AND LICENSECopyright (C) 2012-2018 by Jens Rehsack This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
|