我希望gunicorn将JSON记录在我的docker容器中。我想在配置文件中使用--access-logformat。尝试添加format
或access_log_format
或access_logformat
不会配置记录器。如何配置access_log_format以输出JSON?
http://docs.gunicorn.org/en/stable/settings.html#access-log-format
gunicorn_logging.conf
[loggers]
keys=root, gunicorn.error, gunicorn.access
[handlers]
keys=console
[formatters]
keys=json
[logger_root]
level=INFO
handlers=console
access_log_format = '{"remote_ip":"%(h)s","request_id":"%({X-Request-Id}i)s","response_code":"%(s)s","request_method":"%(m)s","request_path":"%(U)s","request_querystring":"%(q)s","request_timetaken":"%(D)s","response_length":"%(B)s", "remote_addr": "%(h)s"}'
[logger_gunicorn.error]
level=ERROR
handlers=console
propagate=0
qualname=gunicorn.error
[logger_gunicorn.access]
level=DEBUG
handlers=console
propagate=0
qualname=gunicorn.access
access_log_format = '{"remote_ip":"%(h)s","request_id":"%({X-Request-Id}i)s","response_code":"%(s)s","request_method":"%(m)s","request_path":"%(U)s","request_querystring":"%(q)s","request_timetaken":"%(D)s","response_length":"%(B)s", "remote_addr": "%(h)s"}'
[handler_console]
class=StreamHandler
formatter=json
args=(sys.stdout, )
[formatter_json]
class=utils.jsonlogger.JSONWithTime
utils.jsonlogger:
from pythonjsonlogger import jsonlogger
import time
class JSONWithTime(jsonlogger.JsonFormatter):
def formatTime(self, record, datefmt=None):
ct = self.converter(record.created)
t = time.strftime("%Y-%m-%dT%H:%M:%S", ct)
s = "%s.%03dZ" % (t, record.msecs)
return s
命令行:
gunicorn myapp.wsgi:应用程序--bind 0.0.0.0:8002 --worker-tmp-dir / dev / shm --log-level = DEBUG --timeout 120 --access-logfile =---error- logfile =---log-config /app/gunicorn_logging.conf
我想要什么:
{
"stack_info": null,
"level": "INFO",
"timestamp": "2018-02-18T16:20:13.153947Z",
"path": "/usr/local/lib/python3.5/site-packages/gunicorn/glogging.py",
"message": "{\"request\": \"POST /format HTTP/1.1\", \"http_status_code\": \"200\", \"http_request_url\": \"/format\", \"http_query_string\": \"-\", \"http_verb\": \"POST\", \"http_version\": \"1.1\", \"remote_addr\": \"8.8.8.8\"}",
"host": "87eab0ccce6a",
"logger": "gunicorn.access",
"tags": []
}