Tracker checker: call health check endpoints#641
Merged
josecelano merged 1 commit intotorrust:developfrom Jan 22, 2024
Merged
Conversation
It runs some checks against a running tracker.
Member
Author
|
The current output is: $ cargo run --bin tracker_checker "./share/default/config/tracker_checker.json"
Finished dev [optimized + debuginfo] target(s) in 0.07s
Running `target/debug/tracker_checker ./share/default/config/tracker_checker.json`
Running checks for trackers ...
UDP trackers ...
✓ - UDP tracker at 127.0.0.1:6969 is OK (TODO)
HTTP trackers ...
✓ - HTTP tracker at http://127.0.0.1:7070/ is OK (TODO)
Health checks ...
✓ - Health API at http://127.0.0.1:1313/health_check is OK |
Member
Author
|
ACK b2ef4e0 |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #641 +/- ##
===========================================
- Coverage 77.59% 77.03% -0.56%
===========================================
Files 125 130 +5
Lines 8349 8519 +170
===========================================
+ Hits 6478 6563 +85
- Misses 1871 1956 +85 ☔ View full report in Codecov by Sentry. |
This file contains hidden or 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
Sign up for free
to 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.
Console command that runs some checks against running trackers. This PR only implements:
You can run it with:
cargo run --bin tracker_checker "./share/default/config/tracker_checker.json"The configuration file contains the services you wan to check:
{ "udp_trackers": [ "127.0.0.1:6969" ], "http_trackers": [ "http://127.0.0.1:7070" ], "health_checks": [ "http://127.0.0.1:1313/health_check" ] }For the
health_checksit only makes a request and shows OK if the response status was 200, otherwise, it shows the error.