Modified arcstat.py to run on linux
[zfs.git] / cmd / arcstat / arcstat.py
1 #!/usr/bin/python
2 #
3 # Print out ZFS ARC Statistics exported via kstat(1)
4 # For a definition of fields, or usage, use arctstat.pl -v
5 #
6 # This script is a fork of the original arcstat.pl (0.1) by
7 # Neelakanth Nadgir, originally published on his Sun blog on
8 # 09/18/2007
9 #     http://blogs.sun.com/realneel/entry/zfs_arc_statistics
10 #
11 # This version aims to improve upon the original by adding features
12 # and fixing bugs as needed.  This version is maintained by
13 # Mike Harsch and is hosted in a public open source repository:
14 #    http://github.com/mharsch/arcstat
15 #
16 # Comments, Questions, or Suggestions are always welcome.
17 # Contact the maintainer at ( mike at harschsystems dot com )
18 #
19 # CDDL HEADER START
20 #
21 # The contents of this file are subject to the terms of the
22 # Common Development and Distribution License, Version 1.0 only
23 # (the "License").  You may not use this file except in compliance
24 # with the License.
25 #
26 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
27 # or http://www.opensolaris.org/os/licensing.
28 # See the License for the specific language governing permissions
29 # and limitations under the License.
30 #
31 # When distributing Covered Code, include this CDDL HEADER in each
32 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
33 # If applicable, add the following below this CDDL HEADER, with the
34 # fields enclosed by brackets "[]" replaced with your own identifying
35 # information: Portions Copyright [yyyy] [name of copyright owner]
36 #
37 # CDDL HEADER END
38 #
39 #
40 # Fields have a fixed width. Every interval, we fill the "v"
41 # hash with its corresponding value (v[field]=value) using calculate().
42 # @hdr is the array of fields that needs to be printed, so we
43 # just iterate over this array and print the values using our pretty printer.
44 #
45
46
47 import sys
48 import time
49 import getopt
50 import re
51 import copy
52
53 from decimal import Decimal
54 from signal import signal, SIGINT
55
56 cols = {
57     # HDR:        [Size, Scale, Description]
58     "time":       [8, -1, "Time"],
59     "hits":       [4, 1000, "ARC reads per second"],
60     "miss":       [4, 1000, "ARC misses per second"],
61     "read":       [4, 1000, "Total ARC accesses per second"],
62     "hit%":       [4, 100, "ARC Hit percentage"],
63     "miss%":      [5, 100, "ARC miss percentage"],
64     "dhit":       [4, 1000, "Demand Data hits per second"],
65     "dmis":       [4, 1000, "Demand Data misses per second"],
66     "dh%":        [3, 100, "Demand Data hit percentage"],
67     "dm%":        [3, 100, "Demand Data miss percentage"],
68     "phit":       [4, 1000, "Prefetch hits per second"],
69     "pmis":       [4, 1000, "Prefetch misses per second"],
70     "ph%":        [3, 100, "Prefetch hits percentage"],
71     "pm%":        [3, 100, "Prefetch miss percentage"],
72     "mhit":       [4, 1000, "Metadata hits per second"],
73     "mmis":       [4, 1000, "Metadata misses per second"],
74     "mread":      [4, 1000, "Metadata accesses per second"],
75     "mh%":        [3, 100, "Metadata hit percentage"],
76     "mm%":        [3, 100, "Metadata miss percentage"],
77     "arcsz":      [5, 1024, "ARC Size"],
78     "c":          [4, 1024, "ARC Target Size"],
79     "mfu":        [4, 1000, "MFU List hits per second"],
80     "mru":        [4, 1000, "MRU List hits per second"],
81     "mfug":       [4, 1000, "MFU Ghost List hits per second"],
82     "mrug":       [4, 1000, "MRU Ghost List hits per second"],
83     "eskip":      [5, 1000, "evict_skip per second"],
84     "mtxmis":     [6, 1000, "mutex_miss per second"],
85     "rmis":       [4, 1000, "recycle_miss per second"],
86     "dread":      [5, 1000, "Demand data accesses per second"],
87     "pread":      [5, 1000, "Prefetch accesses per second"],
88     "l2hits":     [6, 1000, "L2ARC hits per second"],
89     "l2miss":     [6, 1000, "L2ARC misses per second"],
90     "l2read":     [6, 1000, "Total L2ARC accesses per second"],
91     "l2hit%":     [6, 100, "L2ARC access hit percentage"],
92     "l2miss%":    [7, 100, "L2ARC access miss percentage"],
93     "l2size":     [6, 1024, "Size of the L2ARC"],
94     "l2bytes":    [7, 1024, "bytes read per second from the L2ARC"],
95 }
96
97 v = {}
98 hdr = ["time", "read", "miss", "miss%", "dmis", "dm%", "pmis", "pm%", "mmis",
99     "mm%", "arcsz", "c"]
100 xhdr = ["time", "mfu", "mru", "mfug", "mrug", "eskip", "mtxmis", "rmis",
101     "dread", "pread", "read"]
102 sint = 1               # Default interval is 1 second
103 count = 1              # Default count is 1
104 hdr_intr = 20          # Print header every 20 lines of output
105 opfile = None
106 sep = "  "              # Default separator is 2 spaces
107 version = "0.4"
108 l2exist = False
109 cmd = ("Usage: arcstat [-hvx] [-f fields] [-o file] [-s string] [interval "
110     "[count]]\n")
111 cur = {}
112 d = {}
113 out = None
114 kstat = None
115 float_pobj = re.compile("^[0-9]+(\.[0-9]+)?$")
116
117
118 def detailed_usage():
119     sys.stderr.write("%s\n" % cmd)
120     sys.stderr.write("Field definitions are as follows:\n")
121     for key in cols:
122         sys.stderr.write("%11s : %s\n" % (key, cols[key][2]))
123     sys.stderr.write("\n")
124
125     sys.exit(1)
126
127
128 def usage():
129     sys.stderr.write("%s\n" % cmd)
130     sys.stderr.write("\t -h : Print this help message\n")
131     sys.stderr.write("\t -v : List all possible field headers and definitions"
132         "\n")
133     sys.stderr.write("\t -x : Print extended stats\n")
134     sys.stderr.write("\t -f : Specify specific fields to print (see -v)\n")
135     sys.stderr.write("\t -o : Redirect output to the specified file\n")
136     sys.stderr.write("\t -s : Override default field separator with custom "
137         "character or string\n")
138     sys.stderr.write("\nExamples:\n")
139     sys.stderr.write("\tarcstat -o /tmp/a.log 2 10\n")
140     sys.stderr.write("\tarcstat -s \",\" -o /tmp/a.log 2 10\n")
141     sys.stderr.write("\tarcstat -v\n")
142     sys.stderr.write("\tarcstat -f time,hit%,dh%,ph%,mh% 1\n")
143     sys.stderr.write("\n")
144
145     sys.exit(1)
146
147
148 def kstat_update():
149     global kstat
150
151     k = [line.strip() for line in open('/proc/spl/kstat/zfs/arcstats')]
152
153     if not k:
154         sys.exit(1)
155
156     del k[0:2]
157     kstat = {}
158
159     for s in k:
160         if not s:
161             continue
162
163         name, unused, value = s.split()
164         kstat[name] = Decimal(value)
165
166
167 def snap_stats():
168     global cur
169     global kstat
170
171     prev = copy.deepcopy(cur)
172     kstat_update()
173
174     cur = kstat
175     for key in cur:
176         if re.match(key, "class"):
177             continue
178         if key in prev:
179             d[key] = cur[key] - prev[key]
180         else:
181             d[key] = cur[key]
182
183
184 def prettynum(sz, scale, num=0):
185     suffix = [' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']
186     index = 0
187     save = 0
188
189     # Special case for date field
190     if scale == -1:
191         return "%s" % num
192
193     # Rounding error, return 0
194     elif num > 0 and num < 1:
195         num = 0
196
197     while num > scale and index < 5:
198         save = num
199         num = num / scale
200         index += 1
201
202     if index == 0:
203         return "%*d" % (sz, num)
204
205     if (save / scale) < 10:
206         return "%*.1f%s" % (sz - 1, num, suffix[index])
207     else:
208         return "%*d%s" % (sz - 1, num, suffix[index])
209
210
211 def print_values():
212     global hdr
213     global sep
214     global v
215
216     for col in hdr:
217         sys.stdout.write("%s%s" % (
218             prettynum(cols[col][0], cols[col][1], v[col]),
219             sep
220             ))
221     sys.stdout.write("\n")
222
223
224 def print_header():
225     global hdr
226     global sep
227
228     for col in hdr:
229         sys.stdout.write("%*s%s" % (cols[col][0], col, sep))
230     sys.stdout.write("\n")
231
232
233 def init():
234     global sint
235     global count
236     global hdr
237     global xhdr
238     global opfile
239     global sep
240     global out
241     global l2exist
242
243     desired_cols = None
244     xflag = False
245     hflag = False
246     vflag = False
247     i = 1
248
249     try:
250         opts, args = getopt.getopt(
251             sys.argv[1:],
252             "xo:hvs:f:",
253             [
254                 "extended",
255                 "outfile",
256                 "help",
257                 "verbose",
258                 "seperator",
259                 "columns"
260             ]
261         )
262
263     except getopt.error, msg:
264         sys.stderr.write(msg)
265         usage()
266
267     for opt, arg in opts:
268         if opt in ('-x', '--extended'):
269             xflag = True
270         if opt in ('-o', '--outfile'):
271             opfile = arg
272             i += 1
273         if opt in ('-h', '--help'):
274             hflag = True
275         if opt in ('-v', '--verbose'):
276             vflag = True
277         if opt in ('-s', '--seperator'):
278             sep = arg
279             i += 1
280         if opt in ('-f', '--columns'):
281             desired_cols = arg
282             i += 1
283         i += 1
284
285     argv = sys.argv[i:]
286     sint = Decimal(argv[0]) if argv else sint
287     count = int(argv[1]) if len(argv) > 1 else count
288
289     if len(argv) > 1:
290         sint = Decimal(argv[0])
291         count = int(argv[1])
292
293     elif len(argv) > 0:
294         sint = Decimal(argv[0])
295         count = 0
296
297     if hflag or (xflag and desired_cols):
298         usage()
299
300     if vflag:
301         detailed_usage()
302
303     if xflag:
304         hdr = xhdr
305
306     # check if L2ARC exists
307     snap_stats()
308     l2_size = cur.get("l2_size")
309     if l2_size:
310         l2exist = True
311
312     if desired_cols:
313         hdr = desired_cols.split(",")
314
315         invalid = []
316         incompat = []
317         for ele in hdr:
318             if ele not in cols:
319                 invalid.append(ele)
320             elif not l2exist and ele.startswith("l2"):
321                 sys.stdout.write("No L2ARC Here\n%s\n" % ele)
322                 incompat.append(ele)
323
324         if len(invalid) > 0:
325             sys.stderr.write("Invalid column definition! -- %s\n" % invalid)
326             usage()
327
328         if len(incompat) > 0:
329             sys.stderr.write("Incompatible field specified! -- %s\n" % (
330                 incompat,
331                 ))
332             usage()
333
334     if opfile:
335         try:
336             out = open(opfile, "w")
337             sys.stdout = out
338
339         except:
340             sys.stderr.write("Cannot open %s for writing\n" % opfile)
341             sys.exit(1)
342
343
344 def calculate():
345     global d
346     global v
347     global l2exist
348
349     v = {}
350     v["time"] = time.strftime("%H:%M:%S", time.localtime())
351     v["hits"] = d["hits"] / sint
352     v["miss"] = d["misses"] / sint
353     v["read"] = v["hits"] + v["miss"]
354     v["hit%"] = 100 * v["hits"] / v["read"] if v["read"] > 0 else 0
355     v["miss%"] = 100 - v["hit%"] if v["read"] > 0 else 0
356
357     v["dhit"] = (d["demand_data_hits"] + d["demand_metadata_hits"]) / sint
358     v["dmis"] = (d["demand_data_misses"] + d["demand_metadata_misses"]) / sint
359
360     v["dread"] = v["dhit"] + v["dmis"]
361     v["dh%"] = 100 * v["dhit"] / v["dread"] if v["dread"] > 0 else 0
362     v["dm%"] = 100 - v["dh%"] if v["dread"] > 0 else 0
363
364     v["phit"] = (d["prefetch_data_hits"] + d["prefetch_metadata_hits"]) / sint
365     v["pmis"] = (d["prefetch_data_misses"] +
366         d["prefetch_metadata_misses"]) / sint
367
368     v["pread"] = v["phit"] + v["pmis"]
369     v["ph%"] = 100 * v["phit"] / v["pread"] if v["pread"] > 0 else 0
370     v["pm%"] = 100 - v["ph%"] if v["pread"] > 0 else 0
371
372     v["mhit"] = (d["prefetch_metadata_hits"] +
373         d["demand_metadata_hits"]) / sint
374     v["mmis"] = (d["prefetch_metadata_misses"] +
375         d["demand_metadata_misses"]) / sint
376
377     v["mread"] = v["mhit"] + v["mmis"]
378     v["mh%"] = 100 * v["mhit"] / v["mread"] if v["mread"] > 0 else 0
379     v["mm%"] = 100 - v["mh%"] if v["mread"] > 0 else 0
380
381     v["arcsz"] = cur["size"]
382     v["c"] = cur["c"]
383     v["mfu"] = d["mfu_hits"] / sint
384     v["mru"] = d["mru_hits"] / sint
385     v["mrug"] = d["mru_ghost_hits"] / sint
386     v["mfug"] = d["mfu_ghost_hits"] / sint
387     v["eskip"] = d["evict_skip"] / sint
388     v["rmis"] = d["recycle_miss"] / sint
389     v["mtxmis"] = d["mutex_miss"] / sint
390
391     if l2exist:
392         v["l2hits"] = d["l2_hits"] / sint
393         v["l2miss"] = d["l2_misses"] / sint
394         v["l2read"] = v["l2hits"] + v["l2miss"]
395         v["l2hit%"] = 100 * v["l2hits"] / v["l2read"] if v["l2read"] > 0 else 0
396
397         v["l2miss%"] = 100 - v["l2hit%"] if v["l2read"] > 0 else 0
398         v["l2size"] = cur["l2_size"]
399         v["l2bytes"] = d["l2_read_bytes"] / sint
400
401
402 def sighandler(*args):
403     sys.exit(0)
404
405
406 def main():
407     global sint
408     global count
409     global hdr_intr
410
411     i = 0
412     count_flag = 0
413
414     init()
415     if count > 0:
416         count_flag = 1
417
418     signal(SIGINT, sighandler)
419     while True:
420         if i == 0:
421             print_header()
422
423         snap_stats()
424         calculate()
425         print_values()
426
427         if count_flag == 1:
428             if count <= 1:
429                 break
430             count -= 1
431
432         i = 0 if i == hdr_intr else i + 1
433         time.sleep(sint)
434
435     if out:
436         out.close()
437
438
439 if __name__ == '__main__':
440     main()