2 * Unix SMB/CIFS implementation.
3 * Performance Counter Daemon
5 * Copyright (C) Marcin Krzysztof Porwit 2005
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 void get_meminfo(PERF_DATA_BLOCK
*data
)
28 status
= sysinfo(&info
);
30 data
->memInfo
.data
->availPhysKb
= (info
.freeram
* info
.mem_unit
)/1024;
31 data
->memInfo
.data
->availSwapKb
= (info
.freeswap
* info
.mem_unit
)/1024;
32 data
->memInfo
.data
->totalPhysKb
= (info
.totalram
* info
.mem_unit
)/1024;
33 data
->memInfo
.data
->totalSwapKb
= (info
.totalswap
* info
.mem_unit
)/1024;
35 /* Also get uptime since we have the structure */
36 data
->PerfTime
= (unsigned long)info
.uptime
;
41 void init_memdata_desc(PERF_DATA_BLOCK
*data
)
43 init_perf_counter(&(data
->memInfo
.memObjDesc
),
44 &(data
->memInfo
.memObjDesc
),
47 "The Memory performance object consists of counters that describe the behavior of physical and virtual memory on the computer.",
50 init_perf_counter(&(data
->memInfo
.availPhysKb
),
51 &(data
->memInfo
.memObjDesc
),
53 "Available Physical Kilobytes",
54 "Available Physical Kilobytes is the number of free kilobytes in physical memory",
55 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_DISPLAY_NO_SUFFIX
,
57 init_perf_counter(&(data
->memInfo
.availSwapKb
),
58 &(data
->memInfo
.memObjDesc
),
60 "Available Swap Kilobytes",
61 "Available Swap Kilobytes is the number of free kilobytes in swap space",
62 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_DISPLAY_NO_SUFFIX
,
64 init_perf_counter(&(data
->memInfo
.totalPhysKb
),
65 &(data
->memInfo
.memObjDesc
),
67 "Total Physical Kilobytes",
68 "Total Physical Kilobytes is a base counter",
69 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_COUNTER_BASE
| PERF_DISPLAY_NOSHOW
,
71 init_perf_counter(&(data
->memInfo
.totalSwapKb
),
72 &(data
->memInfo
.memObjDesc
),
74 "Total Swap Kilobytes",
75 "Total Swap Kilobytes is a base counter",
76 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_COUNTER_BASE
| PERF_DISPLAY_NOSHOW
,
82 void init_mem_data(PERF_DATA_BLOCK
*data
)
84 data
->memInfo
.data
= calloc(1, sizeof(*data
->memInfo
.data
));
85 if(!data
->memInfo
.data
)
87 perror("init_memdata: out of memory");
91 init_memdata_desc(data
);
98 void output_mem_desc(PERF_DATA_BLOCK
*data
, RuntimeSettings rt
)
100 output_perf_desc(data
->memInfo
.memObjDesc
, rt
);
101 output_perf_desc(data
->memInfo
.availPhysKb
, rt
);
102 output_perf_desc(data
->memInfo
.availSwapKb
, rt
);
103 output_perf_desc(data
->memInfo
.totalPhysKb
, rt
);
104 output_perf_desc(data
->memInfo
.totalSwapKb
, rt
);
109 void output_meminfo(PERF_DATA_BLOCK
*data
, RuntimeSettings rt
, int tdb_flags
)
111 output_perf_counter(data
->memInfo
.availPhysKb
,
112 (unsigned long long)data
->memInfo
.data
->availPhysKb
,
114 output_perf_counter(data
->memInfo
.availSwapKb
,
115 (unsigned long long)data
->memInfo
.data
->availSwapKb
,
117 output_perf_counter(data
->memInfo
.totalPhysKb
,
118 (unsigned long long)data
->memInfo
.data
->totalPhysKb
,
120 output_perf_counter(data
->memInfo
.totalSwapKb
,
121 (unsigned long long)data
->memInfo
.data
->totalSwapKb
,