NAME
Unix::Statgrab::sg_user_stats - container for libstatgrab user-login collection
DESCRIPTION
Unix::Statgrab::sg_user_stats
is a Perl package name providing accessors to bundled libstatgrab sg_user_stats disk I/O statistics.
METHODS
nentries
Returns the number of entries in the container.
systime
Returns the seconds since Epoch (0:00:00 on January, 1st 1970) of the time measure the disk I/O statistics.
as_list
Deprecated alias of "fetchall_hash"
fetchall_hash
Returns all records from sg_user_stats container as list of hash containing each datum name as key and the datum as value.
fetchall_array
Returns all records from sg_user_stats container as list of arrays containing the values in following order:
(login_name record_id record_id_size device hostname pid login_time systime)
in that order without leading headline.
fetchall_table
Returns all records from sg_user_stats container as list of arrays containing the values in following order:
(login_name record_id record_id_size device hostname pid login_time systime)
in that order including leading headline.
fetchrow_arrayref($row = 0)
Returns one row as array containing values as above.
fetchall_arrayref
Returns all records from sg_user_stats container as array of arrays without header.
fetchrow_hashref($row = 0)
Returns one row as hash containing { disk_name => $self.disk_name($row), read_bytes => ...}
.
fetchall_hashref
Returns all records from sg_user_stats container as array of hashes.
colnames
Returns list of column names: (login_name record_id record_id_size device hostname pid login_time systime)
login_name
The username which was used to log in
record_id
Record identifier of host database containing login information
device
Device name (e.g. "pts/0") of the tty assigned to the login session
hostname
(remote) Hostname from where the user is logged on, e.g. "infoterm7.some.kind.of.domain.local", "localhost", "10.42.17.4" or ":0.0" (in case it's a local logon via new xterm)
pid
Process identifier of the process which made the entry to the logged on users database
login_time
Timestamp (time in seconds since epoch) when the user logged on
AUTHOR
Jens Rehsack, <rehsack AT cpan.org>
COPYRIGHT AND LICENSE
Copyright (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.