1.摸鱼

退休吧 啊啊啊啊

2.nignx配置日志

log_format ccc '$remote_addr $remote_user [$time_local] “$request” $http_host ' '$status $upstream_status $body_bytes_sent “$http_referer”' '”$http_user_agent” $ssl_protocol $ssl_cipher $upstream_addr' ' TIME:$request_time-$upstream_response_time';
access_log /home/wwwlogs/jwdzg.log ccc;
查看请求时间大的方法
tail -100f wxdfw.log | grep "TIME:[0-9]\{1,\}.[0-9]\{1,\}"
tail -100f wxdfw.log | grep "TIME:[1-9]\{1,\}.[0-9]\{1,\}"
tail -100f dfw.log | grep "TIME:[1-9]\{1,\}.[0-9]\{1,\}"
tail -100f dfw.log | grep "TIME:[1-9][0-9]\{1,\}.[0-9]\{1,\}"
cat dfw.log | grep "TIME:[1-9][0-9]\{1,\}.[0-9]\{1,\}"

...todo