如何计算 nginx access.log 中的唯一访客数量?

如何计算 nginx access.log 中的唯一访客数量?

我尝试过这个,但它总是返回 1。

grep "\[10/Nov/2012" /path/to/access.log | cut -d" " -f1 | sort | uniq | wc -l

答案1

tom@webserver:/srv/tomoconnor/logfiles$ awk '/10.Nov.2012/ {print $1}' < access_log|sort|uniq |wc -l
169

我更喜欢 awk 而不是 grep 和 cut,因为你可以告诉它你想要哪个字段。然后只需 sort、uniq 和 count。

你可以计算出每个 IP 的点击次数,如果你删除wc -l并制作uniquniq -c

相关内容