xref: /freebsd/sys/contrib/openzfs/cmd/arcstat.in (revision 59144db3fca192c4637637dfe6b5a5d98632cd47)
1#!/usr/bin/env @PYTHON_SHEBANG@
2#
3# Print out ZFS ARC Statistics exported via kstat(1)
4# For a definition of fields, or usage, use arcstat -v
5#
6# This script was originally a fork of the original arcstat.pl (0.1)
7# by 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# A new version aimed to improve upon the original by adding features
12# and fixing bugs as needed.  This version was maintained by Mike
13# Harsch and was hosted in a public open source repository:
14#    http://github.com/mharsch/arcstat
15#
16# but has since moved to the illumos-gate repository.
17#
18# This Python port was written by John Hixson for FreeNAS, introduced
19# in commit e2c29f:
20#    https://github.com/freenas/freenas
21#
22# and has been improved by many people since.
23#
24# CDDL HEADER START
25#
26# The contents of this file are subject to the terms of the
27# Common Development and Distribution License, Version 1.0 only
28# (the "License").  You may not use this file except in compliance
29# with the License.
30#
31# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
32# or https://opensource.org/licenses/CDDL-1.0.
33# See the License for the specific language governing permissions
34# and limitations under the License.
35#
36# When distributing Covered Code, include this CDDL HEADER in each
37# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
38# If applicable, add the following below this CDDL HEADER, with the
39# fields enclosed by brackets "[]" replaced with your own identifying
40# information: Portions Copyright [yyyy] [name of copyright owner]
41#
42# CDDL HEADER END
43#
44#
45# Fields have a fixed width. Every interval, we fill the "v"
46# hash with its corresponding value (v[field]=value) using calculate().
47# @hdr is the array of fields that needs to be printed, so we
48# just iterate over this array and print the values using our pretty printer.
49#
50# This script must remain compatible with Python 3.6+.
51#
52
53import sys
54import time
55import getopt
56import re
57import copy
58
59from signal import signal, SIGINT, SIGWINCH, SIG_DFL
60
61
62cols = {
63    # HDR:        [Size, Scale, Description]
64    "time":       [8, -1, "Time"],
65    "hits":       [4, 1000, "ARC hits per second"],
66    "iohs":       [4, 1000, "ARC I/O hits per second"],
67    "miss":       [4, 1000, "ARC misses per second"],
68    "read":       [4, 1000, "Total ARC accesses per second"],
69    "hit%":       [4, 100, "ARC hit percentage"],
70    "ioh%":       [4, 100, "ARC I/O hit percentage"],
71    "miss%":      [5, 100, "ARC miss percentage"],
72    "dhit":       [4, 1000, "Demand hits per second"],
73    "dioh":       [4, 1000, "Demand I/O hits per second"],
74    "dmis":       [4, 1000, "Demand misses per second"],
75    "dh%":        [3, 100, "Demand hit percentage"],
76    "di%":        [3, 100, "Demand I/O hit percentage"],
77    "dm%":        [3, 100, "Demand miss percentage"],
78    "ddhit":      [5, 1000, "Demand data hits per second"],
79    "ddioh":      [5, 1000, "Demand data I/O hits per second"],
80    "ddmis":      [5, 1000, "Demand data misses per second"],
81    "ddh%":       [4, 100, "Demand data hit percentage"],
82    "ddi%":       [4, 100, "Demand data I/O hit percentage"],
83    "ddm%":       [4, 100, "Demand data miss percentage"],
84    "dmhit":      [5, 1000, "Demand metadata hits per second"],
85    "dmioh":      [5, 1000, "Demand metadata I/O hits per second"],
86    "dmmis":      [5, 1000, "Demand metadata misses per second"],
87    "dmh%":       [4, 100, "Demand metadata hit percentage"],
88    "dmi%":       [4, 100, "Demand metadata I/O hit percentage"],
89    "dmm%":       [4, 100, "Demand metadata miss percentage"],
90    "phit":       [4, 1000, "Prefetch hits per second"],
91    "pioh":       [4, 1000, "Prefetch I/O hits per second"],
92    "pmis":       [4, 1000, "Prefetch misses per second"],
93    "ph%":        [3, 100, "Prefetch hits percentage"],
94    "pi%":        [3, 100, "Prefetch I/O hits percentage"],
95    "pm%":        [3, 100, "Prefetch miss percentage"],
96    "pdhit":      [5, 1000, "Prefetch data hits per second"],
97    "pdioh":      [5, 1000, "Prefetch data I/O hits per second"],
98    "pdmis":      [5, 1000, "Prefetch data misses per second"],
99    "pdh%":       [4, 100, "Prefetch data hits percentage"],
100    "pdi%":       [4, 100, "Prefetch data I/O hits percentage"],
101    "pdm%":       [4, 100, "Prefetch data miss percentage"],
102    "pmhit":      [5, 1000, "Prefetch metadata hits per second"],
103    "pmioh":      [5, 1000, "Prefetch metadata I/O hits per second"],
104    "pmmis":      [5, 1000, "Prefetch metadata misses per second"],
105    "pmh%":       [4, 100, "Prefetch metadata hits percentage"],
106    "pmi%":       [4, 100, "Prefetch metadata I/O hits percentage"],
107    "pmm%":       [4, 100, "Prefetch metadata miss percentage"],
108    "mhit":       [4, 1000, "Metadata hits per second"],
109    "mioh":       [4, 1000, "Metadata I/O hits per second"],
110    "mmis":       [4, 1000, "Metadata misses per second"],
111    "mread":      [5, 1000, "Metadata accesses per second"],
112    "mh%":        [3, 100, "Metadata hit percentage"],
113    "mi%":        [3, 100, "Metadata I/O hit percentage"],
114    "mm%":        [3, 100, "Metadata miss percentage"],
115    "arcsz":      [5, 1024, "ARC size"],
116    "size":       [5, 1024, "ARC size"],
117    "c":          [5, 1024, "ARC target size"],
118    "mfu":        [4, 1000, "MFU list hits per second"],
119    "mru":        [4, 1000, "MRU list hits per second"],
120    "mfug":       [4, 1000, "MFU ghost list hits per second"],
121    "mrug":       [4, 1000, "MRU ghost list hits per second"],
122    "unc":        [4, 1000, "Uncached list hits per second"],
123    "eskip":      [5, 1000, "evict_skip per second"],
124    "el2skip":    [7, 1000, "evict skip, due to l2 writes, per second"],
125    "el2cach":    [7, 1024, "Size of L2 cached evictions per second"],
126    "el2el":      [5, 1024, "Size of L2 eligible evictions per second"],
127    "el2mfu":     [6, 1024, "Size of L2 eligible MFU evictions per second"],
128    "el2mru":     [6, 1024, "Size of L2 eligible MRU evictions per second"],
129    "el2inel":    [7, 1024, "Size of L2 ineligible evictions per second"],
130    "mtxmis":     [6, 1000, "mutex_miss per second"],
131    "dread":      [5, 1000, "Demand accesses per second"],
132    "ddread":     [6, 1000, "Demand data accesses per second"],
133    "dmread":     [6, 1000, "Demand metadata accesses per second"],
134    "pread":      [5, 1000, "Prefetch accesses per second"],
135    "pdread":     [6, 1000, "Prefetch data accesses per second"],
136    "pmread":     [6, 1000, "Prefetch metadata accesses per second"],
137    "l2hits":     [6, 1000, "L2ARC hits per second"],
138    "l2miss":     [6, 1000, "L2ARC misses per second"],
139    "l2read":     [6, 1000, "Total L2ARC accesses per second"],
140    "l2hit%":     [6, 100, "L2ARC access hit percentage"],
141    "l2miss%":    [7, 100, "L2ARC access miss percentage"],
142    "l2pref":     [6, 1024, "L2ARC prefetch allocated size"],
143    "l2mfu":      [5, 1024, "L2ARC MFU allocated size"],
144    "l2mru":      [5, 1024, "L2ARC MRU allocated size"],
145    "l2data":     [6, 1024, "L2ARC data allocated size"],
146    "l2meta":     [6, 1024, "L2ARC metadata allocated size"],
147    "l2pref%":    [7, 100, "L2ARC prefetch percentage"],
148    "l2mfu%":     [6, 100, "L2ARC MFU percentage"],
149    "l2mru%":     [6, 100, "L2ARC MRU percentage"],
150    "l2data%":    [7, 100, "L2ARC data percentage"],
151    "l2meta%":    [7, 100, "L2ARC metadata percentage"],
152    "l2asize":    [7, 1024, "Actual (compressed) size of the L2ARC"],
153    "l2size":     [6, 1024, "Size of the L2ARC"],
154    "l2bytes":    [7, 1024, "Bytes read per second from the L2ARC"],
155    "grow":       [4, 1000, "ARC grow disabled"],
156    "need":       [5, 1024, "ARC reclaim need"],
157    "free":       [5, 1024, "ARC free memory"],
158    "avail":      [5, 1024, "ARC available memory"],
159    "waste":      [5, 1024, "Wasted memory due to round up to pagesize"],
160    "ztotal":     [6, 1000, "zfetch total prefetcher calls per second"],
161    "zhits":      [5, 1000, "zfetch stream hits per second"],
162    "zahead":     [6, 1000, "zfetch hits ahead of streams per second"],
163    "zpast":      [5, 1000, "zfetch hits behind streams per second"],
164    "zmisses":    [7, 1000, "zfetch stream misses per second"],
165    "zmax":       [4, 1000, "zfetch limit reached per second"],
166    "zfuture":    [7, 1000, "zfetch stream future per second"],
167    "zstride":    [7, 1000, "zfetch stream strides per second"],
168    "zissued":    [7, 1000, "zfetch prefetches issued per second"],
169    "zactive":    [7, 1000, "zfetch prefetches active per second"],
170}
171
172v = {}
173hdr = ["time", "read", "ddread", "ddh%", "dmread", "dmh%", "pread", "ph%",
174       "size", "c", "avail"]
175xhdr = ["time", "mfu", "mru", "mfug", "mrug", "unc", "eskip", "mtxmis",
176        "dread", "pread", "read"]
177zhdr = ["time", "ztotal", "zhits", "zahead", "zpast", "zmisses", "zmax",
178        "zfuture", "zstride", "zissued", "zactive"]
179sint = 1               # Default interval is 1 second
180count = 1              # Default count is 1
181hdr_intr = 20          # Print header every 20 lines of output
182opfile = None
183sep = "  "              # Default separator is 2 spaces
184l2exist = False
185cmd = ("Usage: arcstat [-havxp] [-f fields] [-o file] [-s string] [interval "
186       "[count]]\n")
187cur = {}
188d = {}
189out = None
190kstat = None
191pretty_print = True
192
193
194if sys.platform.startswith('freebsd'):
195    # Requires py-sysctl on FreeBSD
196    import sysctl
197
198    def kstat_update():
199        global kstat
200
201        k = [ctl for ctl in sysctl.filter('kstat.zfs.misc.arcstats')
202             if ctl.type != sysctl.CTLTYPE_NODE]
203
204        if not k:
205            sys.exit(1)
206
207        kstat = {}
208
209        for s in k:
210            if not s:
211                continue
212
213            name, value = s.name, s.value
214            # Trims 'kstat.zfs.misc.arcstats' from the name
215            kstat[name[24:]] = int(value)
216
217elif sys.platform.startswith('linux'):
218    def kstat_update():
219        global kstat
220
221        k1 = [line.strip() for line in open('/proc/spl/kstat/zfs/arcstats')]
222
223        k2 = ["zfetch_" + line.strip() for line in
224             open('/proc/spl/kstat/zfs/zfetchstats')]
225
226        if k1 is None or k2 is None:
227            sys.exit(1)
228
229        del k1[0:2]
230        del k2[0:2]
231        k = k1 + k2
232        kstat = {}
233
234        for s in k:
235            if not s:
236                continue
237
238            name, unused, value = s.split()
239            kstat[name] = int(value)
240
241
242def detailed_usage():
243    sys.stderr.write("%s\n" % cmd)
244    sys.stderr.write("Field definitions are as follows:\n")
245    for key in cols:
246        sys.stderr.write("%11s : %s\n" % (key, cols[key][2]))
247    sys.stderr.write("\n")
248
249    sys.exit(0)
250
251
252def usage():
253    sys.stderr.write("%s\n" % cmd)
254    sys.stderr.write("\t -h : Print this help message\n")
255    sys.stderr.write("\t -a : Print all possible stats\n")
256    sys.stderr.write("\t -v : List all possible field headers and definitions"
257                     "\n")
258    sys.stderr.write("\t -x : Print extended stats\n")
259    sys.stderr.write("\t -z : Print zfetch stats\n")
260    sys.stderr.write("\t -f : Specify specific fields to print (see -v)\n")
261    sys.stderr.write("\t -o : Redirect output to the specified file\n")
262    sys.stderr.write("\t -s : Override default field separator with custom "
263                     "character or string\n")
264    sys.stderr.write("\t -p : Disable auto-scaling of numerical fields\n")
265    sys.stderr.write("\nExamples:\n")
266    sys.stderr.write("\tarcstat -o /tmp/a.log 2 10\n")
267    sys.stderr.write("\tarcstat -s \",\" -o /tmp/a.log 2 10\n")
268    sys.stderr.write("\tarcstat -v\n")
269    sys.stderr.write("\tarcstat -f time,hit%,dh%,ph%,mh% 1\n")
270    sys.stderr.write("\n")
271
272    sys.exit(1)
273
274
275def snap_stats():
276    global cur
277    global kstat
278
279    prev = copy.deepcopy(cur)
280    kstat_update()
281
282    cur = kstat
283    for key in cur:
284        if re.match(key, "class"):
285            continue
286        if key in prev:
287            d[key] = cur[key] - prev[key]
288        else:
289            d[key] = cur[key]
290
291
292def prettynum(sz, scale, num=0):
293    suffix = [' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z']
294    index = 0
295    save = 0
296
297    # Special case for date field
298    if scale == -1:
299        return "%s" % num
300
301    # Rounding error, return 0
302    elif 0 < num < 1:
303        num = 0
304
305    while abs(num) > scale and index < 5:
306        save = num
307        num = num / scale
308        index += 1
309
310    if index == 0:
311        return "%*d" % (sz, num)
312
313    if abs(save / scale) < 10:
314        return "%*.1f%s" % (sz - 1, num, suffix[index])
315    else:
316        return "%*d%s" % (sz - 1, num, suffix[index])
317
318
319def print_values():
320    global hdr
321    global sep
322    global v
323    global pretty_print
324
325    if pretty_print:
326        fmt = lambda col: prettynum(cols[col][0], cols[col][1], v[col])
327    else:
328        fmt = lambda col: str(v[col])
329
330    sys.stdout.write(sep.join(fmt(col) for col in hdr))
331    sys.stdout.write("\n")
332    sys.stdout.flush()
333
334
335def print_header():
336    global hdr
337    global sep
338    global pretty_print
339
340    if pretty_print:
341        fmt = lambda col: "%*s" % (cols[col][0], col)
342    else:
343        fmt = lambda col: col
344
345    sys.stdout.write(sep.join(fmt(col) for col in hdr))
346    sys.stdout.write("\n")
347
348
349def get_terminal_lines():
350    try:
351        import fcntl
352        import termios
353        import struct
354        data = fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, '1234')
355        sz = struct.unpack('hh', data)
356        return sz[0]
357    except Exception:
358        pass
359
360
361def update_hdr_intr():
362    global hdr_intr
363
364    lines = get_terminal_lines()
365    if lines and lines > 3:
366        hdr_intr = lines - 3
367
368
369def resize_handler(signum, frame):
370    update_hdr_intr()
371
372
373def init():
374    global sint
375    global count
376    global hdr
377    global xhdr
378    global zhdr
379    global opfile
380    global sep
381    global out
382    global l2exist
383    global pretty_print
384
385    desired_cols = None
386    aflag = False
387    xflag = False
388    hflag = False
389    vflag = False
390    zflag = False
391    i = 1
392
393    try:
394        opts, args = getopt.getopt(
395            sys.argv[1:],
396            "axzo:hvs:f:p",
397            [
398                "all",
399                "extended",
400                "zfetch",
401                "outfile",
402                "help",
403                "verbose",
404                "separator",
405                "columns",
406                "parsable"
407            ]
408        )
409    except getopt.error as msg:
410        sys.stderr.write("Error: %s\n" % str(msg))
411        usage()
412        opts = None
413
414    for opt, arg in opts:
415        if opt in ('-a', '--all'):
416            aflag = True
417        if opt in ('-x', '--extended'):
418            xflag = True
419        if opt in ('-o', '--outfile'):
420            opfile = arg
421            i += 1
422        if opt in ('-h', '--help'):
423            hflag = True
424        if opt in ('-v', '--verbose'):
425            vflag = True
426        if opt in ('-s', '--separator'):
427            sep = arg
428            i += 1
429        if opt in ('-f', '--columns'):
430            desired_cols = arg
431            i += 1
432        if opt in ('-p', '--parsable'):
433            pretty_print = False
434        if opt in ('-z', '--zfetch'):
435            zflag = True
436        i += 1
437
438    argv = sys.argv[i:]
439    sint = int(argv[0]) if argv else sint
440    count = int(argv[1]) if len(argv) > 1 else (0 if len(argv) > 0 else 1)
441
442    if hflag or (xflag and zflag) or ((zflag or xflag) and desired_cols):
443        usage()
444
445    if vflag:
446        detailed_usage()
447
448    if xflag:
449        hdr = xhdr
450
451    if zflag:
452        hdr = zhdr
453
454    update_hdr_intr()
455
456    # check if L2ARC exists
457    snap_stats()
458    l2_size = cur.get("l2_size")
459    if l2_size:
460        l2exist = True
461
462    if desired_cols:
463        hdr = desired_cols.split(",")
464
465        invalid = []
466        incompat = []
467        for ele in hdr:
468            if ele not in cols:
469                invalid.append(ele)
470            elif not l2exist and ele.startswith("l2"):
471                sys.stdout.write("No L2ARC Here\n%s\n" % ele)
472                incompat.append(ele)
473
474        if len(invalid) > 0:
475            sys.stderr.write("Invalid column definition! -- %s\n" % invalid)
476            usage()
477
478        if len(incompat) > 0:
479            sys.stderr.write("Incompatible field specified! -- %s\n" %
480                             incompat)
481            usage()
482
483    if aflag:
484        if l2exist:
485            hdr = cols.keys()
486        else:
487            hdr = [col for col in cols.keys() if not col.startswith("l2")]
488
489    if opfile:
490        try:
491            out = open(opfile, "w")
492            sys.stdout = out
493
494        except IOError:
495            sys.stderr.write("Cannot open %s for writing\n" % opfile)
496            sys.exit(1)
497
498
499def calculate():
500    global d
501    global v
502    global l2exist
503
504    v = dict()
505    v["time"] = time.strftime("%H:%M:%S", time.localtime())
506    v["hits"] = d["hits"] // sint
507    v["iohs"] = d["iohits"] // sint
508    v["miss"] = d["misses"] // sint
509    v["read"] = v["hits"] + v["iohs"] + v["miss"]
510    v["hit%"] = 100 * v["hits"] // v["read"] if v["read"] > 0 else 0
511    v["ioh%"] = 100 * v["iohs"] // v["read"] if v["read"] > 0 else 0
512    v["miss%"] = 100 - v["hit%"] - v["ioh%"] if v["read"] > 0 else 0
513
514    v["dhit"] = (d["demand_data_hits"] + d["demand_metadata_hits"]) // sint
515    v["dioh"] = (d["demand_data_iohits"] + d["demand_metadata_iohits"]) // sint
516    v["dmis"] = (d["demand_data_misses"] + d["demand_metadata_misses"]) // sint
517
518    v["dread"] = v["dhit"] + v["dioh"] + v["dmis"]
519    v["dh%"] = 100 * v["dhit"] // v["dread"] if v["dread"] > 0 else 0
520    v["di%"] = 100 * v["dioh"] // v["dread"] if v["dread"] > 0 else 0
521    v["dm%"] = 100 - v["dh%"] - v["di%"] if v["dread"] > 0 else 0
522
523    v["ddhit"] = d["demand_data_hits"] // sint
524    v["ddioh"] = d["demand_data_iohits"] // sint
525    v["ddmis"] = d["demand_data_misses"] // sint
526
527    v["ddread"] = v["ddhit"] + v["ddioh"] + v["ddmis"]
528    v["ddh%"] = 100 * v["ddhit"] // v["ddread"] if v["ddread"] > 0 else 0
529    v["ddi%"] = 100 * v["ddioh"] // v["ddread"] if v["ddread"] > 0 else 0
530    v["ddm%"] = 100 - v["ddh%"] - v["ddi%"] if v["ddread"] > 0 else 0
531
532    v["dmhit"] = d["demand_metadata_hits"] // sint
533    v["dmioh"] = d["demand_metadata_iohits"] // sint
534    v["dmmis"] = d["demand_metadata_misses"] // sint
535
536    v["dmread"] = v["dmhit"] + v["dmioh"] + v["dmmis"]
537    v["dmh%"] = 100 * v["dmhit"] // v["dmread"] if v["dmread"] > 0 else 0
538    v["dmi%"] = 100 * v["dmioh"] // v["dmread"] if v["dmread"] > 0 else 0
539    v["dmm%"] = 100 - v["dmh%"] - v["dmi%"] if v["dmread"] > 0 else 0
540
541    v["phit"] = (d["prefetch_data_hits"] + d["prefetch_metadata_hits"]) // sint
542    v["pioh"] = (d["prefetch_data_iohits"] +
543                 d["prefetch_metadata_iohits"]) // sint
544    v["pmis"] = (d["prefetch_data_misses"] +
545                 d["prefetch_metadata_misses"]) // sint
546
547    v["pread"] = v["phit"] + v["pioh"] + v["pmis"]
548    v["ph%"] = 100 * v["phit"] // v["pread"] if v["pread"] > 0 else 0
549    v["pi%"] = 100 * v["pioh"] // v["pread"] if v["pread"] > 0 else 0
550    v["pm%"] = 100 - v["ph%"] - v["pi%"] if v["pread"] > 0 else 0
551
552    v["pdhit"] = d["prefetch_data_hits"] // sint
553    v["pdioh"] = d["prefetch_data_iohits"] // sint
554    v["pdmis"] = d["prefetch_data_misses"] // sint
555
556    v["pdread"] = v["pdhit"] + v["pdioh"] + v["pdmis"]
557    v["pdh%"] = 100 * v["pdhit"] // v["pdread"] if v["pdread"] > 0 else 0
558    v["pdi%"] = 100 * v["pdioh"] // v["pdread"] if v["pdread"] > 0 else 0
559    v["pdm%"] = 100 - v["pdh%"] - v["pdi%"] if v["pdread"] > 0 else 0
560
561    v["pmhit"] = d["prefetch_metadata_hits"] // sint
562    v["pmioh"] = d["prefetch_metadata_iohits"] // sint
563    v["pmmis"] = d["prefetch_metadata_misses"] // sint
564
565    v["pmread"] = v["pmhit"] + v["pmioh"] + v["pmmis"]
566    v["pmh%"] = 100 * v["pmhit"] // v["pmread"] if v["pmread"] > 0 else 0
567    v["pmi%"] = 100 * v["pmioh"] // v["pmread"] if v["pmread"] > 0 else 0
568    v["pmm%"] = 100 - v["pmh%"] - v["pmi%"] if v["pmread"] > 0 else 0
569
570    v["mhit"] = (d["prefetch_metadata_hits"] +
571                 d["demand_metadata_hits"]) // sint
572    v["mioh"] = (d["prefetch_metadata_iohits"] +
573                 d["demand_metadata_iohits"]) // sint
574    v["mmis"] = (d["prefetch_metadata_misses"] +
575                 d["demand_metadata_misses"]) // sint
576
577    v["mread"] = v["mhit"] + v["mioh"] + v["mmis"]
578    v["mh%"] = 100 * v["mhit"] // v["mread"] if v["mread"] > 0 else 0
579    v["mi%"] = 100 * v["mioh"] // v["mread"] if v["mread"] > 0 else 0
580    v["mm%"] = 100 - v["mh%"] - v["mi%"] if v["mread"] > 0 else 0
581
582    v["arcsz"] = cur["size"]
583    v["size"] = cur["size"]
584    v["c"] = cur["c"]
585    v["mfu"] = d["mfu_hits"] // sint
586    v["mru"] = d["mru_hits"] // sint
587    v["mrug"] = d["mru_ghost_hits"] // sint
588    v["mfug"] = d["mfu_ghost_hits"] // sint
589    v["unc"] = d["uncached_hits"] // sint
590    v["eskip"] = d["evict_skip"] // sint
591    v["el2skip"] = d["evict_l2_skip"] // sint
592    v["el2cach"] = d["evict_l2_cached"] // sint
593    v["el2el"] = d["evict_l2_eligible"] // sint
594    v["el2mfu"] = d["evict_l2_eligible_mfu"] // sint
595    v["el2mru"] = d["evict_l2_eligible_mru"] // sint
596    v["el2inel"] = d["evict_l2_ineligible"] // sint
597    v["mtxmis"] = d["mutex_miss"] // sint
598    v["ztotal"] = (d["zfetch_hits"] + d["zfetch_future"] + d["zfetch_stride"] +
599                   d["zfetch_past"] + d["zfetch_misses"]) // sint
600    v["zhits"] = d["zfetch_hits"] // sint
601    v["zahead"] = (d["zfetch_future"] + d["zfetch_stride"]) // sint
602    v["zpast"] = d["zfetch_past"] // sint
603    v["zmisses"] = d["zfetch_misses"] // sint
604    v["zmax"] = d["zfetch_max_streams"] // sint
605    v["zfuture"] = d["zfetch_future"] // sint
606    v["zstride"] = d["zfetch_stride"] // sint
607    v["zissued"] = d["zfetch_io_issued"] // sint
608    v["zactive"] = d["zfetch_io_active"] // sint
609
610    if l2exist:
611        v["l2hits"] = d["l2_hits"] // sint
612        v["l2miss"] = d["l2_misses"] // sint
613        v["l2read"] = v["l2hits"] + v["l2miss"]
614        v["l2hit%"] = 100 * v["l2hits"] // v["l2read"] if v["l2read"] > 0 else 0
615
616        v["l2miss%"] = 100 - v["l2hit%"] if v["l2read"] > 0 else 0
617        v["l2asize"] = cur["l2_asize"]
618        v["l2size"] = cur["l2_size"]
619        v["l2bytes"] = d["l2_read_bytes"] // sint
620
621        v["l2pref"] = cur["l2_prefetch_asize"]
622        v["l2mfu"] = cur["l2_mfu_asize"]
623        v["l2mru"] = cur["l2_mru_asize"]
624        v["l2data"] = cur["l2_bufc_data_asize"]
625        v["l2meta"] = cur["l2_bufc_metadata_asize"]
626        v["l2pref%"] = 100 * v["l2pref"] // v["l2asize"]
627        v["l2mfu%"] = 100 * v["l2mfu"] // v["l2asize"]
628        v["l2mru%"] = 100 * v["l2mru"] // v["l2asize"]
629        v["l2data%"] = 100 * v["l2data"] // v["l2asize"]
630        v["l2meta%"] = 100 * v["l2meta"] // v["l2asize"]
631
632    v["grow"] = 0 if cur["arc_no_grow"] else 1
633    v["need"] = cur["arc_need_free"]
634    v["free"] = cur["memory_free_bytes"]
635    v["avail"] = cur["memory_available_bytes"]
636    v["waste"] = cur["abd_chunk_waste_size"]
637
638
639def main():
640    global sint
641    global count
642    global hdr_intr
643
644    i = 0
645    count_flag = 0
646
647    init()
648    if count > 0:
649        count_flag = 1
650
651    signal(SIGINT, SIG_DFL)
652    signal(SIGWINCH, resize_handler)
653    while True:
654        if i == 0:
655            print_header()
656
657        snap_stats()
658        calculate()
659        print_values()
660
661        if count_flag == 1:
662            if count <= 1:
663                break
664            count -= 1
665
666        i = 0 if i >= hdr_intr else i + 1
667        time.sleep(sint)
668
669    if out:
670        out.close()
671
672
673if __name__ == '__main__':
674    main()
675