想基于nginx日志统计某一接口如秒杀的最大并发数
nginx日志格式是这样配置的
log_format: $remote_addr [$time_local] "$request" $status $upstream_response_time $body_bytes_sent
Nginx官方文档是这样定义time_local
的
$time_local
local time in the Common Log Format
现在不确定这是请求过来的时间 还是请求处理完毕后记录此条日志的时间 只有是前者才能基于该时间统计最大并发数吧
摘自:http://serverfault.com/questi...