nginx訪問日誌分析,篩選時間大於1秒的請求

2022-06-18 05:45:09 字數 1243 閱讀 3873

#!/usr/bin/env python

'''處理訪問日誌,篩選時間大於1秒的請求

'''with open('test.log','a+',encoding='utf-8') as f_a:

with open('wkxz-api.access.log') as f:

for line in f.readlines():

if line[-2:] == "-\n" :

num =float(line[-7:-2])

else:

num=float(line[-6:])

if num >= 1.000 :

f_a.write(line)

#!/bin/bash

cat wkxz-api.access.log | while read line

do#echo $line

time=`echo $line| awk '' | awk ''`

#echo $time

if [ "$time" -ge "1" ];then

echo $line >> wkxz-api.log

fidone

#!/usr/bin/env python

'''處理訪問日誌,篩選時間大於1秒的請求

'''with open('test.log','a+',encoding='utf-8') as f_a:

with open('wkxz-api.access.log') as f:

for line in f.readlines():

if line[-2:] == "-\n" :

num =float(line[-7:-2])

else:

num=float(line[-6:])

if num >= 1.000 :

f_a.write(line)

#!/bin/bash

cat wkxz-api.access.log | while read line

do#echo $line

time=`echo $line| awk '' | awk ''`

#echo $time

if [ "$time" -ge "1" ];then

echo $line >> wkxz-api.log

fidone

Nginx 訪問日誌分析

0 nginx日誌格式配置 1 統計pv數 1 統計所有的pv數 cat access.log wc l 2 統計當天的pv數 cat access.log sed n date d b y p wc l 3 統計指定某一天的pv數 cat access.log sed n 20 aug 2017 ...

Nginx 訪問日誌分析

0 nginx日誌格式配置 access log var log nginx access.log access 複製 1 統計pv數 1 統計所有的pv數 cat access.log wc l 2 統計當天的pv數 cat access.log sed n date d b y p wc l 3...

Awk分析nginx訪問日誌

awk是linux系統下乙個處理文字的程式語言工具,能用簡短的程式處理標準輸入或檔案 資料排序 計算以及生成報表等等,應用非常廣泛。預設日誌格式 remote addr remote user time local request status body bytes sent http refere...