4 releases
0.1.3 | Feb 2, 2021 |
---|---|
0.1.2 | Jan 28, 2021 |
0.1.1 | Dec 22, 2020 |
0.1.0 | Nov 16, 2020 |
#244 in Profiling
401 downloads per month
Used in 5 crates
(3 directly)
59KB
1K
SLoC
observability
Structured Contextual Logging (or tracing)
Why
Intention of this crate
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.
Usage
There are a couple of ways to use structured logging.
Console and filter
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
Types of tracing
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.
Filtering
RUST_LOG='core[a{something="foo"}]=debug'
Here we are saying show me all the events that are:
- In the
core
module - Inside a span called
a
- The span
a
has to have a field calledsomething
that is equal tofoo
- They are at least debug level.
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.
Json
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.
Tools
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
Dependencies
~6–14MB
~163K SLoC