eliottree icon indicating copy to clipboard operation
eliottree copied to clipboard

Render Eliot logs as an ASCII tree

Results 7 eliottree issues
Sort by recently updated
recently updated
newest added

I'm not entirely sure what's going on here, but on a GitHub Actions windows runner, I'm seeing this from `eliot-tree`: ``` Traceback (most recent call last): File "c:\hostedtoolcache\windows\python\3.8.10\x64\lib\runpy.py", line 194,...

The purpose of this pull request is to allow the logs to be viewed as chunks. This is useful for long running tasks. ``` (eliot_tree) λ eliot-tree test.log -l 0...

I have some logs with really long tasks, that do not allow me to scroll all the way through the history. I would like to be able to iterate the...

Test code: ```python from eliot import log_call, to_file to_file(open('log.log', 'w')) @log_call(action_type='CALC', include_args=['x'], include_result=True) def calculate(x, y): return x * y x = 2 y = 10 result = calculate(x, y)...

I get an error when I write the below query ``` λ eliot-tree logs\2020-06-01_0006.log --select "log_level=='DEBUG'" --end "2020-06-01T14:40:48" Traceback (most recent call last): File "%userprofile%\.venv\Scripts\eliot-tree-script.py", line 9, in sys.exit(main()) File...

I don't understand the current example for programmatic usage from the readme. I took a look at the cli code and ended up with this example. yes... it uses private...

Jonathan, Fantastic tool! I have been making great use of it! I have an application which logs debug events when a debug option is enabled. I've been experimenting with the...