-
Notifications
You must be signed in to change notification settings - Fork 383
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tracing: support SamplingFraction #5125
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5125 +/- ##
==========================================
- Coverage 66.89% 66.87% -0.02%
==========================================
Files 210 210
Lines 32984 32995 +11
==========================================
+ Hits 22064 22065 +1
- Misses 9584 9590 +6
- Partials 1336 1340 +4 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks !
@@ -4,7 +4,7 @@ RELEASE_VERSIONS ?= $(foreach v,$(wildcard ${ROOT_DIR}/docs/*),$(notdir ${v})) | |||
# find a way to remove github.com from ignore list | |||
# TODO: example.com is not a valid domain, we should remove it from ignore list | |||
# TODO: https://www.gnu.org/software/make became unstable, we should remove it from ignore list later | |||
LINKINATOR_IGNORE := "github.com githubusercontent.com example.com github.io gnu.org _print" | |||
LINKINATOR_IGNORE := "github.com jwt.io githubusercontent.com example.com github.io gnu.org _print" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure about why following happen:
[500] https://jwt.io/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are they ratelimiting GH ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no idea.
Signed-off-by: zirain <[email protected]>
Signed-off-by: zirain <[email protected]>
Signed-off-by: zirain <[email protected]>
Signed-off-by: zirain <[email protected]>
Signed-off-by: zirain <[email protected]>
* tracing: support SamplingFraction Signed-off-by: zirain <[email protected]>
fixes: #5089