- Notifications
You must be signed in to change notification settings - Fork771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Add env-filter-explorer example#3233
Open
joshka wants to merge3 commits intotokio-rs:masterChoose a base branch fromjoshka:jm/env-filter-explorer
base:master
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
The transitive dependency on itoa 0.4 does not compiles with stablerust. Bump inferno to 0.12.1 to fix this.```❯ cargo check --examples Checking serde v1.0.157 Checking tokio v1.43.0 Checking itoa v0.4.0 Checking tracing-macros v0.1.0 (/Users/joshka/local/tracing/tracing-macros)error[E0554]: `#![feature]` may not be used on the stable release channel --> /Users/joshka/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-0.4.0/src/lib.rs:13:31 |13 | #![cfg_attr(feature = "i128", feature(i128_type, i128))] | ^^^^^^^^^^^^^^^^^^^^^^^^ | = help: the feature `i128_type` has been stable since `1.26.0` and no longer requires an attribute to enable``````❯ cargo tree -i itoa@0.4.0itoa v0.4.0└── num-format v0.4.0 └── inferno v0.11.6 [dev-dependencies] └── tracing-examples v0.0.0 (/Users/joshka/local/tracing/examples)```
This example demonstrates how to use the `tracing-subscriber` crate's`EnvFilter` type to filter log messages based on their metadata. Theexample provides a text area where users can input an environment filterstring, and displays the log messages that would be captured by thatfilter.
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Ondiscord, Conrad suggested a website to experiment with env-filter syntax. I think a TUI in tree makes a pretty decent replacement, especially as the output can exactly match the output that a real user might see if they're configuring tracing_subscriber with the default values.
Solution
This example demonstrates how to use the
tracing-subscriber
crate'sEnvFilter
type to filter log messages based on their metadata. Theexample provides a text area where users can input an environment filter
string, and displays the log messages that would be captured by that
filter.
There are preset filters that can be selected that show off the syntax.