ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/pystatgrab/statgrab.py
Revision: 1.2
Committed: Sat Mar 20 21:34:46 2004 UTC (20 years, 1 month ago) by tdb
Content type: text/x-python
Branch: MAIN
CVS Tags: PYSTATGRAB_0_1
Changes since 1.1: +5 -1 lines
Log Message:
Add duplex globals.

File Contents

# Content
1 #
2 # i-scream central monitoring system
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.1 2004/03/20 21:29:59 tdb Exp $
21 #
22
23 import _statgrab
24
25 def get_cpu_totals():
26 return _statgrab.py_get_cpu_totals()
27 def get_cpu_diff():
28 return _statgrab.py_get_cpu_diff()
29 def cpu_percent_usage():
30 return _statgrab.py_cpu_percent_usage()
31 def get_memory_stats():
32 return _statgrab.py_get_memory_stats()
33 def get_load_stats():
34 return _statgrab.py_get_load_stats()
35 def get_user_stats():
36 return _statgrab.py_get_user_stats()
37 def get_swap_stats():
38 return _statgrab.py_get_swap_stats()
39 def get_general_stats():
40 return _statgrab.py_get_general_stats()
41 def get_disk_stats():
42 return _statgrab.py_get_disk_stats()
43 def get_diskio_stats():
44 return _statgrab.py_get_diskio_stats()
45 def get_diskio_stats_diff():
46 return _statgrab.py_get_diskio_stats_diff()
47 def get_process_stats():
48 return _statgrab.py_get_process_stats()
49 def get_network_stats():
50 return _statgrab.py_get_network_stats()
51 def get_network_stats_diff():
52 return _statgrab.py_get_network_stats_diff()
53 def get_network_iface_stats():
54 return _statgrab.py_get_network_iface_stats()
55 def get_page_stats():
56 return _statgrab.py_get_page_stats()
57 def get_page_stats_diff():
58 return _statgrab.py_get_page_stats_diff()
59 def statgrab_init():
60 return _statgrab.py_statgrab_init()
61 def statgrab_drop_privileges():
62 return _statgrab.py_statgrab_drop_privileges()
63
64 FULL_DUPLEX = _statgrab.py_FULL_DUPLEX
65 HALF_DUPLEX = _statgrab.py_HALF_DUPLEX
66 UNKNOWN_DUPLEX = _statgrab.py_UNKNOWN_DUPLEX