tcpdump 攔截包:
tcpdump -i any port 8082 -s0 -w fwx.cap
strings fwx.cap > aa.txt
sar -d 5 > zuhe.txt
iostat -d -m 3
iostat -ct 10
[root@station45 ~]# tcpdump -i any port 26266 -s0 -w jnn.cap
tcpdump: listening on any, link-type linux_sll (linux cooked), capture size 65535 bytes
^z[7]+ stopped tcpdump -i any port 26266 -s0 -w jnn.cap
[root@station45 ~]#
[root@station45 ~]# strings jnn.cap > jjj.txt
[root@station45 ~]# tail -f jjj.txt
效能測試統計log:
grep -c 『deadletterquque』 integeration.log*
grep -c 『error』 integeration.log*
grep -c 『rfidprocesstesthandler finish』 integeration.log*
#start monitor
nohup vmstat 60 > /tmp/jenny/webadmin1_workspace/vmstat.log 2>&1 &
nohup iostat -xtdc 120 > /tmp/jenny/webadmin1_workspace/iostat.log 2>&1 &
nohup iostat -m 60 > /tmp/jenny/webadmin1_workspace/iostat_m.log 2>&1 &
1,s /s
trin
g/re
plae
/g:在
last
line
mode
輸入「1
,s/string/replae/g:在last line mode輸入「1,
s/stri
ng/r
epla
e/g:
在las
tlin
emod
e輸入「
1,s/string/replace/g」會將全文的string字串取代為replace字串,其中1,s就是
指搜尋區
間為文章
從頭至尾
的意思,
g則是表
示全部取
代不必確
認。
s就是指搜尋區間為文章從頭至尾的意思,g則是表示全部取代不必確認。 %s/string/replace/c:同樣會將全文的string字串取代為replace字串,和上面指令不同的地方是,%s和1,
s就是指搜尋
區間為文
章從頭至
尾的意思
,g則是
表示全部
取代不必
確認。s是相同的功能,c則是表示要替代之前必須再次確認是否取代。
1,20s/string/replace/g:將1至20行間的string替代為relpace字串。
grep -c 『exception』 integeration.log* > logexception
grep -c 『error』 integeration.log* > logerror
grep -c 『tag success』 integeration.log* > logstatic
grep -c 『received』 integeration.log*
借助tcpdump統計http請求
這裡所說的統計http請求,是指統計qps 每秒請求數 統計前十條被訪問最多的url。一般做這樣的統計時,我們經常會使用 訪問日誌來統計。當我們來到乙個陌生的伺服器環境,需要立即統計當前前十條被訪問最多的url,來初步確定是否存在攻擊行為,使用tcpdump則簡單得多,因為我們不需要關心 日誌在哪,...
借助tcpdump統計http請求
這裡所說的統計http請求,是指統計qps 每秒請求數 統計前十條被訪問最多的url。一般做這樣的統計時,我們經常會使用 訪問日誌來統計。當我們來到乙個陌生的伺服器環境,需要立即統計當前前十條被訪問最多的url,來初步確定是否存在攻擊行為,使用tcpdump則簡單得多,因為我們不需要關心 日誌在哪,...
效能測試 效能測試步驟
針對此次庫內作業效能測試,梳理一下期間的工作流程 梳理已有的介面指令碼,確認需要做效能測試的幾個介面,即使用率高,對效能有要求的幾個主要介面。結合頁面的操作,和確認的介面,梳理具體的業務邏輯 同時,請開發人員部署了測試環境。測試環境的伺服器指標,盡量和生產環境一致。部署的時候,負載均衡等情況也盡量和...