diff options
author | cable2999 <[email protected]> | 2015-10-16 12:06:33 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2015-12-04 15:28:45 -0800 |
commit | f40926795c1a1d3750e2a6f6904061cfa68715df (patch) | |
tree | 6b38c6864801ed6868e2876a2669677dd23e4484 /cmd | |
parent | 25df831b8140883ac2759552d857149eadfd81f8 (diff) |
Update arcstat.py to remove deprecated rmis reference.
Running arcstat.py -x currently throws KeyError due to rmis being
absent, it was removed in commit ca0bf58.
Signed-off-by: cable2999 <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #3931
Diffstat (limited to 'cmd')
-rwxr-xr-x | cmd/arcstat/arcstat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/arcstat/arcstat.py b/cmd/arcstat/arcstat.py index bbf43100a..8bd0d511d 100755 --- a/cmd/arcstat/arcstat.py +++ b/cmd/arcstat/arcstat.py @@ -97,8 +97,8 @@ cols = { v = {} hdr = ["time", "read", "miss", "miss%", "dmis", "dm%", "pmis", "pm%", "mmis", "mm%", "arcsz", "c"] -xhdr = ["time", "mfu", "mru", "mfug", "mrug", "eskip", "mtxmis", "rmis", - "dread", "pread", "read"] +xhdr = ["time", "mfu", "mru", "mfug", "mrug", "eskip", "mtxmis", "dread", + "pread", "read"] sint = 1 # Default interval is 1 second count = 1 # Default count is 1 hdr_intr = 20 # Print header every 20 lines of output |