Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
44eb0157
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
44eb0157
编写于
8月 29, 2013
作者:
S
stefank
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8014659: NPG: performance counters for compressed klass space
Reviewed-by: jmasa, sla Contributed-by: erik.helin@oracle.com
上级
ace29d49
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
168 addition
and
72 deletion
+168
-72
src/share/classes/sun/tools/jstat/resources/jstat_options
src/share/classes/sun/tools/jstat/resources/jstat_options
+96
-0
test/sun/tools/jstat/gcCapacityOutput1.awk
test/sun/tools/jstat/gcCapacityOutput1.awk
+4
-4
test/sun/tools/jstat/gcCauseOutput1.awk
test/sun/tools/jstat/gcCauseOutput1.awk
+4
-4
test/sun/tools/jstat/gcMetaCapacityOutput1.awk
test/sun/tools/jstat/gcMetaCapacityOutput1.awk
+4
-4
test/sun/tools/jstat/gcOldOutput1.awk
test/sun/tools/jstat/gcOldOutput1.awk
+4
-4
test/sun/tools/jstat/gcOutput1.awk
test/sun/tools/jstat/gcOutput1.awk
+4
-4
test/sun/tools/jstat/lineCounts1.awk
test/sun/tools/jstat/lineCounts1.awk
+8
-8
test/sun/tools/jstat/lineCounts2.awk
test/sun/tools/jstat/lineCounts2.awk
+4
-4
test/sun/tools/jstat/lineCounts3.awk
test/sun/tools/jstat/lineCounts3.awk
+13
-13
test/sun/tools/jstat/lineCounts4.awk
test/sun/tools/jstat/lineCounts4.awk
+15
-15
test/sun/tools/jstat/timeStamp1.awk
test/sun/tools/jstat/timeStamp1.awk
+4
-4
test/sun/tools/jstatd/jstatGcutilOutput1.awk
test/sun/tools/jstatd/jstatGcutilOutput1.awk
+8
-8
未找到文件。
src/share/classes/sun/tools/jstat/resources/jstat_options
浏览文件 @
44eb0157
...
@@ -207,6 +207,22 @@ option gc {
...
@@ -207,6 +207,22 @@ option gc {
scale K
scale K
format "0.0"
format "0.0"
}
}
column {
header "^CCSC^" /* Compressed Class Space Capacity - Current */
data sun.gc.compressedclassspace.capacity
align center
width 6
scale K
format "0.0"
}
column {
header "^CCSU^" /* Compressed Class Space Used */
data sun.gc.compressedclassspace.used
align center
width 6
scale K
format "0.0"
}
column {
column {
header "^YGC^" /* Young Generation Collections */
header "^YGC^" /* Young Generation Collections */
data sun.gc.collector.0.invocations
data sun.gc.collector.0.invocations
...
@@ -353,6 +369,30 @@ option gccapacity {
...
@@ -353,6 +369,30 @@ option gccapacity {
width 8
width 8
format "0.0"
format "0.0"
}
}
column {
header "^CCSMN^" /* Compressed Class Space Capacity - Minimum */
data sun.gc.compressedclassspace.minCapacity
scale K
align right
width 8
format "0.0"
}
column {
header "^CCSMX^" /* Compressed Class Space Capacity - Maximum */
data sun.gc.compressedclassspace.maxCapacity
scale K
align right
width 8
format "0.0"
}
column {
header "^CCSC^" /* Compressed Class Space Capacity - Current */
data sun.gc.compressedclassspace.capacity
scale K
align right
width 8
format "0.0"
}
column {
column {
header "^YGC^" /* Young Generation Collections */
header "^YGC^" /* Young Generation Collections */
data sun.gc.collector.0.invocations
data sun.gc.collector.0.invocations
...
@@ -411,6 +451,14 @@ option gccause {
...
@@ -411,6 +451,14 @@ option gccause {
scale raw
scale raw
format "0.00"
format "0.00"
}
}
column {
header "^CCS^" /* Compressed Class Space - Percent Used */
data (1-((sun.gc.compressedclassspace.capacity - sun.gc.compressedclassspace.used)/sun.gc.compressedclassspace.capacity)) * 100
align right
width 6
scale raw
format "0.00"
}
column {
column {
header "^YGC^" /* Young Generation Collections */
header "^YGC^" /* Young Generation Collections */
data sun.gc.collector.0.invocations
data sun.gc.collector.0.invocations
...
@@ -661,6 +709,22 @@ option gcold {
...
@@ -661,6 +709,22 @@ option gcold {
scale K
scale K
format "0.0"
format "0.0"
}
}
column {
header "^CCSC^" /* Compressed Class Space Capacity - Current */
data sun.gc.compressedclassspace.capacity
width 8
align right
scale K
format "0.0"
}
column {
header "^CCSU^" /* Compressed Class Space Used */
data sun.gc.compressedclassspace.used
width 8
align right
scale K
format "0.0"
}
column {
column {
header "^OC^" /* Old Space Capacity - Current */
header "^OC^" /* Old Space Capacity - Current */
data sun.gc.generation.1.space.0.capacity
data sun.gc.generation.1.space.0.capacity
...
@@ -801,6 +865,30 @@ option gcmetacapacity {
...
@@ -801,6 +865,30 @@ option gcmetacapacity {
width 10
width 10
format "0.0"
format "0.0"
}
}
column {
header "^CCSMN^" /* Compressed Class Space Capacity - Minimum */
data sun.gc.compressedclassspace.minCapacity
scale K
align right
width 10
format "0.0"
}
column {
header "^CCSMX^" /* Compressed Class Space Capacity - Maximum */
data sun.gc.compressedclassspace.maxCapacity
scale K
align right
width 10
format "0.0"
}
column {
header "^CCSC^" /* Compressed Class Space Capacity - Current */
data sun.gc.compressedclassspace.capacity
scale K
align right
width 10
format "0.0"
}
column {
column {
header "^YGC^" /* Young Generation Collections */
header "^YGC^" /* Young Generation Collections */
data sun.gc.collector.0.invocations
data sun.gc.collector.0.invocations
...
@@ -875,6 +963,14 @@ option gcutil {
...
@@ -875,6 +963,14 @@ option gcutil {
scale raw
scale raw
format "0.00"
format "0.00"
}
}
column {
header "^CCS^" /* Compressed Class Space Space - Percent Used */
data (1-((sun.gc.compressedclassspace.capacity - sun.gc.compressedclassspace.used)/sun.gc.compressedclassspace.capacity)) * 100
align right
width 6
scale raw
format "0.00"
}
column {
column {
header "^YGC^" /* Young Generation Collections */
header "^YGC^" /* Young Generation Collections */
data sun.gc.collector.0.invocations
data sun.gc.collector.0.invocations
...
...
test/sun/tools/jstat/gcCapacityOutput1.awk
浏览文件 @
44eb0157
...
@@ -3,19 +3,19 @@
...
@@ -3,19 +3,19 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# NGCMN NGCMX NGC S0C S1C EC OGCMN OGCMX OGC OC
MCMN MCMX MC
YGC FGC
# NGCMN NGCMX NGC S0C S1C EC OGCMN OGCMX OGC OC
MCMN MCMX MC CCSMN CCSMX CCSC
YGC FGC
#
2176.0 7232.0 2176.0 64.0 64.0 2048.0 6016.0 58304.0 6016.0 6016.0 8192.0 65536.0 8192.0 8192.0
0
#
4096.0 657408.0 8192.0 512.0 512.0 3072.0 6144.0 1312768.0 6144.0 6144.0 512.0 132096.0 5120.0 512.0 131072.0 512.0 1
0
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ NGCMN NGCMX NGC S0C S1C EC OGCMN OGCMX OGC OC MCMN MCMX MC YGC FGC $/
{
/^ NGCMN NGCMX NGC S0C S1C EC OGCMN OGCMX OGC OC MCMN MCMX MC
CCSMN CCSMX CCSC
YGC FGC $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/gcCauseOutput1.awk
浏览文件 @
44eb0157
...
@@ -3,15 +3,15 @@
...
@@ -3,15 +3,15 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0 S1 E O
P
YGC YGCT FGC FGCT GCT LGCC GCC
# S0 S1 E O
M CCS
YGC YGCT FGC FGCT GCT LGCC GCC
# 0.00
100.00 14.01 3.06 23.20 1 0.032 0 0.000 0.032 Allocation Failure No GC
# 0.00
0.00 0.00 9.97 90.94 87.70 2 0.013 0 0.000 0.013 Allocation Failure No GC
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ S0 S1 E O M YGC YGCT FGC FGCT GCT LGCC GCC $/
{
/^ S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT LGCC GCC $/
{
headerlines
++
;
headerlines
++
;
}
}
...
@@ -23,7 +23,7 @@ BEGIN {
...
@@ -23,7 +23,7 @@ BEGIN {
# or more letters and spaces. It also provides for the ".", "(", and ")"
# or more letters and spaces. It also provides for the ".", "(", and ")"
# characters to allow for the string "System.gc()".
# characters to allow for the string "System.gc()".
#
#
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
a-zA-Z
]
+
[
a-zA-Z
\.\(\)]
*
[
]
*
[
a-zA-Z
]
+
[
a-zA-Z
\.\(\)]
*$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
a-zA-Z
]
+
[
a-zA-Z
\.\(\)]
*
[
]
*
[
a-zA-Z
]
+
[
a-zA-Z
\.\(\)]
*$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/gcMetaCapacityOutput1.awk
浏览文件 @
44eb0157
...
@@ -3,18 +3,18 @@
...
@@ -3,18 +3,18 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# MCMN MCMX MC YGC FGC FGCT GCT
# MCMN MCMX MC
CCSMN CCSMX CCSC
YGC FGC FGCT GCT
#
8192.0 65536.0 8192.0 8192.0 1 0 0.000 0.029
#
512.0 132096.0 5120.0 512.0 131072.0 512.0 1 0 0.000 0.004
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ MCMN MCMX MC YGC FGC FGCT GCT $/
{
/^ MCMN MCMX MC
CCSMN CCSMX CCSC
YGC FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/gcOldOutput1.awk
浏览文件 @
44eb0157
...
@@ -3,19 +3,19 @@
...
@@ -3,19 +3,19 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# MC MU OC OU YGC FGC FGCT GCT
# MC MU
CCSC CCSU
OC OU YGC FGC FGCT GCT
#
8192.0 1877.3 6016.0 180.8 1 0 0.000 0.030
#
5120.0 4152.0 512.0 397.9 6144.0 200.0 1 0 0.000 0.005
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ MC MU OC OU YGC FGC FGCT GCT $/
{
/^ MC MU
CCSC CCSU
OC OU YGC FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/gcOutput1.awk
浏览文件 @
44eb0157
...
@@ -3,19 +3,19 @@
...
@@ -3,19 +3,19 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0C S1C S0U S1U EC EU OC OU MC MU YGC YGCT FGC FGCT GCT
# S0C S1C S0U S1U EC EU OC OU MC MU
CCSC CCSU
YGC YGCT FGC FGCT GCT
#
64.0 64.0 0.0 0.0 2048.0 1711.2 6016.0 0.0 8192.0 1948.6 0 0.000 0 0.000 0.000
#
512.0 512.0 0.0 496.0 3072.0 615.5 6144.0 280.0 5120.0 4176.0 512.0 401.0 1 0.005 0 0.000 0.005
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ S0C S1C S0U S1U EC EU OC OU MC MU YGC YGCT FGC FGCT GCT $/
{
/^ S0C S1C S0U S1U EC EU OC OU MC MU
CCSC CCSU
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/lineCounts1.awk
浏览文件 @
44eb0157
...
@@ -3,22 +3,22 @@
...
@@ -3,22 +3,22 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0 S1 E O M YGC YGCT FGC FGCT GCT
# S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT
# 0.00
100.00 68.87 1.24 27.75 1 0.044 0 0.000 0.044
# 0.00
93.76 28.80 1.82 77.74 68.02 1 0.005 0 0.000 0.005
# 0.00
100.00 68.87 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00
93.76 73.04 1.82 77.74 68.02 1 0.005 0 0.000 0.005
# 0.00
100.00 68.87 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00
93.76 73.04 1.82 77.74 68.02 1 0.005 0 0.000 0.005
# 0.00
100.00 70.89 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00
93.76 73.04 1.82 77.74 68.02 1 0.005 0 0.000 0.005
# 0.00
100.00 70.89 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00
93.76 75.00 1.82 77.74 68.02 1 0.005 0 0.000 0.005
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ S0 S1 E O M YGC YGCT FGC FGCT GCT $/
{
/^ S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/lineCounts2.awk
浏览文件 @
44eb0157
...
@@ -3,18 +3,18 @@
...
@@ -3,18 +3,18 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0 S1 E O M YGC YGCT FGC FGCT GCT
# S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT
# 0.00
100.00 68.87 1.24 27.75 1 0.044 0 0.000 0.044
# 0.00
93.76 28.40 1.82 77.74 68.02 1 0.005 0 0.000 0.005
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ S0 S1 E O M YGC YGCT FGC FGCT GCT $/
{
/^ S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/lineCounts3.awk
浏览文件 @
44eb0157
...
@@ -3,27 +3,27 @@
...
@@ -3,27 +3,27 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0 S1 E O M YGC YGCT FGC FGCT GCT
# S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT
# 0.00 9
9.99 66.81 1.24 26.55 1 0.028 0 0.000 0.028
# 0.00 9
3.76 26.48 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 68.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 71.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 70.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 73.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 70.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 73.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 70.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 73.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 72.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 75.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 72.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 75.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 74.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 77.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 74.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
3.76 77.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
# 0.00 9
9.99 76.81 1.24 27.85 1 0.028 0 0.000 0.028
# 0.00 9
3.76 77.58 1.95 77.78 68.02 1 0.006 0 0.000 0.006
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ S0 S1 E O M YGC YGCT FGC FGCT GCT $/
{
/^ S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstat/lineCounts4.awk
浏览文件 @
44eb0157
...
@@ -3,30 +3,30 @@
...
@@ -3,30 +3,30 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0 S1 E O M YGC YGCT FGC FGCT GCT
# S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT
# 0.00 9
9.99 66.81 1.24 26.55 1 0.028 0 0.000 0.028
# 0.00 9
6.88 66.55 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 68.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 71.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 70.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 73.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 70.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 73.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 70.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 73.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 72.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 75.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 72.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 75.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 74.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 77.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 74.81 1.24 27.84 1 0.028 0 0.000 0.028
# 0.00 9
6.88 77.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 9
9.99 76.81 1.24 27.85 1 0.028 0 0.000 0.028
# 0.00 9
6.88 77.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# S0 S1 E O
P
YGC YGCT FGC FGCT GCT
# S0 S1 E O
M CCS
YGC YGCT FGC FGCT GCT
# 0.00 9
9.99 76.81 1.24 27.85 1 0.028 0 0.000 0.028
# 0.00 9
6.88 79.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
datalines2
=
0
;
datalines2
=
0
;
}
}
/^ S0 S1 E O M YGC YGCT FGC FGCT GCT $/
{
/^ S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
if
(
headerlines
==
2
)
{
if
(
headerlines
==
2
)
{
datalines2
++
;
datalines2
++
;
}
}
...
...
test/sun/tools/jstat/timeStamp1.awk
浏览文件 @
44eb0157
...
@@ -3,18 +3,18 @@
...
@@ -3,18 +3,18 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
#
S0 S1 E O M
YGC YGCT FGC FGCT GCT
#
Timestamp S0 S1 E O M CCS
YGC YGCT FGC FGCT GCT
#
0.00 100.00 68.87 1.24 27.75 1 0.044 0 0.000 0.04
4
#
0.3 0.00 100.00 68.74 1.95 77.73 68.02 1 0.004 0 0.000 0.00
4
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^Timestamp S0 S1 E O M YGC YGCT FGC FGCT GCT $/
{
/^Timestamp S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
test/sun/tools/jstatd/jstatGcutilOutput1.awk
浏览文件 @
44eb0157
...
@@ -3,22 +3,22 @@
...
@@ -3,22 +3,22 @@
# that the numerical values conform to a specific pattern, rather than
# that the numerical values conform to a specific pattern, rather than
# specific values.
# specific values.
#
#
# S0 S1 E O M YGC YGCT FGC FGCT GCT
# S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT
# 0.00 100.00
68.87 1.24 27.75 1 0.044 0 0.000 0.044
# 0.00 100.00
56.99 7.81 95.03 87.56 1 0.009 0 0.000 0.009
# 0.00 100.00 6
8.87 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00 100.00 6
3.64 7.81 95.03 87.56 1 0.009 0 0.000 0.009
# 0.00 100.00 6
8.87 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00 100.00 6
4.68 7.81 95.03 87.56 1 0.009 0 0.000 0.009
# 0.00 100.00
70.89 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00 100.00
65.73 7.81 95.03 87.56 1 0.009 0 0.000 0.009
# 0.00 100.00
70.89 1.24 27.84 1 0.044 0 0.000 0.044
# 0.00 100.00
67.22 7.81 95.03 87.56 1 0.009 0 0.000 0.009
BEGIN
{
BEGIN
{
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
headerlines
=
0
;
datalines
=
0
;
totallines
=
0
}
}
/^ S0 S1 E O M YGC YGCT FGC FGCT GCT $/
{
/^ S0 S1 E O M
CCS
YGC YGCT FGC FGCT GCT $/
{
headerlines
++
;
headerlines
++
;
}
}
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
/^
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+
[
]
*
[
0-9
]
+
\.[
0-9
]
+$/
{
datalines
++
;
datalines
++
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录