gpt4 book ai didi

python - 无法使用 gunicorn 守护进程模式获取 Flask 的日志记录工作

转载 作者:太空狗 更新时间:2023-10-29 21:59:46 27 4
gpt4 key购买 nike

我正在使用 gunicorn+Nginx 运行 Flask 网络应用程序。我在 daemon 模式下运行 gunicorn。我配置了 gunicorn 和 nginx 来记录它们对文件的访问和错误。但我无法将 Flask 日志写入文件。

我使用一个 shell 文件来启动我的带有 gunicorn 的应用程序:

   #!/bin/bash

export VIRTUAL_ENV="/to/virtual/path"
export PATH="$VIRTUAL_ENV/bin:$PATH"
source "$VIRTUAL_ENV/bin/activate"

NAME="hello"
NUM_WORKERS=1

exec gunicorn hello:app \
--name $NAME \
--workers $NUM_WORKERS \
--log-level=debug \
--daemon \
--pid $VIRTUAL_ENV/logs/pid_gunicorn \
--access-logfile $VIRTUAL_ENV/logs/access_gunicorn.log \
--error-logfile $VIRTUAL_ENV/logs/error_gunicorn.log

在我的 flask 应用程序中,我根据文档要求添加日志记录:

app.debug = False
...
if __name__ == '__main__':
if app.debug != True:
import logging
from logging.handlers import RotatingFileHandler
handler = RotatingFileHandler("flask.log", maxBytes=10000, backupCount=1)
handler.setLevel(logging.DEBUG)
app.logger.addHandler(handler)
app.logger.debug("test!!")
app.run()

我还在其他地方添加了app.logger.debug

当我在没有--daemon 的情况下启动gunicorn 时,日志文件工作正常。但是一旦我添加 --daemon 就不会生成任何日志。

我尝试使用 print 但它也只能在没有 --daemon 的情况下工作。

我搜索了一段时间 it seems gunicorn 不支持应用程序日志记录。但我认为记录到一个文件就可以了?

有人知道如何在我的设置下注销到文件吗?

最佳答案

所以 - 您实际上并没有设置任何日志记录。让我解释一下-

gunicorn 的第一个参数是您的应用。 gunicorn hello:app。当您启动 gunicorn 时,它将使用常规的 python 导入,基本上是 from hello import app

在您的文件 hello.py 中,您正在设置日志记录。但是,您将那段代码包裹在 if __name__ == "__main__": block 中。如果你执行 python hello.py 就可以了。但这不是 gunicorn 正在做的事情。您的服务没有执行任何代码(您应该注意到 - 毕竟,您的开发服务器也没有运行......)

在文件顶部设置日志记录,在 if block 之外。您还可以选择将 gunicorn 设置为 capture-output,在这种情况下,它会处理将您的应用输出到日志文件中。这可能更接近你想要的。如果您确实使用了您拥有的日志记录配置,gunicorn 将运行多个单独的进程,并且它们都将尝试记录到磁盘上的同一个文件。

我不确定您所说的“日志记录工作正常”是什么意思 - 它会转到文件吗?我的期望是,如果没有--daemon,这意味着 gunicorn 在前台运行并且它的输出显示在您的终端中(但除非您已将脚本的输出重定向到磁盘,否则不会进入磁盘?或者正在启动它也许是 systemd?)

关于python - 无法使用 gunicorn 守护进程模式获取 Flask 的日志记录工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24977796/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com