-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show whether a task is blocking the main thread
- Loading branch information
Showing
12 changed files
with
843 additions
and
780 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# Changelog | ||
|
||
## 0.2.0 | ||
|
||
* Show whether an active span is running on and blocking the main thread or whether it's running in a threadpool with `tokio::task::spawn_blocking`. `--color-top`/`color_top` gets split into two colors, color top main and color top threadpool. The former is used when the task is running on the main thread, the latter is used when it's offloaded to the threadpool. | ||
* Colorblind friendly default colors (http://www.cookbook-r.com/Graphs/Colors_(ggplot2)/#a-colorblind-friendly-palette): | ||
* color top blocking: #E69F0088 | ||
* color top threadpool: #56B4E988 | ||
* color bottom: #E69F0088 | ||
|
||
## 0.1.2 | ||
|
||
* Add `--inline-field` / `inline_field` option: If the is only one field, display its value inline. Since the text is not limited to its box, text can overlap and become unreadable. |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.