Wryte aims to provide a simple API for logging in Python adhering to logging principles fitting today's systems.
Wryte assumes that a standard CLI application logs to the console, while a server side app will probably want to log some human readable messages to syslog/console while logging JSON containing the same information with some additional contextual information over the wire (to a log aggregation backend e.g. ELK/Graylog2)
Note that the following documentation relates to the code currently in the master branch. If you want to view docs for previous versions, please choose the relevant release in the "releases" tab.
- Very easy to get started
- Sane defaults!
- Easily configurable via env vars (for the purpose of easy config via schedulers e.g. systemd, nomad, k8s)
- Standardize formatting for both Console (human readable) and aggregation (JSON)
- Handler agnosticism
- Differentiate user events and system logs
- Auto-enrich with useful data (hostname, pid, etc..)
- Enrich with AWS EC2 metadata (instance-id, instance-type, region and ipv4) if available
- Easily provide contexual data
- Context binding to prevent repetition
- Dynamic severity levels
- Retroactive logging (WIP)
- Assist in user tracing (via auto-provided context ids)
- Zero logging exceptions. There should be zero logging exceptions causing the app to crash but rather Wryte should log errors whenever logging errors occur.
Wryte supports Linux, Windows and OSX on Python 3.7+
pip install wryte
pip install wryte[color] # for colored console output.
For dev:
pip install https://github.com/strigo/wryte/archive/master.tar.gz
This will log human readable messages to stdout and JSON to a file:
$ pip install wryte
...
$ export WRYTE_HANDLERS_FILE_PATH=log.txt
from wryte import Wryte
wryter = Wryte(name='app')
wryter.info('My Message', key='value')
# 2020-11-20T21:37:00.268974 - app - INFO - My Message
# key=value
...
$ cat log.txt
{"name": "app", "hostname": "nir0s-x1", "pid": 29748, "type": "log", "message": "My Message", "level": "INFO", "timestamp": "2020-11-20T21:37:00.268974"}
Wryte provides a basic CLI to show-off output.
$ pip install wryte[cli]
$ wryte -h
Usage: wryte [OPTIONS] LEVEL MESSAGE [OBJECTS]...
Options:
--pretty / --ugly Output JSON instead of key=value pairs for console logger
-j, --json Use the JSON logger formatter instead of the console one
-n, --name TEXT Change the default logger's name
--no-color Disable coloring in console formatter
--simple Log only message to the console
-h, --help Show this message and exit.
# Examples:
$ wryte event my-event
2018-02-18T08:52:23.526820 - Wryte - EVENT - my-event
cid=49b9260c-77b8-4ebb-bb15-d6ccce7c7ba4
$ wryte info my-message key1=value1 key2=value2
2018-02-18T08:52:50.691206 - Wryte - INFO - my-message
key1=value1
key2=value2
$ wryte error my-message key1=value1 '{"key2": {"key3": "value2"}}' --ugly
2018-02-18T08:53:45.126228 - Wryte - ERROR - my-message
{
"key2": "value2",
"key1": "value1"
}
$ wryte warn my-message key1=value1 key2=value2 -j
{
"key1": "value1",
"name": "Wryte",
"pid": 18613,
"type": "log",
"level": "WARNING",
"timestamp": "2018-02-18T08:53:06.222926",
"message": "my-message",
"hostname": "strigo-x1",
"key2": "value2"
}
from wryte import Wryte
wryter = Wryte(
name=None, # The name of the logger.
hostname=None, # The name of the host.
level='info', # Minimum severity level to log.
pretty=None, # (Console only) Whether to pretty-print JSON or not.
bare=False, # Omit any default handlers. You will have to add them yourself after.
jsonify=False, # (Console only) Output json to the console instead of a human readable message.
color=True, # (Console only) Colorize Console output.
simple=False, # (Console only) Only print the message and key=value pairs.
enable_ec2=False # Enrich with ec2 instance specific context.
)
Wryte supports the following logging levels:
event
(see below)debug
info
warning
warn
error
critical
Events are logs generated by user interactions, while logs are contextual to them. e.g.:
wryter.event('Logging user in', user_id=user.id)
wryter.info('Retrieving user info...' user_id=user.id)
wryter.debug('Requesting session...', ...)
# more debug stuff..
wryter.info('User Logged in!', user_id=user.id)
Wryte explicitly provides an event
method so that you're able to distinguish "things that happened in my application" from "things that happened in my system".
An event is technically distinguished from a log by having a { 'type': 'event' }
field and different coloring in the console as well as returning a cid
for flow tracing (more on that later).
By default, Wryte will output TIMESTAMP - LEVEL - LOGGER_NAME - MESSAGE
(and the provided key=value pairs) to the console. Many CLI applications log only the message (e.g. pip
). You can configure Wryte to do so by either passing the simple
flag or by setting the WRYTE_SIMPLE_CONSOLE
env var to "true" (any other value will explicitly set false
even if the flag is passed) when instantiating the logger:
wryter = Wryte(simple=True)
wryter.info('My Message')
>>> 'My Message'
Wryte's goal is to allow logging to both the console (journald, stdout, etc..) and an aggregation backend. You're not limited in any way and can ship using as many handlers as you want from a single logger.
The proposed use-case is when you want to provide easy server-side debugging using human readable messages while also sending events and logs to an aggregation backend such as Elasticsearch, Graylog2 and the likes.
Note that Wryte aims to provide an easy way to configure itself via environment variables. See Using Environment Variables to configure logging handlers.
For example:
from logzio.handler import LogzioHandler
# Instantiate a debug level console logger named `wryte`.
wryter = Wryte(name='wryte', level='debug')
# `formatter` default is `json`. `level` default is `info`.
wryter.add_handler(handler=LogzioHandler('LOGZIO_TOKEN'), name='logzio', formatter='json', level='info')
wryter.info('My Message', {'key1': 'value2', 'key2': 'value2'}, key3=value3)
# 2017-12-22T17:02:59.550920 - app - INFO - my message
# key1=value1,
# key2=value2,
# who=where
...
# This is sent to logz.io
# {
# "timestamp": "2017-12-22T14:19:09.828625"
# "hostname": "strigo-x1",
# "level": "DEBUG",
# "message": "TEST_MESSAGE",
# "pid": 8554,
# "name": "wryte",
# "key1": "value1",
# "key2": "value2",
# "key3": "value3",
# }
The above will log the message and its associated key value pairs to the console in a human readable format and log machine readable JSON with some additional contextual information to logz.io.
You can list and remove handlers currently attached to a logger:
import logging
wryter = Wryte()
handler_name = wryter.add_handler(
handler=logging.FileHandler('file.log'),
formatter='console')
wryter.info('My Message', {'key1': 'value2', 'key2': 'value2'}, who=where)
# ...log some more
wryter.list_handlers()
['777b9655-e6f9-4b90-8be9-730edeb3afcf', '_console']
wryter.remove_handler(handler_name)
By default either the _json
or _console
handlers are added and they can also be removed.
On top of logging simple messages, Wryte assumes that you have context you would like to add to your logs. Instead of making you work to consolidate your data, Wryte allows you to pass multiple dictionaries and key value pair strings and consolidate them to a single dictionary.
You can pass any number of single level or nested dictionaries, kwargs and JSON strings, and those will be parsed and added to the log message.
For example:
wryter.info('My Message', {'key1': 'value2', 'key2': 'value2'}, who='where')
# 2017-12-22T17:02:59.550920 - app - INFO - my message
# key1=value1,
# key2=value2,
# who=where
wryter.error('Logging kwargs', key='value') # kwargs
wryter.debug('Logging JSON strings', '{"key": "value"}') # JSON strings
wryter.critical('Logging nested dicts', {'key': 'value', 'nested': { 'key1': 'value1', 'key2': 'value2'}})
The following are fields reserved to Wryte:
- Any
_field
hostname
pid
message
timestamp
level
type
name
ec2_instance_id
(optional)ec2_instance_type
(optional)ec2_region
(optional)ec2_ipv4
(optional)
Note that even if the fields are provided in a log message, they are bound to be overriden by Wryte.
The aforementioned optional fields are added to the context if the WRYTE_EC2_ENABLED
env var is set. The information is polled for when the logger is instantiated.
Note that if the data is unattainable for any reason, Wryte will spit out an error message stating so when the logger is instantiated.
If you're running within a container (namely, Docker), the hostname is the only certain identifier you have for your host. Luckily, starting with a rather early version of Docker, the hostname is also the shortened container's id. Even luckily-er, if you're running on EC2, the metadata endpoint is accessible from within the container, so you can pinpoint your exact location by correlating EC2 instance metadata with container ids.
To prevent having to repeat context with every log message, Wryte allows you to bind any amount of key=value pairs to a logger to add context to it.
Until unbound, the logger will include the bound fields in each message.
wryter = ...
wryter.info('This will add the above key value pairs to any log message')
wryter.bind({'user_id': framework.user, ...}, key=value)
# ...do stuff
wryter.unbind('user_id')
And just like with the logger itself, you can bind nested dicts, kwargs and JSON strings.
When providing a badly formatted context (e.g. wryte.info('Message', ['bad_context'])
), a field containing the provided context will be added to the log like so:
2018-04-18T08:06:14.739438 - Wryte - INFO - Message
_bad_object_3dff246b-f8fd-44af-bd29-29fde77a11fc=['bad_context']
bound2=value2
To better control output, you can change a logger's level like so:
wryter.set_level(LEVEL_NAME)
Debug logs are only interesting when we need to debug something. Logging can potentially block the application (if not using asnyc handlers), utilize the network, or increase disk IOPS. Ideally, we would only handle debug logs when some problem arises, and once that is resolved, the logger will assume info level logging.
You can signal that a certain error requires changing the level to "debug" from now on. You could use the set_level
method everytime you have such an error but instead, Wryte proposes that it should simpler.
For example, let's say that your application reads a config file per gunicorn
worker and you would like to activate debug logging if for some reason a worker can't read the file:
config_file_read = False
try:
config = read_config(PATH)
except ReadError as ex:
# Can also pass `set_level` to `critical`, not just to `error`.
wryter.error('Failed to read config ({})'.format(ex), {'context': context}, _set_level='debug')
# do_something to reread the file, but this time with debug logging enabled.
config_file_read = True
finally:
if config_file_read:
wryter.set_level('info')
else:
raise SomeError(...)
Dumb example maybe, but you get the point :)
The _set_level
flag is supported in the error
and critical
severity levels.
raise NotImplementedError('WIP!')
:)
Much like dynamic level logging, retroactive logging can help reduce strain on the application/server by only logging to disk/network when there's a certain problem.
Retroactive logging is the practice of logging all transaction-specific logs to memory and only flushing to disk/ over the wire if something goes wrong; otherwise, we simply get rid of them. A culprit of this is that if the application stops working, it won't write the logs.
Wryte aims to provide a retroactive logging implementation somewhere along the lines of:
wryter.event('...', _retro=True)
# from here on, until the end of a transaction, all debug logs will be logged to the MemoryHandler
wryter.debug('...')
...
# End of transaction. If err, write, else, flush to Null.
wryter.flush(err)
You can instantiate a logger without any handlers and add handlers yourself.
Note that if you instantiate a bare logger, logging will succeed but you will not get any output. Wryte doesn't protect you from doing that simply because you might want to add handlers only in specific situations.
import logging
wryter = Wryte(name='wryte', level='debug', bare=True)
wryter.add_handler(handler=logging.FileHandler('file.log'), formatter='console')
wryter.info('My Message', {'key1': 'value2', 'key2': 'value2'}, who=where)
with open('file.log') as log_file:
print(log_file.read())
...
Currently, Wryte allows to choose between just two formatters: json
and console
. The json
formatter obviously doesn't require any formatting as any fields provided in the message will be propagated with the JSON string.
The console output, on the other hand, might require formatting. Wryte's priority is to simplify and standardize the way we print and ship log messages, not to allow you to just view console logs anyway you want. I might add something in the future to allow to format console messages.
I don't wanna cut off your arm, so to make sure you can still print out messages formatted the way you want, without utilizing Wryte
, you can simply pass your formatter instance when adding a handler, e.g:
import logging
wryter = Wryte(name='wryte', level='debug', bare=True)
wryter.add_handler(handler=logging.StreamHandler(sys.stdout), formatter=myFormatter)
The Console formatter supplied by Wryte outputs a colorful output by default using colorama, if colorama is installed.
The severity levels will be colored differently accordingly to the following mapping:
$ pip install wryte[color]
mapping = {
'debug': Fore.CYAN,
'info': Fore.GREEN,
'warning': Fore.YELLOW,
'warn': Fore.YELLOW,
'error': Fore.RED,
'critical': Style.BRIGHT + Fore.RED
}
You can disable colored output by instantating your logger like so:
wryter = Wryte(color=False)
Ideally, when a user performs an action in an app, a context related to that event will be logged and attached to any log message relating to that event, so that it is possible to tail the entire flow from the moment the user performed the action and until, say, they got a response from the db. Woo! What a long sentence!
This feature is not provided by any logging library that I know of, and for a good reason - it depends on many factors potentially related to that specific app. structlog
, for instance, provides a way to log using a thread-local context, but that's specific to a thread and therefore doesn't solve the problem for distributed systems.
A good way to solve the problem is to use a global, cross-service identifier (for instance, a user id).
Specifically for non-distributed systems, you can use the cid
generated by the event
method and supply it as an identifier.
# cid defaults to a uuid if it isn't provided.
cid = wryter.event('User logging in', {'user_id': 'strigo'}, cid=user.id)
wryter.bind(cid=cid)
wryter.debug('Requesting log-in host...', ...)
...
wryter.debug('Querying db for available server...', ...)
...
wryter.info('Host is: {0}'.format(host_ip))
wryter.unbind('cid')
...
The idea behind this is that a cid can be passed into any log message within the same context. "within the same context" is of course very abstract, and is up to the developer to implement as it might be thread-related, framework-related, or else. I intend to expand the framework, but for now, that's what it is.
Wryte is built on top of Python's standard logging
library and you can access the logger's API directly:
wryter = Wryte()
wryter.logger.setLevel(...)
current_level = wryter.logger.getEffectiveLevel(...)
...
The idea behind this is three-fold:
- You shouldn't need to use
logging
directly, because why would you? - You should be able to workaround anything not implemented by Wryte, because reality.
- For the sake of keeping Wryte as minimal as possible, some things will not be implemented in Wryte and you will be able to use the logger's API directly so that you're not limited.
NOTE: This is WIP, so things may break / be broken.
One of Wryte's goals is to provide a simple way to configure loggers. Much like Grafana and Fabio, Wryte aims to be completely env-var configurable.
On top of having two default console
and json
handlers which indicate the formatting and both log to stdout, you can utilize built-in and 3rd party handlers quite easily.
Below are the global env vars used to configure all loggers instantiated by Wryte.
For each handler, there are four basic env vars:
WRYTE_HANDLERS_TYPE_NAME
-> The handler's name (defaults toTYPE
in lowercase)WRYTE_HANDLERS_TYPE_LEVEL
-> The handler's logging level (defaults toinfo
unless explicitly stated otherwise)WRYTE_HANDLERS_TYPE_FORMATTER
-> The handler's formatter (json
orconsole
, defaults tojson
)
On top of those, there are handler specific configuration options:
The default handlers are set a bit differently from the rest (note the omission of HANDLERS
):
- You cannot set the name of the logger.
# If set, will disable the handler.
export WRYTE_CONSOLE_DISABLED
# If set, will replace the human readable format with a JSON format based on the `json` formatter.
export WRYTE_CONSOLE_JSONIFY
# As with others, set the level.
export WRYTE_CONSOLE_LEVEL will set the level, as with other handlers.
Wryte supports both the rotating and watching file handlers (on Windows, FileHandler replaces WatchingFileHandler if not rotating).
# (Required - enables file logging) Absolute path to the file logs should be written to
export WRYTE_HANDLERS_FILE_PATH=FILE_TO_LOG_TO
# If set, will rotate files.
export WRYTE_HANDLERS_FILE_ROTATE=false
# Size of each file in bytes if rotating
export WRYTE_HANDLERS_FILE_MAX_BYTES=13107200
# Amount of logs files to keep if rotating
export WRYTE_HANDLERS_FILE_BACKUP_COUNT=7
Logging to file:
$ export WRYTE_HANDLERS_FILE_PATH=log.txt
$ python wryte.py
2018-02-18T08:56:27.921500 - Wryte - INFO - Logging an error level message:
2018-02-18T08:56:27.921898 - Wryte - ERROR - w00t
2018-02-18T08:56:27.922055 - Wryte - INFO - Logging an event:
2018-02-18T08:56:27.922259 - Wryte - EVENT - w00t
cid=5e7bbc8e-5857-4934-9a21-d134a8086319
2018-02-18T08:56:27.922421 - Wryte - INFO - Binding more dicts to the logger:
2018-02-18T08:56:27.922623 - Wryte - INFO - bind_test
bound1=value1
bound2=value2
2018-02-18T08:56:27.922783 - Wryte - INFO - Unbinding keys:
bound1=value1
bound2=value2
2018-02-18T08:56:27.922935 - Wryte - CRITICAL - unbind_test
bound2=value2
2018-02-18T08:56:27.923088 - Wryte - ERROR - w00t
bound2=value2
$ cat log.txt
{"name": "Wryte", "level": "INFO", "timestamp": "2018-02-18T08:56:27.921500", "hostname": "my-host", "pid": 19220, "type": "log", "message": "Logging an error level message:"}
{"name": "Wryte", "level": "ERROR", "timestamp": "2018-02-18T08:56:27.921898", "hostname": "my-host", "pid": 19220, "type": "log", "message": "w00t"}
{"name": "Wryte", "level": "INFO", "timestamp": "2018-02-18T08:56:27.922055", "hostname": "my-host", "pid": 19220, "type": "log", "message": "Logging an event:"}
{"name": "Wryte", "level": "INFO", "timestamp": "2018-02-18T08:56:27.922259", "hostname": "my-host", "pid": 19220, "message": "w00t", "type": "event", "cid": "5e7bbc8e-5857-4934-9a21-d134a8086319"}
{"name": "Wryte", "level": "INFO", "timestamp": "2018-02-18T08:56:27.922421", "hostname": "my-host", "pid": 19220, "type": "log", "message": "Binding more dicts to the logger:"}
{"name": "Wryte", "level": "INFO", "timestamp": "2018-02-18T08:56:27.922623", "bound1": "value1", "hostname": "my-host", "pid": 19220, "message": "bind_test", "type": "log", "bound2": "value2"}
{"name": "Wryte", "level": "INFO", "timestamp": "2018-02-18T08:56:27.922783", "bound1": "value1", "hostname": "my-host", "pid": 19220, "message": "Unbinding keys:", "type": "log", "bound2": "value2"}
{"name": "Wryte", "bound2": "value2", "message": "unbind_test", "level": "CRITICAL", "timestamp": "2018-02-18T08:56:27.922935", "hostname": "my-host", "pid": 19220, "type": "log"}
{"name": "Wryte", "bound2": "value2", "message": "w00t", "level": "ERROR", "timestamp": "2018-02-18T08:56:27.923088", "hostname": "my-host", "pid": 19220, "type": "log"}
I haven't performed a deep benchmark on Wryte yet and am waiting to finish an initial implementation I will feel comfortable with before doing so.
A very shallow benchmark (on my i7 1st Gen x1-carbon) showed:
(For 10000 messages averaged over 30 runs, coloring disabled):
log.info('My Message')
- Wryte -> 407ms
- Logbook -> 479ms
- structlog -> 750ms
- logging -> 279ms
Not bad. I'll be optimizing for performance wherever possible.
git clone git@github.com:strigo/wryte.git
cd wryte
pip install -r dev-requirements
tox