You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider the use case of an established web application, which has a nontrivial logging setup involving correlation IDs, integration with some observability platform like Datadog, etc. Migrating such an application to Eliot's entirely separate logging framework would be a tough sell at best, and generally would not be a pragmatic engineering decision, even if Eliot supports a relatively smooth migration path by installing its own handler for stdlib logging.
However, the promise of Eliot's "context-based" and "causal" logging is very enticing. Is there any way that Eliot could be set up to generate logging log entries? One could imagine that Eliot could "install" itself in the form of a logging.Filter that attaches its various metadata items to each log record. Is this something that Eliot can do now, or something that it might be able to do one day?
The text was updated successfully, but these errors were encountered:
It would also allow Eliot to be added to library code instead of logging calls. One could imagine it would add "flat" logging info if captured by a logging log, and "causal"/"traced" information if captured by an eliot log.
@itamarst Hope it's OK with a ping here! I tried running through the documentation and code, but didn't find anything on this use case. Did I miss anything? :-)
Consider the use case of an established web application, which has a nontrivial logging setup involving correlation IDs, integration with some observability platform like Datadog, etc. Migrating such an application to Eliot's entirely separate logging framework would be a tough sell at best, and generally would not be a pragmatic engineering decision, even if Eliot supports a relatively smooth migration path by installing its own handler for stdlib logging.
However, the promise of Eliot's "context-based" and "causal" logging is very enticing. Is there any way that Eliot could be set up to generate
logging
log entries? One could imagine that Eliot could "install" itself in the form of alogging.Filter
that attaches its various metadata items to each log record. Is this something that Eliot can do now, or something that it might be able to do one day?The text was updated successfully, but these errors were encountered: