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 3 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, see <http://www.gnu.org/licenses/>.
23 void get_meminfo(PERF_DATA_BLOCK
*data
)
27 status
= sysinfo(&info
);
29 data
->memInfo
.data
->availPhysKb
= (info
.freeram
* info
.mem_unit
)/1024;
30 data
->memInfo
.data
->availSwapKb
= (info
.freeswap
* info
.mem_unit
)/1024;
31 data
->memInfo
.data
->totalPhysKb
= (info
.totalram
* info
.mem_unit
)/1024;
32 data
->memInfo
.data
->totalSwapKb
= (info
.totalswap
* info
.mem_unit
)/1024;
34 /* Also get uptime since we have the structure */
35 data
->PerfTime
= (unsigned long)info
.uptime
;
40 void init_memdata_desc(PERF_DATA_BLOCK
*data
)
42 init_perf_counter(&(data
->memInfo
.memObjDesc
),
43 &(data
->memInfo
.memObjDesc
),
46 "The Memory performance object consists of counters that describe the behavior of physical and virtual memory on the computer.",
49 init_perf_counter(&(data
->memInfo
.availPhysKb
),
50 &(data
->memInfo
.memObjDesc
),
52 "Available Physical Kilobytes",
53 "Available Physical Kilobytes is the number of free kilobytes in physical memory",
54 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_DISPLAY_NO_SUFFIX
,
56 init_perf_counter(&(data
->memInfo
.availSwapKb
),
57 &(data
->memInfo
.memObjDesc
),
59 "Available Swap Kilobytes",
60 "Available Swap Kilobytes is the number of free kilobytes in swap space",
61 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_DISPLAY_NO_SUFFIX
,
63 init_perf_counter(&(data
->memInfo
.totalPhysKb
),
64 &(data
->memInfo
.memObjDesc
),
66 "Total Physical Kilobytes",
67 "Total Physical Kilobytes is a base counter",
68 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_COUNTER_BASE
| PERF_DISPLAY_NOSHOW
,
70 init_perf_counter(&(data
->memInfo
.totalSwapKb
),
71 &(data
->memInfo
.memObjDesc
),
73 "Total Swap Kilobytes",
74 "Total Swap Kilobytes is a base counter",
75 PERF_SIZE_DWORD
| PERF_TYPE_NUMBER
| PERF_NUMBER_DECIMAL
| PERF_COUNTER_BASE
| PERF_DISPLAY_NOSHOW
,
81 void init_mem_data(PERF_DATA_BLOCK
*data
)
83 data
->memInfo
.data
= calloc(1, sizeof(*data
->memInfo
.data
));
84 if(!data
->memInfo
.data
)
86 perror("init_memdata: out of memory");
90 init_memdata_desc(data
);
97 void output_mem_desc(PERF_DATA_BLOCK
*data
, RuntimeSettings rt
)
99 output_perf_desc(data
->memInfo
.memObjDesc
, rt
);
100 output_perf_desc(data
->memInfo
.availPhysKb
, rt
);
101 output_perf_desc(data
->memInfo
.availSwapKb
, rt
);
102 output_perf_desc(data
->memInfo
.totalPhysKb
, rt
);
103 output_perf_desc(data
->memInfo
.totalSwapKb
, rt
);
108 void output_meminfo(PERF_DATA_BLOCK
*data
, RuntimeSettings rt
, int tdb_flags
)
110 output_perf_counter(data
->memInfo
.availPhysKb
,
111 (unsigned long long)data
->memInfo
.data
->availPhysKb
,
113 output_perf_counter(data
->memInfo
.availSwapKb
,
114 (unsigned long long)data
->memInfo
.data
->availSwapKb
,
116 output_perf_counter(data
->memInfo
.totalPhysKb
,
117 (unsigned long long)data
->memInfo
.data
->totalPhysKb
,
119 output_perf_counter(data
->memInfo
.totalSwapKb
,
120 (unsigned long long)data
->memInfo
.data
->totalSwapKb
,