操作文件-取出一个60s内log日志中ip访问次数超过100次的ip

Posted fandonghua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了操作文件-取出一个60s内log日志中ip访问次数超过100次的ip相关的知识,希望对你有一定的参考价值。

import time
a=0
while True:
d=
f = open(r"/Users/**juan/Downloads/access.log",encoding="utf-8")
f.seek(a)
for line in f:
if line.split() !="":
f1=line.split(" ")[0]
if f1 not in d:
d[f1]=1
else:
d[f1] += 1
a=f.tell()
print()
for f1 in d:
if d.get(f1) > 100:
print(" %s 出现的次数超过100次"%f1)
time.sleep(60)

以上是关于操作文件-取出一个60s内log日志中ip访问次数超过100次的ip的主要内容,如果未能解决你的问题,请参考以下文章

Linux学习29-awk提取log日志信息,统计日志里面ip访问次数排序

Linux 文件日志筛选操作

使用python控制nginx禁封ip

统计日志文件里访问量前十的ip并按从多到少排列

访问日志access.log统计ip和每个地址访问的次数

使用awk统nginx日志文件ip访问站点次数