jdk/src/share/classes/sun/tools/jstat/resources/jstat_options
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5778 ca3811dc046d
child 7816 55a18147b4bf
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 5778
diff changeset
     2
 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
option timestamp {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
    header "^Timestamp"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
    data (sun.os.hrt.ticks/sun.os.hrt.frequency)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
    width 15
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
option class {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    header "^Loaded^"	/* Number of classes loaded */
5778
ca3811dc046d 6959965: jstat: Add new -classload option to print class loading statistics
mchung
parents: 5506
diff changeset
    40
    data (java.cls.loadedClasses + java.cls.sharedLoadedClasses)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    header "^Bytes^"	/* Accumulated Size of classes loaded */
5778
ca3811dc046d 6959965: jstat: Add new -classload option to print class loading statistics
mchung
parents: 5506
diff changeset
    48
    data (sun.cls.loadedBytes + sun.cls.sharedLoadedBytes)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    width 7
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    header "^Unloaded^"	/* Number of classes unloaded */
5778
ca3811dc046d 6959965: jstat: Add new -classload option to print class loading statistics
mchung
parents: 5506
diff changeset
    56
    data (java.cls.unloadedClasses + java.cls.sharedUnloadedClasses)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    header "^Bytes^"	/* Accumulated size of classes unloaded */
5778
ca3811dc046d 6959965: jstat: Add new -classload option to print class loading statistics
mchung
parents: 5506
diff changeset
    64
    data (sun.cls.unloadedBytes + sun.cls.sharedUnloadedBytes)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    width 7
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    header "^Time^"	/* Accumulated time for class loading */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    data sun.cls.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
option compiler {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    header "^Compiled^"		/* Number of compilation tasks performed */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    data sun.ci.totalCompiles
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    header "^Failed^"		/* Number of failed compilation tasks */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    data sun.ci.totalBailouts
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    header "^Invalid^"		/* Number of invalidated compilation tasks */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    data sun.ci.totalInvalidates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    header "^Time^"		/* Time spent in compilation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    data java.ci.totalTime/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    header "^FailedType^"	/* Type of last failed compilation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    data sun.ci.lastFailedType
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    width 4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    header "^FailedMethod"	/* Name of class and method for last failed compile */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    data sun.ci.lastFailedMethod
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    align left
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    width 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
option gc {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    header "^S0C^"	/* Survivor 0 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    data sun.gc.generation.0.space.1.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    header "^S1C^"	/* Survivor 1 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    data sun.gc.generation.0.space.2.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    header "^S0U^"	/* Survivor 0 Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    data sun.gc.generation.0.space.1.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    header "^S1U^"	/* Survivor 1 Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    data sun.gc.generation.0.space.2.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    header "^EC^"	/* Eden Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    data sun.gc.generation.0.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    header "^EU^"	/* Eden Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    data sun.gc.generation.0.space.0.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    header "^OC^"	/* Old Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    data sun.gc.generation.1.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    header "^OU^"	/* Old Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    data sun.gc.generation.1.space.0.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    header "^PC^"	/* Perm Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    data sun.gc.generation.2.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    header "^PU^"	/* Perm Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    data sun.gc.generation.2.space.0.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    header "^YGCT^"	/* Young Generation Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    data sun.gc.collector.0.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    align center
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    header "^FGCT^"	/* Full Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    data sun.gc.collector.1.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    header "^GCT^"	/* Total Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
option gccapacity {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    header "^NGCMN^"	/* New Generation Capacity - Minimum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    data sun.gc.generation.0.minCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    header "^NGCMX^"	/* New Generation Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    data sun.gc.generation.0.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    header "^NGC^"	/* New Generation Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    data sun.gc.generation.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    header "^S0C^"	/* Survivor 0 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    data sun.gc.generation.0.space.1.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    header "^S1C"	/* Survivor 1 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    data sun.gc.generation.0.space.2.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    header "^EC^"	/* Eden Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    data sun.gc.generation.0.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    header "^OGCMN^"	/* Old Generation Capacity - Minumum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    data sun.gc.generation.1.minCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    header "^OGCMX^"	/* Old Generation Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    data sun.gc.generation.1.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    header "^OGC^"	/* Old Generation Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    data sun.gc.generation.1.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    header "^OC^"	/* Old Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    data sun.gc.generation.1.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    header "^PGCMN^"	/* Perm Generation Capacity - Minimum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    data sun.gc.generation.2.minCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    header "^PGCMX^"	/* Perm Generation Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    data sun.gc.generation.2.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    header "^PGC^"	/* Perm Generation Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    data sun.gc.generation.2.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    header "^PC^"	/* Perm Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    data sun.gc.generation.2.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
option gccause {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    header "^S0^"	/* Survivor 0 Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    data (1-((sun.gc.generation.0.space.1.capacity - sun.gc.generation.0.space.1.used)/sun.gc.generation.0.space.1.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    header "^S1^"	/* Survivor 1 Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    data (1-((sun.gc.generation.0.space.2.capacity - sun.gc.generation.0.space.2.used)/sun.gc.generation.0.space.2.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    header "^E^"	/* Eden Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    data (1-((sun.gc.generation.0.space.0.capacity - sun.gc.generation.0.space.0.used)/sun.gc.generation.0.space.0.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    header "^O^"	/* Old Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    data (1-((sun.gc.generation.1.space.0.capacity - sun.gc.generation.1.space.0.used)/sun.gc.generation.1.space.0.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    header "^P^"	/* Perm Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    data (1-((sun.gc.generation.2.space.0.capacity - sun.gc.generation.2.space.0.used)/sun.gc.generation.2.space.0.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    header "^YGCT^"	/* Young Generation Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    data sun.gc.collector.0.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    header "^FGCT^"	/* Full Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    data sun.gc.collector.1.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    header "^GCT^"	/* Total Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    header "^LGCC"	/* Last GC Cause */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    data sun.gc.lastCause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    align left
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    width 20
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    header "^GCC"	/* Current GC Cause */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
    data sun.gc.cause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    align left
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    width 20
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
option gcnew {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    header "^S0C^"	/* Survivor 0 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    data sun.gc.generation.0.space.1.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    header "^S1C^"	/* Survivor 1 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    data sun.gc.generation.0.space.2.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    header "^S0U^"	/* Survivor 0 Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    data sun.gc.generation.0.space.1.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    header "^S1U^"	/* Survivor 1 Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    data sun.gc.generation.0.space.2.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    header "^TT^"	/* Tenuring Threshold */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    data sun.gc.policy.tenuringThreshold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    width 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
    header "^MTT^"	/* Maximum Tenuring Threshold */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    data sun.gc.policy.maxTenuringThreshold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    width 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    header "^DSS^"	/* Desired Survivor Size */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    data sun.gc.policy.desiredSurvivorSize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    header "^EC^"	/* Eden Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    data sun.gc.generation.0.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    header "^EU^"	/* Eden Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    data sun.gc.generation.0.space.0.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    header "^YGCT^"	/* Young Generation Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    data sun.gc.collector.0.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
option gcnewcapacity {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    header "^NGCMN^"	/* New Generation Capacity - Minimum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    data sun.gc.generation.0.minCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    header "^NGCMX^"	/* New Generation Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    data sun.gc.generation.0.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    header "^NGC^"	/* New Generation Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    data sun.gc.generation.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    header "^S0CMX^"	/* Survivor 0 Space Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    data sun.gc.generation.0.space.1.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    header "^S0C^"	/* Survivor 0 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    data sun.gc.generation.0.space.1.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    header "^S1CMX^"	/* Survivor 1 Space Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    data sun.gc.generation.0.space.2.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    header "^S1C^"	/* Survivor 1 Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    data sun.gc.generation.0.space.2.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    header "^ECMX^"	/* Eden Space Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    data sun.gc.generation.0.space.0.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    header "^EC^"	/* Eden Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    data sun.gc.generation.0.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
option gcold {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    header "^PC^"	/* Perm Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    data sun.gc.generation.2.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    header "^PU^"	/* Perm Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    data sun.gc.generation.2.space.0.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    header "^OC^"	/* Old Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    data sun.gc.generation.1.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    width 11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    header "^OU^"	/* Old Space Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    data sun.gc.generation.1.space.0.used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    width 11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    header "^FGCT^"	/* Full Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    data sun.gc.collector.1.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    header "^GCT^"	/* Total Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
option gcoldcapacity {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    header "^OGCMN^"	/* Old Generation Capacity - Minumum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    data sun.gc.generation.1.minCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    width 11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    header "^OGCMX^"	/* Old Generation Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    data sun.gc.generation.1.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    width 11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    header "^OGC^"	/* Old Generation Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    data sun.gc.generation.1.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    width 11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    header "^OC^"	/* Old Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    data sun.gc.generation.1.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    width 11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    header "^FGCT^"	/* Full Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    data sun.gc.collector.1.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    header "^GCT^"	/* Total Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
option gcpermcapacity {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    header "^PGCMN^"	/* Perm Generation Capacity - Minumum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    data sun.gc.generation.2.minCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    header "^PGCMX^"	/* Perm Generation Capacity - Maximum */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    data sun.gc.generation.2.maxCapacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
    header "^PGC^"	/* Perm Generation Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    data sun.gc.generation.2.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    header "^PC^"	/* Perm Space Capacity - Current */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    data sun.gc.generation.2.space.0.capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    scale K
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    width 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    format "0.0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    header "^FGCT^"	/* Full Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    data sun.gc.collector.1.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    header "^GCT^"	/* Total Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
    data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
option gcutil {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
    header "^S0^"	/* Survivor 0 Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    data (1-((sun.gc.generation.0.space.1.capacity - sun.gc.generation.0.space.1.used)/sun.gc.generation.0.space.1.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    header "^S1^"	/* Survivor 1 Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    data (1-((sun.gc.generation.0.space.2.capacity - sun.gc.generation.0.space.2.used)/sun.gc.generation.0.space.2.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    header "^E^"	/* Eden Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
    data (1-((sun.gc.generation.0.space.0.capacity - sun.gc.generation.0.space.0.used)/sun.gc.generation.0.space.0.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    header "^O^"	/* Old Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    data (1-((sun.gc.generation.1.space.0.capacity - sun.gc.generation.1.space.0.used)/sun.gc.generation.1.space.0.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    header "^P^"	/* Perm Space - Percent Used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    data (1-((sun.gc.generation.2.space.0.capacity - sun.gc.generation.2.space.0.used)/sun.gc.generation.2.space.0.capacity)) * 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    format "0.00"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    header "^YGC^"	/* Young Generation Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    data sun.gc.collector.0.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
    header "^YGCT^"	/* Young Generation Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    data sun.gc.collector.0.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    header "^FGC^"	/* Full Collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    data sun.gc.collector.1.invocations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    width 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
    header "^FGCT^"	/* Full Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    data sun.gc.collector.1.time/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
    header "^GCT^"	/* Total Garbage Collection Time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    data (sun.gc.collector.0.time + sun.gc.collector.1.time)/sun.os.hrt.frequency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    width 8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    scale sec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    format "0.000"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
option printcompilation {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    header "^Compiled^"		/* Number of compilation tasks performed */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    data sun.ci.totalCompiles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    format "0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    header "^Size^"		/* Code Size in bytes of last compilation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
    data sun.ci.lastSize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    width 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    header "^Type^"		/* Type of last compilation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
    data sun.ci.lastType
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
    align right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
    width 4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
  column {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    header "^Method"		/* Name of class and method for last compile */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
    data sun.ci.lastMethod
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
    scale raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
    align left
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
    width 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
}