aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/arcstat
diff options
context:
space:
mode:
authorIsaac Huang <[email protected]>2014-10-30 13:29:58 -0600
committerBrian Behlendorf <[email protected]>2014-11-14 15:09:09 -0800
commit1c49ac575d26a072b53c93fcdf6bd0655343ef22 (patch)
tree06c254d161a5d59e9219985d8e5a52468c07a1ce /cmd/arcstat
parentb31d8ea77cd91dce29acf3ec448180f3715cca13 (diff)
Fix inaccurate field descriptions
The field descriptions from arcstat.py -v for the demand accesses are inaccurate. They all begin with "Demand Data" yet the fields actually covered both demand data and demand meta-data accesses. Signed-off-by: Isaac Huang <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #2842
Diffstat (limited to 'cmd/arcstat')
-rwxr-xr-xcmd/arcstat/arcstat.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/arcstat/arcstat.py b/cmd/arcstat/arcstat.py
index ba792358c..a5e0653b3 100755
--- a/cmd/arcstat/arcstat.py
+++ b/cmd/arcstat/arcstat.py
@@ -61,10 +61,10 @@ cols = {
"read": [4, 1000, "Total ARC accesses per second"],
"hit%": [4, 100, "ARC Hit percentage"],
"miss%": [5, 100, "ARC miss percentage"],
- "dhit": [4, 1000, "Demand Data hits per second"],
- "dmis": [4, 1000, "Demand Data misses per second"],
- "dh%": [3, 100, "Demand Data hit percentage"],
- "dm%": [3, 100, "Demand Data miss percentage"],
+ "dhit": [4, 1000, "Demand hits per second"],
+ "dmis": [4, 1000, "Demand misses per second"],
+ "dh%": [3, 100, "Demand hit percentage"],
+ "dm%": [3, 100, "Demand miss percentage"],
"phit": [4, 1000, "Prefetch hits per second"],
"pmis": [4, 1000, "Prefetch misses per second"],
"ph%": [3, 100, "Prefetch hits percentage"],
@@ -83,7 +83,7 @@ cols = {
"eskip": [5, 1000, "evict_skip per second"],
"mtxmis": [6, 1000, "mutex_miss per second"],
"rmis": [4, 1000, "recycle_miss per second"],
- "dread": [5, 1000, "Demand data accesses per second"],
+ "dread": [5, 1000, "Demand accesses per second"],
"pread": [5, 1000, "Prefetch accesses per second"],
"l2hits": [6, 1000, "L2ARC hits per second"],
"l2miss": [6, 1000, "L2ARC misses per second"],