bjghzly 发表于 2018-12-4 11:04:14

tomcat status html内容处理 awk

  

# cat handle.sh
#!/bin/sh
awk '/Free memory:/{print "Free memory: " $4}' a.txt
awk '/Total memory:/{print "Total memory: " $8}' a.txt
awk '/Max memory:/{print "Max memory: " $12}' a.txt
for n in 'Eden Space''Survivor Space' 'Tenured Gen' 'Code Cache' 'Compressed Class Space' 'Metaspace'
do
awk -F"($n)+"'/Eden Space/{ print $2}' a.txt |awk -v name="$n" -F'[()]+' '{print name ": "$5 ""$7 ""$9 ""$11}'
done  

  

  html内容:
curl http://tomcat:s3cret@192.168.10.12:8080/manager/status?JSON=true


H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}
table {
    width: 100%;
}
td.page-title {
    text-align: center;
    vertical-align: top;
    font-family:sans-serif,Tahoma,Arial;
    font-weight: bold;
    background: white;
    color: black;
}
td.title {
    text-align: left;
    vertical-align: top;
    font-family:sans-serif,Tahoma,Arial;
    font-style:italic;
    font-weight: bold;
    background: #D2A41C;
}
td.header-left {
    text-align: left;
    vertical-align: top;
    font-family:sans-serif,Tahoma,Arial;
    font-weight: bold;
    background: #FFDC75;
}
td.header-center {
    text-align: center;
    vertical-align: top;
    font-family:sans-serif,Tahoma,Arial;
    font-weight: bold;
    background: #FFDC75;
}
td.row-left {
    text-align: left;
    vertical-align: middle;
    font-family:sans-serif,Tahoma,Arial;
    color: black;
}
td.row-center {
    text-align: center;
    vertical-align: middle;
    font-family:sans-serif,Tahoma,Arial;
    color: black;
}
td.row-right {
    text-align: right;
    vertical-align: middle;
    font-family:sans-serif,Tahoma,Arial;
    color: black;
}
TH {
    text-align: center;
    vertical-align: top;
    font-family:sans-serif,Tahoma,Arial;
    font-weight: bold;
    background: #FFDC75;
}
TD {
    text-align: center;
    vertical-align: middle;
    font-family:sans-serif,Tahoma,Arial;
    color: black;
}
form {
    margin: 1;
}
form.inline {
    display: inline;
}

/manager





   
   
   
   
   
   







   Server Status






Manager


List Applications
HTML Manager Help
Manager Help
Complete Server Status





Server Information


Tomcat Version
JVM Version
JVM Vendor
OS Name
OS Version
OS Architecture
Hostname
IP Address


Apache Tomcat/7.0.53
1.8.0_91-b14
Oracle Corporation
Linux
2.6.32-431.el6.x86_64
amd64
localhost
127.0.0.1



JVM Free memory: 27.21 MB Total memory: 58.00 MB Max memory: 928.00 MBMemory PoolTypeInitialTotalMaximumUsedEden SpaceHeap memory16.00 MB16.00 MB256.00 MB10.50 MB (4%)Survivor SpaceHeap memory2.00 MB2.00 MB32.00 MB0.82 MB (2%)Tenured GenHeap memory40.00 MB40.00 MB640.00 MB19.45 MB (3%)Code CacheNon-heap memory2.43 MB6.62 MB240.00 MB6.49 MB (2%)Compressed Class SpaceNon-heap memory0.00 MB2.12 MB1024.00 MB1.95 MB (0%)MetaspaceNon-heap memory0.00 MB18.37 MB-0.00 MB17.73 MB"ajp-bio-8009" Max threads: 200 Current thread count: 0 Current thread busy: 0 Max processing time: 0 ms Processing time: 0.0 s Request count: 0 Error count: 0 Bytes received: 0.00 MB Bytes sent: 0.00 MBStageTimeB SentB RecvClient (Forwarded)Client (Actual)VHostRequestP: Parse and prepare request S: Service F: Finishing R: Ready K: Keepalive"http-bio-8080" Max threads: 200 Current thread count: 10 Current thread busy: 1 Max processing time: 166 ms Processing time: 0.552 s Request count: 47 Error count: 6 Bytes received: 0.00 MB Bytes sent: 0.27 MBStageTimeB SentB RecvClient (Forwarded)Client (Actual)VHostRequestS1 ms0 KB0 KB192.168.10.12192.168.10.12192.168.10.12GET /manager/status?JSON=true HTTP/1.1R??????R??????R??????P: Parse and prepare request S: Service F: Finishing R: Ready K: Keepalive

Copyright © 1999-2014, Apache Software Foundation

  




页: [1]
查看完整版本: tomcat status html内容处理 awk