1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
#!/usr/bin/python
#
# Copyright (C) 2014 Red Hat.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# pylint: disable=C0103,R0914,R0902
""" Display amount of free and used memory in the system """
import sys
from pcp import pmapi
from cpmapi import PM_TYPE_U64, PM_CONTEXT_ARCHIVE, PM_SPACE_KBYTE
class Free(object):
""" Gives a short summary of kernel virtual memory information,
in a variety of formats, possibly sampling in a loop.
Knows about some of the default PCP arguments - can function
using remote hosts or historical data, using the timezone of
the metric source, at an offset within an archive, and so on.
"""
def __init__(self):
""" Construct object - prepare for command line handling """
self.count = 0 # number of samples to report
self.pause = None # time interval to pause between samples
self.shift = 10 # bitshift conversion between B/KB/MB/GB
self.show_high = 0
self.show_total = 0
self.show_compat = 0
self.opts = self.options()
self.interval = pmapi.timeval()
self.context = None
def options(self):
""" Setup default command line argument option handling """
opts = pmapi.pmOptions()
opts.pmSetOptionCallback(self.option)
opts.pmSetOverrideCallback(self.override)
opts.pmSetShortOptions("bc:gklmots:V?")
opts.pmSetLongOptionHeader("Options")
opts.pmSetLongOption("bytes", 0, 'b', '', "show output in bytes")
opts.pmSetLongOption("kilobytes", 0, 'k', '', "show output in KB")
opts.pmSetLongOption("megabytes", 0, 'm', '', "show output in MB")
opts.pmSetLongOption("gigabytes", 0, 'g', '', "show output in GB")
opts.pmSetLongOption("", 0, 'o', '',
"use old format (no -/+buffers/cache line)")
opts.pmSetLongOption("", 0, 'l', '',
"show detailed low and high memory statistics")
opts.pmSetLongOption("total", 0, 't', '',
"display total for RAM + swap")
opts.pmSetLongOption("samples", 1, 'c', "COUNT", "number of samples")
opts.pmSetLongOption("interval", 1, 's', "DELTA", "sampling interval")
opts.pmSetLongOptionVersion()
opts.pmSetLongOptionHelp()
return opts
def override(self, opt):
""" Override a few standard PCP options to match free(1) """
# pylint: disable=R0201
if (opt == 'g' or opt == 's' or opt == 't'):
return 1
return 0
def option(self, opt, optarg, index):
""" Perform setup for an individual command line option """
# pylint: disable=W0613
if opt == 'b':
self.shift = 0
elif opt == 'k':
self.shift = 10
elif opt == 'm':
self.shift = 20
elif opt == 'g':
self.shift = 30
elif opt == 'o':
self.show_compat = 1
elif opt == 'l':
self.show_high = 1
elif opt == 't':
self.show_total = 1
elif opt == 's':
self.pause = optarg
self.opts.pmSetOptionInterval(optarg)
self.interval = self.opts.pmGetOptionInterval()
elif opt == 'c':
self.opts.pmSetOptionSamples(optarg)
self.count = self.opts.pmGetOptionSamples()
def scale(self, value):
""" Convert a given value in kilobytes into display units """
return long(value << 10) >> self.shift
def extract(self, descs, result):
""" Extract the set of metric values from a given pmResult """
values = []
for index in range(len(descs)):
if result.contents.get_numval(index) > 0:
atom = self.context.pmExtractValue(
result.contents.get_valfmt(index),
result.contents.get_vlist(index, 0),
descs[index].contents.type, PM_TYPE_U64)
atom = self.context.pmConvScale(PM_TYPE_U64, atom, descs, index,
pmapi.pmUnits(1, 0, 0, PM_SPACE_KBYTE, 0, 0))
values.append(long(atom.ull))
else:
values.append(long(0))
return values
def execute(self):
""" Using a PMAPI context (could be either host or archive),
fetch and report a fixed set of values related to memory.
"""
metrics = ('mem.physmem',
'mem.util.free', 'mem.util.shared',
'mem.util.bufmem', 'mem.util.cached',
'mem.util.highFree', 'mem.util.highTotal',
'mem.util.lowFree', 'mem.util.lowTotal',
'mem.util.swapFree', 'mem.util.swapTotal')
pmids = self.context.pmLookupName(metrics)
descs = self.context.pmLookupDescs(pmids)
if self.pause == None and self.count == 0:
self.count = 1
if self.pause != None and self.count == 0:
self.count = -1
while self.count != 0:
result = self.context.pmFetch(pmids)
values = self.extract(descs, result)
self.context.pmFreeResult(result)
self.report(values)
if self.pause != None:
print('') # empty line
sys.stdout.flush()
if self.count > 0:
self.count -= 1
if self.count == 0:
break
if self.context.type != PM_CONTEXT_ARCHIVE:
self.context.pmtimevalSleep(self.interval)
elif self.count == 1 and self.pause == None:
break
elif self.count > 0:
self.count -= 1
def report(self, values):
""" Given the set of metric values report them in free(1) form """
physmem = values[0]
free = values[1]
shared = values[2]
buffers = values[3]
cached = values[4]
highfree = values[5]
hightotal = values[6]
lowfree = values[7]
lowtotal = values[8]
swapfree = values[9]
swaptotal = values[10]
used = physmem - free
swapused = swaptotal - swapfree
# low == main memory, except with large-memory support
if lowtotal == 0:
lowtotal = physmem
lowfree = free
columns = ('total', 'used', 'free', 'shared', 'buffers', 'cached')
print("%18s %10s %10s %10s %10s %10s" % columns)
print("%-7s %10Lu %10Lu %10Lu %10Lu %10Lu %10Lu" % ('Mem:',
self.scale(physmem), self.scale(used), self.scale(free),
self.scale(shared), self.scale(buffers), self.scale(cached)))
if self.show_high:
print("%-7s %10Lu %10Lu %10Lu" % ('Low:', self.scale(lowtotal),
self.scale(lowtotal - lowfree), self.scale(lowtotal)))
print("%-7s %10Lu %10Lu %10Lu" % ('High:', self.scale(hightotal),
self.scale(hightotal - highfree), self.scale(highfree)))
if self.show_compat != 1:
cache = buffers + cached
print("%s: %10Lu %10Lu" % ('-/+ buffers/cache',
self.scale(used - cache), self.scale(free + cache)))
print("%-7s %10Lu %10Lu %10Lu" % ('Swap', self.scale(swaptotal),
self.scale(swapused), self.scale(swapfree)))
if self.show_total == 1:
print("%-7s %10Lu %10Lu %10Lu" % ('Total',
self.scale(physmem + swaptotal),
self.scale(used + swapused), self.scale(free + swapfree)))
def connect(self):
""" Establish a PMAPI context to archive, host or local, via args """
self.context = pmapi.pmContext.fromOptions(self.opts, sys.argv)
if __name__ == '__main__':
try:
FREE = Free()
FREE.connect()
FREE.execute()
except pmapi.pmErr as error:
print("free:", error.message())
except pmapi.pmUsageErr as usage:
usage.message()
except KeyboardInterrupt:
pass
|