Crates.io | holochain_trace |
lib.rs | holochain_trace |
version | 0.3.6 |
source | src |
created_at | 2023-03-16 08:16:58.525405 |
updated_at | 2024-12-02 15:10:04.127567 |
description | tracing helpers |
homepage | |
repository | https://github.com/holochain/holochain |
max_upload_size | |
id | 811314 |
size | 112,253 |
This crate is designed ot be a place to experiment with ideas around tracing and structured logging. This crate will probably never stabilize. Instead it is my hope to feed any good ideas back into the underlying dependencies.
There are a couple of ways to use structured logging.
If you want to try and filter in on an issue it might be easiest to simply log to the console and filter on what you want. Here's an example command:
RUST_LOG='core[a{something="foo"}]=debug' my_bin
Or a more simple version using the default Log
:
RUST_LOG=trace my_bin
There are many types of tracing exposed by this crate. The [Output] type is designed to be used with something like structopt so you can easily set which type you want with a command line arg. You could also use an environment variable. The [Output] variant is passing into the [init_fmt] function on start up.
RUST_LOG='core[a{something="foo"}]=debug'
Here we are saying show me all the events that are:
core
modulea
a
has to have a field called something
that is equal to foo
Most of these options are optional. They can be combined like:
RUST_LOG='[{}]=error,[{something}]=debug'
The above means show me errors from anywhere but also any event or span with the field something that's at least debug.
See here for more info.
Sometimes there's too much data and it's better to capture it to interact with using another tool later.
For this we can output everything as Json using the flag --structured Json
.
Then you can pipe the output from stdout to you're file of choice.
Here's some sample output:
{"time":"2020-03-03T08:07:05.910Z","name":"event crates/sim2h/src/sim2h_im_state.rs:695","level":"INFO","target":"sim2h::sim2h_im_state","module_path":"sim2h::sim2h_im_state","file":"crates/sim2h/src/sim2h_im_stat
e.rs","line":695,"fields":{"space_hashes":"[]"},"spans":[{"id":[1099511627778],"name":"check_gossip","level":"INFO","target":"sim2h::sim2h_im_state","module_path":"sim2h::sim2h_im_state","file":"crates/sim2h/src/s
im2h_im_state.rs","line":690}]}
Every log will include the above information expect for the spans which will only show up if there are parent spans in the context of the event.
You can combine filter with Json as well.
Some useful tools for formatting and using the json data.
A sample workflow:
RUST_LOG='core[{}]=debug' my_bin --structured Json > log.json
cat out.json | jq '. | {time: .time, name: .name, message: .fields.message, file: .file, line: .line, fields: .fields, spans: .spans}' | json2csv -o log.csv
tad log.csv