| 1 |
# |
| 2 |
# i-scream pystatgrab |
| 3 |
# http://www.i-scream.org |
| 4 |
# Copyright (C) 2000-2004 i-scream |
| 5 |
# |
| 6 |
# This program is free software; you can redistribute it and/or |
| 7 |
# modify it under the terms of the GNU General Public License |
| 8 |
# as published by the Free Software Foundation; either version 2 |
| 9 |
# of the License, or (at your option) any later version. |
| 10 |
# |
| 11 |
# This program is distributed in the hope that it will be useful, |
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 |
# GNU General Public License for more details. |
| 15 |
# |
| 16 |
# You should have received a copy of the GNU General Public License |
| 17 |
# along with this program; if not, write to the Free Software |
| 18 |
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 |
# |
| 20 |
# $Id: statgrab.py,v 1.3 2004/04/06 14:53:01 tdb Exp $ |
| 21 |
# |
| 22 |
|
| 23 |
import _statgrab |
| 24 |
|
| 25 |
def sg_get_cpu_stats(): |
| 26 |
return _statgrab.py_sg_get_cpu_stats() |
| 27 |
def sg_get_cpu_stats_diff(): |
| 28 |
return _statgrab.py_sg_get_cpu_stats_diff() |
| 29 |
def sg_get_cpu_percents(): |
| 30 |
return _statgrab.py_sg_get_cpu_percents() |
| 31 |
def sg_get_mem_stats(): |
| 32 |
return _statgrab.py_sg_get_mem_stats() |
| 33 |
def sg_get_load_stats(): |
| 34 |
return _statgrab.py_sg_get_load_stats() |
| 35 |
def sg_get_user_stats(): |
| 36 |
return _statgrab.py_sg_get_user_stats() |
| 37 |
def sg_get_swap_stats(): |
| 38 |
return _statgrab.py_sg_get_swap_stats() |
| 39 |
def sg_get_host_info(): |
| 40 |
return _statgrab.py_sg_get_host_info() |
| 41 |
def sg_get_fs_stats(): |
| 42 |
return _statgrab.py_sg_get_fs_stats() |
| 43 |
def sg_get_disk_io_stats(): |
| 44 |
return _statgrab.py_sg_get_disk_io_stats() |
| 45 |
def sg_get_disk_io_stats_diff(): |
| 46 |
return _statgrab.py_sg_get_disk_io_stats_diff() |
| 47 |
def sg_get_process_count(): |
| 48 |
return _statgrab.py_sg_get_process_count() |
| 49 |
def sg_get_network_io_stats(): |
| 50 |
return _statgrab.py_sg_get_network_io_stats() |
| 51 |
def sg_get_network_io_stats_diff(): |
| 52 |
return _statgrab.py_sg_get_network_io_stats_diff() |
| 53 |
def sg_get_network_iface_stats(): |
| 54 |
return _statgrab.py_sg_get_network_iface_stats() |
| 55 |
def sg_get_page_stats(): |
| 56 |
return _statgrab.py_sg_get_page_stats() |
| 57 |
def sg_get_page_stats_diff(): |
| 58 |
return _statgrab.py_sg_get_page_stats_diff() |
| 59 |
def sg_init(): |
| 60 |
return _statgrab.py_sg_init() |
| 61 |
def sg_drop_privileges(): |
| 62 |
return _statgrab.py_sg_drop_privileges() |
| 63 |
|
| 64 |
SG_IFACE_DUPLEX_FULL = _statgrab.py_SG_IFACE_DUPLEX_FULL |
| 65 |
SG_IFACE_DUPLEX_HALF = _statgrab.py_SG_IFACE_DUPLEX_HALF |
| 66 |
SG_IFACE_DUPLEX_UNKNOWN = _statgrab.py_SG_IFACE_DUPLEX_UNKNOWN |