Structured Logging for Python
Project description
structlog makes logging in Python less painful and more powerful by adding structure to your log entries.
It’s up to you whether you want structlog to take care about the output of your log entries or whether you prefer to forward them to an existing logging system like the standard library’s logging module. No monkey patching involved in either case.
Easier Logging
You can stop writing prose and start thinking in terms of an event that happens in the context of key/value pairs:
>>> from structlog import get_logger
>>> log = get_logger()
>>> log.info("key_value_logging", out_of_the_box=True, effort=0)
out_of_the_box=True effort=0 event='key_value_logging'
Each log entry is a meaningful dictionary instead of an opaque string now!
Data Binding
Since log entries are dictionaries, you can start binding and re-binding key/value pairs to your loggers to ensure they are present in every following logging call:
>>> log = log.bind(user="anonymous", some_key=23)
>>> log = log.bind(user="hynek", another_key=42)
>>> log.info("user.logged_in", happy=True)
some_key=23 user='hynek' another_key=42 happy=True event='user.logged_in'
Powerful Pipelines
Each log entry goes through a processor pipeline that is just a chain of functions that receive a dictionary and return a new dictionary that gets fed into the next function. That allows for simple but powerful data manipulation:
def timestamper(logger, log_method, event_dict):
"""Add a timestamp to each log entry."""
event_dict["timestamp"] = calendar.timegm(time.gmtime())
return event_dict
There are plenty of processors for most common tasks coming with structlog:
Collectors of call stack information (“How did this log entry happen?”),
…and exceptions (“What happened‽”).
Unicode encoders/decoders.
Flexible timestamping.
Formatting
structlog is completely flexible about how the resulting log entry is emitted. Since each log entry is a dictionary, it can be formatted to any format:
A colorful key/value format for local development,
JSON for easy parsing,
or some standard format you have parsers for like nginx or Apache httpd.
Internally, formatters are processors whose return value is passed into wrapped loggers and structlog comes with multiple useful formatters out of-the-box.
Output
structlog is also very flexible with the final output of your log entries:
A built-in lightweight printer like in the examples above. Easy to configure and fast.
Use the standard library’s or Twisted’s logging modules for compatibility. In this case structlog works like a wrapper that formats a string and passes them off into existing systems that won’t ever know that structlog even exists.
Don’t format it to a string at all! structlog passes you a dictionary and you can do with it whatever you want. Reported uses cases are sending them out via network or saving them in a database.
Project Information
structlog is dual-licensed under Apache License, version 2 and MIT, available from PyPI, the source code can be found on GitHub, the documentation at http://www.structlog.org/.
structlog targets Python 2.7, 3.4 and newer, and PyPy.
If you need any help, visit us on #structlog on Freenode!
Release Information
16.1.0 (2016-05-24)
Backward-incompatible changes:
Python 3.3 and 2.6 aren’t supported anymore. They may work by chance but any effort to keep them working has ceased.
The last Python 2.6 release was on October 29, 2013 and isn’t supported by the CPython core team anymore. Major Python packages like Django and Twisted dropped Python 2.6 a while ago already.
Python 3.3 never had a significant user base and wasn’t part of any distribution’s LTS release.
Changes:
Add a drop_missing argument to KeyValueRenderer. If key_order is used and a key is missing a value, it’s not rendered at all instead of being rendered as None. #67
Exceptions without a __traceback__ are now also rendered on Python 3.
Don’t cache loggers in lazy proxies returned from get_logger(). This lead to in-place mutation of them if used before configuration which in turn lead to the problem that configuration was applied only partially to them later. #72
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file structlog-16.1.0.tar.gz
.
File metadata
- Download URL: structlog-16.1.0.tar.gz
- Upload date:
- Size: 154.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b44dfaadcbab84e6bb97bd9b263f61534a79611014679757cd93e2359ee7be01 |
|
MD5 | 74c0567b1224b0a33f78b7af500952dd |
|
BLAKE2b-256 | 3dd890e87637a53ebcb0bbc78b76bceea2f7e8bd98de80feefec7471e38dccf2 |
File details
Details for the file structlog-16.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: structlog-16.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 28.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8cc45c208c6b251031ec223940552eccd97dbdb322474e0c4ec9e50f76a225a |
|
MD5 | 008047aa80023df43a0db30e27fdc3c8 |
|
BLAKE2b-256 | c5bff87b8273e5016618d750e79a2dae7f42b0a6310bc1f4368dcb217b426e8e |