chore(ureq): Record envelope losses in the Ureq transport#1178
Open
szokeasaurusrex wants to merge 3 commits into
Open
chore(ureq): Record envelope losses in the Ureq transport#1178szokeasaurusrex wants to merge 3 commits into
szokeasaurusrex wants to merge 3 commits into
Conversation
d0fb9ec to
bd8072f
Compare
909c0a7 to
4a14916
Compare
bd8072f to
28f9398
Compare
4a14916 to
1d62e22
Compare
28f9398 to
1d70a92
Compare
1d62e22 to
dec4c12
Compare
1d70a92 to
d566a6d
Compare
dec4c12 to
42903b4
Compare
0d1f9c7 to
78d07ac
Compare
e7bcd1e to
844ce7b
Compare
78d07ac to
c5ba012
Compare
844ce7b to
e09c2d4
Compare
de93acf to
c80c467
Compare
e09c2d4 to
4d3c698
Compare
c80c467 to
5c62ea2
Compare
3309c81 to
d48565f
Compare
5c62ea2 to
398ca7c
Compare
d48565f to
ca00003
Compare
398ca7c to
a1f576a
Compare
ca00003 to
e94b7e4
Compare
a1f576a to
b58b512
Compare
b58b512 to
db5340b
Compare
e94b7e4 to
5b42ae7
Compare
Record lost envelopes in the `ureq` transport after the transport thread accepts them for sending. Ureq request failures are recorded as `network_error`; non-`429` HTTP `4xx`/`5xx` responses are recorded as `send_error`. Keep existing rate-limit handling for `429` responses and the existing payload-too-large debug message for `413` responses. Closes [#1153](#1153) Closes [RUST-228](https://linear.app/getsentry/issue/RUST-228)
5b42ae7 to
7e008a3
Compare
db5340b to
547b8b8
Compare
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.
Record lost envelopes in the
ureqtransport after the transport thread accepts them for sending. Ureq request failures are recorded asnetwork_error; non-429HTTP4xx/5xxresponses are recorded assend_error.Keep existing rate-limit handling for
429responses and the existing payload-too-large debug message for413responses.Closes #1153
Closes RUST-228