What’s New¶
0.12.0¶
Features:
- Python 3.6 support.
Misc:
- Made test suite pass again with latest Hypothesis release.
0.11.0¶
Features:
- Eliot tasks can now more easily span multiple threads using the new
eliot.preserve_contextAPI. eliot-prettyprintcommand line tool now pretty prints field values in a more informative manner.
Bug fixes:
eliot-prettyprintnow handles unparseable lines by skipping formatting them rather than exiting.
0.10.1¶
Bug fixes:
- Fixed regression in 0.10.0: fix validation of failed actions and tracebacks with extracted additional fields.
0.10.0¶
Features:
register_exception_extractorallows for more useful logging of failed actions and tracebacks by extracting additional fields from exceptions.- Python 3.5 support.
Bug fixes:
- Journald support works on Python 3.
0.9.0¶
Features:
- Native journald support.
eliot-prettyprintis a command-line tool that formats JSON Eliot messages into a more human-friendly format.eliot.logwriter.ThreadedWriteris a Twisted non-blocking wrapper for any blocking destination.
0.8.0¶
Features:
Message.logwill log a new message, combining the existingMessage.newandMessage.write.write_tracebackandwriteFailureno longer require aLogger; they now default to using the global one.- The logs written with
redirectLogsForTrialare now written in JSON format, rather than withpformat.
Bug fixes:
FileDestinationwill now callflush()on the given file object after writing the log message. Previously log messages would not end up being written out until the file buffer filled up.- Each
Messagelogged outside the context of an action now gets a uniquetask_id.
0.7.0¶
- Creating your own
Loggerinstances is no longer necessary; all relevant APIs now default to using a global one. A new testing decorator (eliot.testing.capture_logging) was added to capture global logging. - Support positional
Field-instance arguments tofields()to make combining existing field types and simple fields more convenient. Contributed by Jonathan Jacobs. write_tracebackandwriteFailureno longer require asystemargument, as the combination of traceback and action context should suffice to discover the origin of the problem. This is a minor change to output format as the field is also omitted from the resultingeliot:tracebackmessages.- The
validate_loggingtesting utility now skips validation when the decorated test method raisesSkipTest. - Exceptions in destinations are now handled better: instead of being dropped silently an attempt is made to log a message about the problem. If that also fails then the exception is dropped.
0.6.0¶
Warning
Incompatible output format change! In previous versions the ordering of messages and actions was ambiguous and could not be deduced from out-of-order logs, and even where it was possible sorting correctly was difficult.
To fix this the action_counter field was removed and now all messages can be uniquely located within a specific task by the values in an improved task_level field.
Features:
- Eliot tasks can now span multiple processes and threads, allowing for easy tracing of actions in complex and distributed applications.
- eliot.add_global_fields allows adding fields with specific values to all Eliot messages logged by your program. This can be used to e.g. distinguish between log messages from different processes by including relevant identifying information.
Bug fixes:
- On Python 3 files that accept unicode (e.g.
sys.stdout) should now work.
0.5.0¶
Features:
- Added support for Python 3.4.
- Most public methods and functions now have underscore-based equivalents to the camel case versions, e.g.
eliot.write_tracebackandeliot.writeTraceback, for use in PEP 8 styled programs. Twisted-facing APIs and pyunit assertions do not provide these additional APIs, as camel-case is the native idiom. eliot.to_fileoutputs log messages to a file.- Documented how to load Eliot logging into ElasticSearch via Logstash.
- Documentation has been significantly reorganized.
0.4.0¶
Note that this is the last release that will make incompatible API changes without interim deprecation warnings.
Incompatible changes from 0.3.0:
Loggerno longer does JSON serialization; it’s up to destinations to decide how to serialize the dictionaries they receive.- Timestamps are no longer encoded in TAI64N format; they are now provided as seconds since the Unix epoch.
ActionTypeno longer supports defining additional failure fields, and therefore accepts one argument less.Action.runCallbackandAction.finishAfterhave been removed, as they are replaced byDeferredContext(see below).
Features:
- Added a simpler API (
fields()) for defining fields forActionTypeandMessageType. - Added support for Python 3.3.
- Actions can now be explicitly finished using a public API:
Action.finish(). Action.context()context manager allows setting an action context without finishing the action when exiting the block.- Added a new API for Twisted
Deferredsupport:eliot.twisted.DeferredContext. eliot.twisted.redirectLogsForTrialwill redirect Eliot logs to Twisted’s logs when running under thetrialtest runner.