JSON formatter for graylog JSON extractor.
Project description
GrayLogJSONFormatter formatted LogRecord as JSON object for graylog JSON extractor. JSON object include LogRecord attributes as default_keys and include extra attributes: source, message, asctime and data.
Example
configure:
from logging import config
config.dictConfig({
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'graylog': {
'()': 'graylog_json_formatter.GrayLogJSONFormatter',
'format': '({levelname}) | {name} | [{asctime}]: '
'File {pathname}:{lineno}" - {funcName}() | {message}',
'style': '{',
'source': 'test',
'environment': 'testing',
'keys': {
'name', 'levelno', 'levelname',
'pathname', 'filename', 'module', 'lineno', 'funcName',
'created', 'asctime', 'msecs', 'relativeCreated',
'thread', 'threadName', 'process',
'message', 'data',
'exc_text', 'stack_info',
},
'extra': {'service': 'my-service'},
}
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'graylog',
},
'graylog': {
'level': 'DEBUG',
'class': 'logging.handlers.SysLogHandler',
'formatter': 'graylog',
'address': ('localhost', 10000),
}
},
'loggers': {
'test': {
'level': 'DEBUG',
'handlers': ['console', 'graylog'],
'propagate': False,
},
}
})
logger = logging.getLogger('test')
logging:
# extra usage
logger.debug('test message: % | %s', 1, 2, extra={'data': {'key': 'value', 'int_key': 12})
Graylog extract extra as data-key and data-int_key fields.
extra argument may be callable or string with dotted path to callable attribute:
'extra': lambda record: {'service': 'service-func'}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file graylog-json-formatter-1.0.1.tar.gz.
File metadata
- Download URL: graylog-json-formatter-1.0.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf832f6c9440773f3bd669025a7ad3546df657ff5938aa81d319ab87470c6651
|
|
| MD5 |
0f5b18643520d7019b9f48849e9f6218
|
|
| BLAKE2b-256 |
999710b824a56364cab56a0fa842c5baa944c2a9a22a43e6c182910029ab1521
|
File details
Details for the file graylog_json_formatter-1.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: graylog_json_formatter-1.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ab145b1b28dff2195f3aed0a99948463e656f9ab8e19d229f3c8c3fcbf0e75
|
|
| MD5 |
dab489964b44dfe6b228f62f7601a4dc
|
|
| BLAKE2b-256 |
ee6d336cc214509da2a6b8103904a34b721fc64eaab55f41d218959b6cd3052a
|