pull/632/head
Mr Chen 6 months ago
parent f685054a9a
commit ee64e55eca
  1. 18
      web/admin/__init__.py
  2. 7
      web/config.py
  3. 9
      web/utils/email.py
  4. 61
      web/utils/enhanced_log_rotation.py

@ -171,6 +171,24 @@ def webssh(data):
shell.run(data)
return
# File logging
logger = logging.getLogger('werkzeug')
logger.setLevel(config.CONSOLE_LOG_LEVEL)
from utils.enhanced_log_rotation import EnhancedRotatingFileHandler
fh = EnhancedRotatingFileHandler(config.LOG_FILE,
config.LOG_ROTATION_SIZE,
config.LOG_ROTATION_AGE,
config.LOG_ROTATION_MAX_LOG_FILES)
fh.setLevel(config.FILE_LOG_LEVEL)
app.logger.addHandler(fh)
logger.addHandler(fh)
# Console logging
ch = logging.StreamHandler()
ch.setLevel(config.CONSOLE_LOG_LEVEL)
ch.setFormatter(logging.Formatter(config.CONSOLE_LOG_FORMAT))
# Log the startup
app.logger.info('########################################################')
app.logger.info('Starting %s v%s...', config.APP_NAME, config.APP_VERSION)

@ -46,11 +46,14 @@ DATA_DIR = mw.getPanelDataDir()
# 日志文件名。这将进入数据目录,服务器模式下的非Windows平台除外。
LOG_FILE = os.path.join(mw.getMWLogs(), APP_LOG_NAME + '.log')
CONSOLE_LOG_FORMAT = '%(asctime)s: %(levelname)s\t%(name)s:\t%(message)s'
FILE_LOG_FORMAT = '%(asctime)s: %(levelname)s\t%(name)s:\t%(message)s'
# 日志旋转设置日志文件将根据LOG_ROTATION_SIZE和LOG_ROTATION_AGE的值进行切换。
# 旋转的文件将以格式命名Y-m-d_H-M-S
LOG_ROTATION_SIZE = 10 # MBs
LOG_ROTATION_SIZE = 1 # MBs
LOG_ROTATION_AGE = 1440 # minutes
LOG_ROTATION_MAX_LOG_FILES = 90 # 要保留的最大备份数
LOG_ROTATION_MAX_LOG_FILES = 5 # 要保留的最大备份数
# 用于存储用户帐户和设置的SQLite数据库的默认路径。
# 此默认设置将文件放置在与此相同的目录中 配置文件,但会生成一个在整个应用程序中使用的绝对路径。

@ -1,5 +1,14 @@
# coding:utf-8
# ---------------------------------------------------------------------------------
# MW-Linux面板
# ---------------------------------------------------------------------------------
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
# ---------------------------------------------------------------------------------
# Author: midoks <midoks@163.com>
# ---------------------------------------------------------------------------------
import smtplib
from email import encoders

@ -0,0 +1,61 @@
# coding:utf-8
# ---------------------------------------------------------------------------------
# MW-Linux面板
# ---------------------------------------------------------------------------------
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
# ---------------------------------------------------------------------------------
# Author: midoks <midoks@163.com>
# ---------------------------------------------------------------------------------
import re
from logging import handlers
class EnhancedRotatingFileHandler(handlers.TimedRotatingFileHandler,
handlers.RotatingFileHandler):
"""
Handler for logging to a set of files, which switches from one file
to the next when the current file reaches a certain size, or at certain
timed intervals
@filename - log file name
@max_bytes - file size in bytes to rotate file
@interval - Duration to rotate file
@backup_count - Maximum number of files to retain
@encoding - file encoding
@when - 'when' events supported:
# S - Seconds
# M - Minutes
# H - Hours
# D - Days
# midnight - roll over at midnight
# W{0-6} - roll over on a certain day; 0 - Monday
Here we are defaulting rotation with minutes interval
"""
def __init__(self, filename, max_bytes=1, interval=60, backup_count=0,
encoding=None, when='M'):
max_bytes = max_bytes * 1024 * 1024
handlers.TimedRotatingFileHandler.__init__(self, filename=filename,
when=when,
interval=interval,
backupCount=backup_count,
encoding=encoding)
handlers.RotatingFileHandler.__init__(self, filename=filename,
mode='a',
maxBytes=max_bytes,
backupCount=backup_count,
encoding=encoding)
# Time & Size combined rollover
def shouldRollover(self, record):
return handlers.TimedRotatingFileHandler.shouldRollover(self, record) \
or handlers.RotatingFileHandler.shouldRollover(self, record)
# Roll overs current file
def doRollover(self):
self.suffix = "%Y-%m-%d_%H-%M-%S"
self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}(\.\w+)?$"
self.extMatch = re.compile(self.extMatch, re.ASCII)
handlers.TimedRotatingFileHandler.doRollover(self)
Loading…
Cancel
Save