当前位置:天才代写 > tutorial > Python教程 > 用python剧本监控并发量

用python剧本监控并发量

2017-11-02 08:00 星期四 所属: Python教程 浏览:1235

该剧本浸染用于查询日志已往一分钟内的并发量,并发单元位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)

 

    关键字:

天才代写-代写联系方式