3 # Print out ZFS ARC Statistics exported via kstat(1)
4 # For a definition of fields, or usage, use arctstat.pl -v
6 # This script is a fork of the original arcstat.pl (0.1) by
7 # Neelakanth Nadgir, originally published on his Sun blog on
9 # http://blogs.sun.com/realneel/entry/zfs_arc_statistics
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
16 # Comments, Questions, or Suggestions are always welcome.
17 # Contact the maintainer at ( mike at harschsystems dot com )
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
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.
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]
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.
53 from decimal
import Decimal
54 from signal
import signal
, SIGINT
, SIGWINCH
, SIG_DFL
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 hits per second"],
65 "dmis": [4, 1000, "Demand misses per second"],
66 "dh%": [3, 100, "Demand hit percentage"],
67 "dm%": [3, 100, "Demand 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 "dread": [5, 1000, "Demand accesses per second"],
86 "pread": [5, 1000, "Prefetch accesses per second"],
87 "l2hits": [6, 1000, "L2ARC hits per second"],
88 "l2miss": [6, 1000, "L2ARC misses per second"],
89 "l2read": [6, 1000, "Total L2ARC accesses per second"],
90 "l2hit%": [6, 100, "L2ARC access hit percentage"],
91 "l2miss%": [7, 100, "L2ARC access miss percentage"],
92 "l2asize": [7, 1024, "Actual (compressed) size of the L2ARC"],
93 "l2size": [6, 1024, "Size of the L2ARC"],
94 "l2bytes": [7, 1024, "bytes read per second from the L2ARC"],
98 hdr
= ["time", "read", "miss", "miss%", "dmis", "dm%", "pmis", "pm%", "mmis",
100 xhdr
= ["time", "mfu", "mru", "mfug", "mrug", "eskip", "mtxmis", "dread",
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
106 sep
= " " # Default separator is 2 spaces
109 cmd
= ("Usage: arcstat.py [-hvx] [-f fields] [-o file] [-s string] [interval "
115 float_pobj
= re
.compile("^[0-9]+(\.[0-9]+)?$")
118 def detailed_usage():
119 sys
.stderr
.write("%s\n" % cmd
)
120 sys
.stderr
.write("Field definitions are as follows:\n")
122 sys
.stderr
.write("%11s : %s\n" % (key
, cols
[key
][2]))
123 sys
.stderr
.write("\n")
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"
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.py -o /tmp/a.log 2 10\n")
140 sys
.stderr
.write("\tarcstat.py -s \",\" -o /tmp/a.log 2 10\n")
141 sys
.stderr
.write("\tarcstat.py -v\n")
142 sys
.stderr
.write("\tarcstat.py -f time,hit%,dh%,ph%,mh% 1\n")
143 sys
.stderr
.write("\n")
151 k
= [line
.strip() for line
in open('/proc/spl/kstat/zfs/arcstats')]
163 name
, unused
, value
= s
.split()
164 kstat
[name
] = Decimal(value
)
171 prev
= copy
.deepcopy(cur
)
176 if re
.match(key
, "class"):
179 d
[key
] = cur
[key
] - prev
[key
]
184 def prettynum(sz
, scale
, num
=0):
185 suffix
= [' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']
189 # Special case for date field
193 # Rounding error, return 0
197 while num
> scale
and index
< 5:
203 return "%*d" % (sz
, num
)
205 if (save
/ scale
) < 10:
206 return "%*.1f%s" % (sz
- 1, num
, suffix
[index
])
208 return "%*d%s" % (sz
- 1, num
, suffix
[index
])
217 sys
.stdout
.write("%s%s" % (
218 prettynum(cols
[col
][0], cols
[col
][1], v
[col
]),
221 sys
.stdout
.write("\n")
229 sys
.stdout
.write("%*s%s" % (cols
[col
][0], col
, sep
))
230 sys
.stdout
.write("\n")
233 def get_terminal_lines():
238 data
= fcntl
.ioctl(sys
.stdout
.fileno(), termios
.TIOCGWINSZ
, '1234')
239 sz
= struct
.unpack('hh', data
)
245 def update_hdr_intr():
248 lines
= get_terminal_lines()
249 if lines
and lines
> 3:
253 def resize_handler(signum
, frame
):
274 opts
, args
= getopt
.getopt(
286 except getopt
.error
as msg
:
287 sys
.stderr
.write(msg
)
291 for opt
, arg
in opts
:
292 if opt
in ('-x', '--extended'):
294 if opt
in ('-o', '--outfile'):
297 if opt
in ('-h', '--help'):
299 if opt
in ('-v', '--verbose'):
301 if opt
in ('-s', '--seperator'):
304 if opt
in ('-f', '--columns'):
310 sint
= Decimal(argv
[0]) if argv
else sint
311 count
= int(argv
[1]) if len(argv
) > 1 else count
314 sint
= Decimal(argv
[0])
318 sint
= Decimal(argv
[0])
321 if hflag
or (xflag
and desired_cols
):
332 # check if L2ARC exists
334 l2_size
= cur
.get("l2_size")
339 hdr
= desired_cols
.split(",")
346 elif not l2exist
and ele
.startswith("l2"):
347 sys
.stdout
.write("No L2ARC Here\n%s\n" % ele
)
351 sys
.stderr
.write("Invalid column definition! -- %s\n" % invalid
)
354 if len(incompat
) > 0:
355 sys
.stderr
.write("Incompatible field specified! -- %s\n" %
361 out
= open(opfile
, "w")
365 sys
.stderr
.write("Cannot open %s for writing\n" % opfile
)
375 v
["time"] = time
.strftime("%H:%M:%S", time
.localtime())
376 v
["hits"] = d
["hits"] / sint
377 v
["miss"] = d
["misses"] / sint
378 v
["read"] = v
["hits"] + v
["miss"]
379 v
["hit%"] = 100 * v
["hits"] / v
["read"] if v
["read"] > 0 else 0
380 v
["miss%"] = 100 - v
["hit%"] if v
["read"] > 0 else 0
382 v
["dhit"] = (d
["demand_data_hits"] + d
["demand_metadata_hits"]) / sint
383 v
["dmis"] = (d
["demand_data_misses"] + d
["demand_metadata_misses"]) / sint
385 v
["dread"] = v
["dhit"] + v
["dmis"]
386 v
["dh%"] = 100 * v
["dhit"] / v
["dread"] if v
["dread"] > 0 else 0
387 v
["dm%"] = 100 - v
["dh%"] if v
["dread"] > 0 else 0
389 v
["phit"] = (d
["prefetch_data_hits"] + d
["prefetch_metadata_hits"]) / sint
390 v
["pmis"] = (d
["prefetch_data_misses"] +
391 d
["prefetch_metadata_misses"]) / sint
393 v
["pread"] = v
["phit"] + v
["pmis"]
394 v
["ph%"] = 100 * v
["phit"] / v
["pread"] if v
["pread"] > 0 else 0
395 v
["pm%"] = 100 - v
["ph%"] if v
["pread"] > 0 else 0
397 v
["mhit"] = (d
["prefetch_metadata_hits"] +
398 d
["demand_metadata_hits"]) / sint
399 v
["mmis"] = (d
["prefetch_metadata_misses"] +
400 d
["demand_metadata_misses"]) / sint
402 v
["mread"] = v
["mhit"] + v
["mmis"]
403 v
["mh%"] = 100 * v
["mhit"] / v
["mread"] if v
["mread"] > 0 else 0
404 v
["mm%"] = 100 - v
["mh%"] if v
["mread"] > 0 else 0
406 v
["arcsz"] = cur
["size"]
408 v
["mfu"] = d
["mfu_hits"] / sint
409 v
["mru"] = d
["mru_hits"] / sint
410 v
["mrug"] = d
["mru_ghost_hits"] / sint
411 v
["mfug"] = d
["mfu_ghost_hits"] / sint
412 v
["eskip"] = d
["evict_skip"] / sint
413 v
["mtxmis"] = d
["mutex_miss"] / sint
416 v
["l2hits"] = d
["l2_hits"] / sint
417 v
["l2miss"] = d
["l2_misses"] / sint
418 v
["l2read"] = v
["l2hits"] + v
["l2miss"]
419 v
["l2hit%"] = 100 * v
["l2hits"] / v
["l2read"] if v
["l2read"] > 0 else 0
421 v
["l2miss%"] = 100 - v
["l2hit%"] if v
["l2read"] > 0 else 0
422 v
["l2asize"] = cur
["l2_asize"]
423 v
["l2size"] = cur
["l2_size"]
424 v
["l2bytes"] = d
["l2_read_bytes"] / sint
439 signal(SIGINT
, SIG_DFL
)
440 signal(SIGWINCH
, resize_handler
)
454 i
= 0 if i
>= hdr_intr
else i
+ 1
461 if __name__
== '__main__':