用python脚本监控并发量
- 作者: 禽兽的忏悔-_-
- 来源: 51数据库
- 2022-08-12
该脚本作用用于查询日志过去一分钟内的并发量,并发单位位1分钟,结果打印在标准输出中,可以配合一些软件实现日志的并发实时监控,比如zabbix。
#! /usr/local/bin/python3
import sys
import re
import datetime
import os
def generate_previous_minutes():
format='%d/%b/%Y:%H:%M'
return (datetime.datetime.today()-datetime.timedelta(minutes=1)).strftime(format)
def check_logs(log_path,examine_minutes):
regex_minutes=re.compile(examine_minutes)
minutes_count=0
step=10*1024*1024
with open(log_path,encoding='Latin-1') as file:
line=file.readline()
while line:
time_line=line.split(' ')[3][1:]
if time_line>=examine_minutes:
file.seek(file.tell()-step)
file.readline()
break
file.seek(file.tell()+step)
if file.tell()>=os.path.getsize(log_path):
file.seek(file.tell()-step)
file.readline()
break
file.readline()
line=file.readline().strip()
for line in file:
line=line.strip()
words=line.split(' ')
if(regex_minutes.search(words[3])):
minutes_count+=1
print(minutes_count)
def main(log_path):
previous_minutes=generate_previous_minutes()
print(previous_minutes)
check_logs(log_path,previous_minutes)
if __name__ == '__main__':
log_path=sys.argv[1]
main(log_path)
推荐阅读
热点文章
Discord.py(重写)on_member_update 无法正常工作
0
Discord.py 在 vc 中获取用户分钟数
0
discord.py 重写 |为我的命令出错
0
Discord.py rewrite 如何 DM 命令?
0
播放音频时,最后一部分被切断.如何解决这个问题?(discord.py)
0
在消息删除消息 Discord.py
0
如何使 discord.py 机器人私人/直接消息不是作者的人?
0
(Discord.py) 如何获取整个嵌入内容?
0
Discord bot 尽管获得了许可,但不能提及所有人
0
Discord.py discord.NotFound 异常
0
