As of py3.2, it's possible to do this with the standard library, no external dependencies required:
from datetime import datetime
import json
import logging
import traceback
APP_NAME = 'hello world json logging'
APP_VERSION = 'git rev-parse HEAD'
LOG_LEVEL = logging._nameToLevel['INFO']
class JsonEncoderStrFallback(json.JSONEncoder):
def default(self, obj):
try:
return super().default(obj)
except TypeError as exc:
if 'not JSON serializable' in str(exc):
return str(obj)
raise
class JsonEncoderDatetime(JsonEncoderStrFallback):
def default(self, obj):
if isinstance(obj, datetime):
return obj.strftime('%Y-%m-%dT%H:%M:%S%z')
else:
return super().default(obj)
logging.basicConfig(
format='%(json_formatted)s',
level=LOG_LEVEL,
handlers=[
# if you wish to also log to a file:
# logging.FileHandler(log_file_path, 'a'),
logging.StreamHandler(sys.stdout),
],
)
_record_factory_bak = logging.getLogRecordFactory()
def record_factory(*args, **kwargs) -> logging.LogRecord:
record = _record_factory_bak(*args, **kwargs)
record.json_formatted = json.dumps(
{
'level': record.levelname,
'unixtime': record.created,
'thread': record.thread,
'location': '{}:{}:{}'.format(
record.pathname or record.filename,
record.funcName,
record.lineno,
),
'exception': record.exc_info,
'traceback': (
traceback.format_exception(*record.exc_info)
if record.exc_info
else None
),
'app': {
'name': APP_NAME,
'releaseId': APP_VERSION,
'message': record.getMessage(),
},
},
cls=JsonEncoderDatetime,
)
# clear exc data since it is included in the json format
# without clearing this, logging.exception will print the
# traceback across multiple lines, which is not json formatted
record.exc_info = None
record.exc_text = None
return record
logging.setLogRecordFactory(record_factory)
Calling logging.info('HELLO %s', 'WORLD')
...
... results in {"level": "INFO", "unixtime": 1623532882.421775, "thread": 4660305408, "location": "<ipython-input-3-abe3276ceab4>:<module>:1", "exception": null, "traceback": null, "app": {"name": "hello world json logging", "releaseId": "git rev-parse HEAD", "message": "HELLO WORLD"}}
structlog
. I think the main point was that it is a bit different from the standard logging library and thus might rather lock-in than the other solutions below. – Reifel