-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure all lading programs through files (#99)
Previously we allowed for some lading programs to be configured through command-line flags. This makes lading challenging to use in contexts where file-based configuration is more convenient, so we now have every lading binary read a config file from under `/etc/lading`. Signed-off-by: Brian L. Troutwine <[email protected]>
- Loading branch information
Showing
10 changed files
with
99 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lading_blackholes" | ||
version = "0.4.8" | ||
version = "0.5.0" | ||
authors = ["Brian L. Troutwine <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -13,6 +13,7 @@ description = "Blackhole programs with some instrumentation" | |
tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } | ||
metrics = { version = "0.17", default-features = false, features = ["std"] } | ||
metrics-exporter-prometheus = { version = "0.6", default-features = false, features = ["tokio-exporter"] } | ||
toml = "0.5" | ||
|
||
[dependencies.argh] | ||
version = "0.1" | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "lading_common" | ||
version = "0.4.8" | ||
version = "0.5.0" | ||
authors = ["Brian L. Troutwine <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "lading_generators" | ||
readme = "README.md" | ||
version = "0.4.8" | ||
version = "0.5.0" | ||
authors = ["Brian L. Troutwine <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
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
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