- 论坛徽章:
- 1
|
回复 12# q1208c
是的,真想好好分析的话awk是不行的,目前只简单统计了下非200响应的次数(总次数统计/按service统计/按client --> service统计)- #!/usr/bin/awk -f
- BEGIN{
- FS="";
- system("rm -f .httpcode");
- system("rm -f .upstream");
- system("rm -f .cip2service");
- }
- {
- print NR;
- split($11,upstream_addrs,", ");
- if ($5 != 200){
- httpcode[$5]++;
- for (idx in upstream_addrs){
- ups=upstream_addrs[idx];
- upstream[ups]++;
- cip2service[$5"_"$2"-->"ups]++;
- }
- }
- }
- END{
- for (code in httpcode) {print code,httpcode[code] >> ".httpcode"};
- for (ups in upstream) {print upstream[ups],ups >> ".upstream"};
- for (c2s in cip2service) {print cip2service[c2s],c2s >> ".cip2service"};
- }
复制代码 |
|