-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
quic: add QUIC downstream connection close error stats. #16584
Merged
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b7b52e1
Add QUIC downstream connection close error stats.
RenjieTang a704f7d
change naming style
RenjieTang e77ca28
more naming change
RenjieTang 1b9275b
Change QuicStats to QuicStatNames and move its ownership to
RenjieTang a47dc19
Merge remote-tracking branch 'upstream/main' into quic-stats
RenjieTang c4394c5
fix format
RenjieTang 71f28c3
Remove OptRef and set quic_stat_names_ in constructors.
RenjieTang a71c23c
format
RenjieTang 79e200b
pre initialize more popular connection close error stats.
RenjieTang 8957117
add more tests
RenjieTang 5c83f5f
Merge remote-tracking branch 'upstream/main' into quic-stats
RenjieTang 6cd0d83
address Alyssa's comments.
RenjieTang 4fe3fc5
update stat name
RenjieTang ac867ce
doc formatting
RenjieTang d009105
attempt to fix flaky tests
RenjieTang 832b098
address Matt's comments.
RenjieTang 8b7047a
add corner case test.
RenjieTang 0cc03f4
fix doc underline
RenjieTang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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.
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.
Can you add a test case for this? Also, I think warning here can log spam. I would recommend making this debug level and potentially also adding a stat for unknown error code or something like that. Thank you.
/wait
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.
done.
I utilized quic::QUIC_LAST_ERROR_CODE as a stat for all out of range codes.