ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/statgrab.h
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/statgrab.h (file contents):
Revision 1.19 by pajs, Tue Jan 6 22:28:41 2004 UTC vs.
Revision 1.55 by tdb, Wed Jul 13 09:31:54 2005 UTC

# Line 1 | Line 1
1 < /*
2 < * i-scream central monitoring system
1 > /*
2 > * i-scream libstatgrab
3   * http://www.i-scream.org
4 < * Copyright (C) 2000-2003 i-scream
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.
6 > * This library is free software; you can redistribute it and/or
7 > * modify it under the terms of the GNU Lesser General Public
8 > * License as published by the Free Software Foundation; either
9 > * version 2.1 of the License, or (at your option) any later version.
10   *
11 < * This program is distributed in the hope that it will be useful,
11 > * This library 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.
13 > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 > * Lesser 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.
16 > * You should have received a copy of the GNU Lesser General Public
17 > * License along with this library; if not, write to the Free Software
18 > * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 > * 02111-1307 USA
20 > *
21 > * $Id$
22   */
23  
24 + #ifndef STATGRAB_H
25 + #define STATGRAB_H
26 +
27   #include <sys/types.h>
22 #ifdef NETBSD
23 #include <limits.h>
24 #endif
25 #ifdef CYGWIN
26 #include <sys/unistd.h>
27 #endif
28  
29 < typedef struct{
30 <        long long user;
31 <        long long kernel;
32 <        long long idle;
33 <        long long iowait;
34 <        long long swap;
35 <        long long nice;
36 <        long long total;
37 <        time_t systime;
38 < }cpu_states_t;
29 > /* FIXME typedefs for 32/64-bit types */
30 > /* FIXME maybe tidy up field names? */
31 > /* FIXME comments for less obvious fields */
32  
33 < typedef struct{
34 <        float user;
35 <        float kernel;
36 <        float idle;
37 <        float iowait;
38 <        float swap;
39 <        float nice;
33 > int sg_init(void);
34 > int sg_drop_privileges(void);
35 >
36 > typedef enum {
37 >        SG_ERROR_NONE = 0,
38 >        SG_ERROR_ASPRINTF,
39 >        SG_ERROR_DEVSTAT_GETDEVS,
40 >        SG_ERROR_DEVSTAT_SELECTDEVS,
41 >        SG_ERROR_ENOENT,
42 >        SG_ERROR_GETIFADDRS,
43 >        SG_ERROR_GETMNTINFO,
44 >        SG_ERROR_GETPAGESIZE,
45 >        SG_ERROR_KSTAT_DATA_LOOKUP,
46 >        SG_ERROR_KSTAT_LOOKUP,
47 >        SG_ERROR_KSTAT_OPEN,
48 >        SG_ERROR_KSTAT_READ,
49 >        SG_ERROR_KVM_GETSWAPINFO,
50 >        SG_ERROR_KVM_OPENFILES,
51 >        SG_ERROR_MALLOC,
52 >        SG_ERROR_OPEN,
53 >        SG_ERROR_OPENDIR,
54 >        SG_ERROR_PARSE,
55 >        SG_ERROR_SETEGID,
56 >        SG_ERROR_SETEUID,
57 >        SG_ERROR_SETMNTENT,
58 >        SG_ERROR_SOCKET,
59 >        SG_ERROR_SWAPCTL,
60 >        SG_ERROR_SYSCONF,
61 >        SG_ERROR_SYSCTL,
62 >        SG_ERROR_SYSCTLBYNAME,
63 >        SG_ERROR_SYSCTLNAMETOMIB,
64 >        SG_ERROR_UNAME,
65 >        SG_ERROR_UNSUPPORTED,
66 >        SG_ERROR_XSW_VER_MISMATCH,
67 >        SG_ERROR_PSTAT
68 > } sg_error;
69 >
70 > void sg_set_error(sg_error code, const char *arg);
71 > void sg_set_error_with_errno(sg_error code, const char *arg);
72 > sg_error sg_get_error();
73 > const char *sg_get_error_arg();
74 > int sg_get_error_errno();
75 > const char *sg_str_error(sg_error code);
76 >
77 > typedef struct {
78 >        char *os_name;
79 >        char *os_release;
80 >        char *os_version;
81 >        char *platform;
82 >        char *hostname;
83 >        time_t uptime;
84 > } sg_host_info;
85 >
86 > sg_host_info *sg_get_host_info();
87 >
88 > typedef struct {
89 >        long long user;
90 >        long long kernel;
91 >        long long idle;
92 >        long long iowait;
93 >        long long swap;
94 >        long long nice;
95 >        long long total;
96 >        time_t systime;
97 > } sg_cpu_stats;
98 >
99 > sg_cpu_stats *sg_get_cpu_stats();
100 > sg_cpu_stats *sg_get_cpu_stats_diff();
101 >
102 > typedef struct {
103 >        float user;
104 >        float kernel;
105 >        float idle;
106 >        float iowait;
107 >        float swap;
108 >        float nice;
109          time_t time_taken;
110 < }cpu_percent_t;
110 > } sg_cpu_percents;
111  
112 < typedef struct{
112 > sg_cpu_percents *sg_get_cpu_percents();
113 >
114 > typedef struct {
115          long long total;
116          long long free;
117          long long used;
118          long long cache;
119 < }mem_stat_t;
119 > } sg_mem_stats;
120  
121 < typedef struct{
121 > sg_mem_stats *sg_get_mem_stats();
122 >
123 > typedef struct {
124          double min1;
125          double min5;
126          double min15;
127 < }load_stat_t;
127 > } sg_load_stats;
128  
129 < typedef struct{
129 > sg_load_stats *sg_get_load_stats();
130 >
131 > typedef struct {
132          char *name_list;
133          int num_entries;
134 < }user_stat_t;
134 > } sg_user_stats;
135  
136 < typedef struct{
136 > sg_user_stats *sg_get_user_stats();
137 >
138 > typedef struct {
139          long long total;
140          long long used;
141          long long free;
142 < }swap_stat_t;
142 > } sg_swap_stats;
143  
144 < typedef struct{
75 <        char *os_name;
76 <        char *os_release;
77 <        char *os_version;
78 <        char *platform;
79 <        char *hostname;
80 <        time_t uptime;
81 < }general_stat_t;
144 > sg_swap_stats *sg_get_swap_stats();
145  
146   typedef struct {
147 <        char *device_name;
147 >        char *device_name;
148          char *fs_type;
149 <        char *mnt_point;
150 <        long long size;
151 <        long long used;
152 <        long long avail;
153 <        long long total_inodes;
149 >        char *mnt_point;
150 >        long long size;
151 >        long long used;
152 >        long long avail;
153 >        long long total_inodes;
154          long long used_inodes;
155 <        long long free_inodes;
156 < }disk_stat_t;
155 >        long long free_inodes;
156 > } sg_fs_stats;
157  
158 < typedef struct{
158 > sg_fs_stats *sg_get_fs_stats(int *entries);
159 >
160 > int sg_fs_compare_device_name(const void *va, const void *vb);
161 > int sg_fs_compare_mnt_point(const void *va, const void *vb);
162 >
163 > typedef struct {
164          char *disk_name;
165          long long read_bytes;
166          long long write_bytes;
167          time_t systime;
168 < }diskio_stat_t;
168 > } sg_disk_io_stats;
169  
170 < typedef struct{
171 <        int total;
104 <        int running;
105 <        int sleeping;
106 <        int stopped;
107 <        int zombie;
108 < }process_stat_t;
170 > sg_disk_io_stats *sg_get_disk_io_stats(int *entries);
171 > sg_disk_io_stats *sg_get_disk_io_stats_diff(int *entries);
172  
173 < typedef struct{
173 > int sg_disk_io_compare_name(const void *va, const void *vb);
174 >
175 > typedef struct {
176          char *interface_name;
177          long long tx;
178          long long rx;
179 +        long long ipackets;
180 +        long long opackets;
181 +        long long ierrors;
182 +        long long oerrors;
183 +        long long collisions;
184          time_t systime;
185 < }network_stat_t;
185 > } sg_network_io_stats;
186  
187 < typedef struct{
187 > sg_network_io_stats *sg_get_network_io_stats(int *entries);
188 > sg_network_io_stats *sg_get_network_io_stats_diff(int *entries);
189 >
190 > int sg_network_io_compare_name(const void *va, const void *vb);
191 >
192 > typedef enum {
193 >        SG_IFACE_DUPLEX_FULL,
194 >        SG_IFACE_DUPLEX_HALF,
195 >        SG_IFACE_DUPLEX_UNKNOWN
196 > } sg_iface_duplex;
197 >
198 > typedef struct {
199 >        char *interface_name;
200 >        int speed;      /* In megabits/sec */
201 >        sg_iface_duplex duplex;
202 > #ifdef SG_ENABLE_DEPRECATED
203 >        sg_iface_duplex dup;
204 > #endif
205 >        int up;
206 > } sg_network_iface_stats;
207 >
208 > sg_network_iface_stats *sg_get_network_iface_stats(int *entries);
209 >
210 > int sg_network_iface_compare_name(const void *va, const void *vb);
211 >
212 > typedef struct {
213          long long pages_pagein;
214          long long pages_pageout;
215          time_t systime;
216 < }page_stat_t;
216 > } sg_page_stats;
217  
218 < cpu_states_t *get_cpu_totals();
219 < cpu_states_t *get_cpu_diff();
125 < cpu_percent_t *cpu_percent_usage();
218 > sg_page_stats *sg_get_page_stats();
219 > sg_page_stats *sg_get_page_stats_diff();
220  
221 < mem_stat_t *get_memory_stats();
221 > typedef enum {
222 >        SG_PROCESS_STATE_RUNNING,
223 >        SG_PROCESS_STATE_SLEEPING,
224 >        SG_PROCESS_STATE_STOPPED,
225 >        SG_PROCESS_STATE_ZOMBIE,
226 >        SG_PROCESS_STATE_UNKNOWN
227 > } sg_process_state;
228  
229 < load_stat_t *get_load_stats();
229 > typedef struct {
230 >        char *process_name;
231 >        char *proctitle;
232  
233 < user_stat_t *get_user_stats();
233 >        pid_t pid;
234 >        pid_t parent; /* Parent pid */
235 >        pid_t pgid;   /* process id of process group leader */
236  
237 < swap_stat_t *get_swap_stats();
237 >        uid_t uid;
238 >        uid_t euid;
239 >        gid_t gid;
240 >        gid_t egid;
241  
242 < general_stat_t *get_general_stats();
242 >        unsigned long long proc_size; /* in bytes */
243 >        unsigned long long proc_resident; /* in bytes */
244 >        time_t time_spent; /* time running in seconds */
245 >        double cpu_percent;
246 >        int nice;
247 >        sg_process_state state;
248 > } sg_process_stats;
249  
250 < disk_stat_t *get_disk_stats(int *entries);
138 < diskio_stat_t *get_diskio_stats(int *entries);
139 < diskio_stat_t *get_diskio_stats_diff(int *entries);
250 > sg_process_stats *sg_get_process_stats(int *entries);
251  
252 < process_stat_t *get_process_stats();
252 > int sg_process_compare_name(const void *va, const void *vb);
253 > int sg_process_compare_pid(const void *va, const void *vb);
254 > int sg_process_compare_uid(const void *va, const void *vb);
255 > int sg_process_compare_gid(const void *va, const void *vb);
256 > int sg_process_compare_size(const void *va, const void *vb);
257 > int sg_process_compare_res(const void *va, const void *vb);
258 > int sg_process_compare_cpu(const void *va, const void *vb);
259 > int sg_process_compare_time(const void *va, const void *vb);
260  
261 < network_stat_t *get_network_stats(int *entries);
262 < network_stat_t *get_network_stats_diff(int *entries);
261 > typedef struct {
262 >        int total;
263 >        int running;
264 >        int sleeping;
265 >        int stopped;
266 >        int zombie;
267 > } sg_process_count;
268  
269 < page_stat_t *get_page_stats();
147 < page_stat_t *get_page_stats_diff();
269 > sg_process_count *sg_get_process_count();
270  
271 < int statgrab_init(void);
272 < int statgrab_drop_privileges(void);
271 > #ifdef SG_ENABLE_DEPRECATED
272 > #include <statgrab_deprecated.h>
273 > #endif
274  
275 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines