What’s New¶
1.0.0¶
Crochet is stable, and has been for a while, so switching to v1.0.
Features:
- New API:
MessageType.log()
, the equivalent ofMessage.log()
, allows you to quickly create a new typed log message and write it out. - New APIs:
eliot.current_action()
returns the currentAction
, andAction.task_uuid
is the task’s UUID. - You can now do
with YOUR_ACTION().context() as action:
, i.e.Action.context()
context manager returns theAction
instance. ActionType.as_task
no longer requires a logger argument, matching the other APIs where passing in a logger is optional.
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_context
API. eliot-prettyprint
command line tool now pretty prints field values in a more informative manner.
Bug fixes:
eliot-prettyprint
now 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_extractor
allows 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-prettyprint
is a command-line tool that formats JSON Eliot messages into a more human-friendly format.eliot.logwriter.ThreadedWriter
is a Twisted non-blocking wrapper for any blocking destination.
0.8.0¶
Features:
Message.log
will log a new message, combining the existingMessage.new
andMessage.write
.write_traceback
andwriteFailure
no longer require aLogger
; they now default to using the global one.- The logs written with
redirectLogsForTrial
are now written in JSON format, rather than withpformat
.
Bug fixes:
FileDestination
will 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
Message
logged outside the context of an action now gets a uniquetask_id
.
0.7.0¶
- Creating your own
Logger
instances 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_traceback
andwriteFailure
no longer require asystem
argument, 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:traceback
messages.- The
validate_logging
testing 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_traceback
andeliot.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_file
outputs 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:
Logger
no 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.
ActionType
no longer supports defining additional failure fields, and therefore accepts one argument less.Action.runCallback
andAction.finishAfter
have been removed, as they are replaced byDeferredContext
(see below).
Features:
- Added a simpler API (
fields()
) for defining fields forActionType
andMessageType
. - 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
Deferred
support:eliot.twisted.DeferredContext
. eliot.twisted.redirectLogsForTrial
will redirect Eliot logs to Twisted’s logs when running under thetrial
test runner.