2019-08-28 07:18:53 -04:00
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Log formatters that output terse JSON.
|
|
|
|
"""
|
2019-11-25 11:45:50 -05:00
|
|
|
import json
|
2020-10-29 07:27:37 -04:00
|
|
|
import logging
|
2019-11-25 11:45:50 -05:00
|
|
|
|
|
|
|
_encoder = json.JSONEncoder(ensure_ascii=False, separators=(",", ":"))
|
2019-08-28 07:18:53 -04:00
|
|
|
|
2021-06-16 14:18:02 -04:00
|
|
|
# The properties of a standard LogRecord that should be ignored when generating
|
|
|
|
# JSON logs.
|
|
|
|
_IGNORED_LOG_RECORD_ATTRIBUTES = {
|
2020-10-29 07:27:37 -04:00
|
|
|
"args",
|
|
|
|
"asctime",
|
|
|
|
"created",
|
|
|
|
"exc_info",
|
|
|
|
# exc_text isn't a public attribute, but is used to cache the result of formatException.
|
|
|
|
"exc_text",
|
|
|
|
"filename",
|
|
|
|
"funcName",
|
|
|
|
"levelname",
|
|
|
|
"levelno",
|
|
|
|
"lineno",
|
|
|
|
"message",
|
|
|
|
"module",
|
|
|
|
"msecs",
|
|
|
|
"msg",
|
|
|
|
"name",
|
|
|
|
"pathname",
|
|
|
|
"process",
|
|
|
|
"processName",
|
|
|
|
"relativeCreated",
|
|
|
|
"stack_info",
|
|
|
|
"thread",
|
|
|
|
"threadName",
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class JsonFormatter(logging.Formatter):
|
|
|
|
def format(self, record: logging.LogRecord) -> str:
|
|
|
|
event = {
|
|
|
|
"log": record.getMessage(),
|
|
|
|
"namespace": record.name,
|
|
|
|
"level": record.levelname,
|
|
|
|
}
|
|
|
|
|
|
|
|
return self._format(record, event)
|
|
|
|
|
|
|
|
def _format(self, record: logging.LogRecord, event: dict) -> str:
|
2021-06-16 14:18:02 -04:00
|
|
|
# Add attributes specified via the extra keyword to the logged event.
|
2020-10-29 07:27:37 -04:00
|
|
|
for key, value in record.__dict__.items():
|
2021-06-16 14:18:02 -04:00
|
|
|
if key not in _IGNORED_LOG_RECORD_ATTRIBUTES:
|
2020-10-29 07:27:37 -04:00
|
|
|
event[key] = value
|
|
|
|
|
2021-10-08 07:08:25 -04:00
|
|
|
if record.exc_info:
|
|
|
|
exc_type, exc_value, _ = record.exc_info
|
|
|
|
if exc_type:
|
|
|
|
event["exc_type"] = f"{exc_type.__name__}"
|
|
|
|
event["exc_value"] = f"{exc_value}"
|
|
|
|
|
2020-10-29 07:27:37 -04:00
|
|
|
return _encoder.encode(event)
|
|
|
|
|
|
|
|
|
|
|
|
class TerseJsonFormatter(JsonFormatter):
|
|
|
|
def format(self, record: logging.LogRecord) -> str:
|
|
|
|
event = {
|
|
|
|
"log": record.getMessage(),
|
|
|
|
"namespace": record.name,
|
|
|
|
"level": record.levelname,
|
|
|
|
"time": round(record.created, 2),
|
|
|
|
}
|
|
|
|
|
|
|
|
return self._format(record, event)
|