-
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.
Add pipeline top upstream producers and improve plugins details (#11)
This commit changed the dropped events percentage color from yellow to dark gray for the `logstash-filter-drop` plugin, it also added the bulk requests failures count for the `logstash-output-elasticsearch` plugin details, and the "Top upstream producers" list for `pipeline` input plugins.
- Loading branch information
Showing
6 changed files
with
268 additions
and
92 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ documentation = "https://github.com/edmocosta/tuistash" | |
keywords = ["logstash", "tui", "cli", "terminal"] | ||
categories = ["command-line-utilities"] | ||
authors = ["Edmo Vamerlatti Costa <[email protected]>"] | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
@@ -20,7 +20,7 @@ rustls = { version = "0.23.5", default-features = false } | |
colored_json = { version = "5.0", default-features = false } | ||
humansize = { version = "2.1", default-features = false } | ||
humantime = { version = "2.1" } | ||
ratatui = { version = "0.28.1", features = ["crossterm", "unstable-rendered-line-info"] } | ||
ratatui = { version = "0.29.0", features = ["crossterm", "unstable-rendered-line-info"] } | ||
crossterm = { version = "0.28.1", default-features = false, features = ["event-stream"] } | ||
human_format = { version = "1.1" } | ||
uuid = { version = "1.10.0", features = ["v4"] } | ||
|
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.