-
Notifications
You must be signed in to change notification settings - Fork 91
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
fix(metrics): Remove/reject nul-bytes from metric strings [ingest-1204] #1235
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0434a7d
fix(metrics): Remove/reject nul-bytes from metric strings [ingest-1204]
untitaker 8e69309
Update relay-metrics/src/aggregation.rs
untitaker ddf33c8
fix wrapping
untitaker 48455d0
remove release/environment character validation
untitaker 4539d6d
add changelog
untitaker 708928c
ignore errors in merge_all
untitaker 5461474
make aggregatemetricserror an enum
untitaker b2d8f18
ref(metrics): Refactor aggregation error, recover from errors more gr…
untitaker 3ef65b3
add changelog
untitaker df08cc2
Merge branch 'ref/aggregation-error' into fix/reject-null-values
untitaker dd7369f
address review feedback
untitaker 75a463c
Merge remote-tracking branch 'origin/master' into fix/reject-null-values
untitaker 5a74087
fix lint
untitaker 3a6559a
restore debug stmts
untitaker 88e3bf9
fix mri validation
untitaker 8ab8097
fix mri validation
untitaker ef658b9
fix formatting
untitaker 02f0b08
fix tests
untitaker 2d695c8
Merge branch 'fix/mri-validation' into fix/reject-null-values
untitaker c526013
fix tests
untitaker 3618181
fix docstring
untitaker ce8f57f
Merge branch 'fix/mri-validation' into fix/reject-null-values
untitaker df4f9f3
fix tests
untitaker 1b4b7ed
fix docs
untitaker 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
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
Oops, something went wrong.
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.
this change does mean that the release name is only validated in the store normalizer. I think we will need to follow up with moving this part of store normalization to run before metrics extraction as well
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.
Does it even make sense to remove the
deny_chars
at this point? Or should we do that as part of the follow up?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.
A separate PR that moves this in one go would've been slightly more semantic, but let's keep it this way in light of moving fast.
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.
https://getsentry.atlassian.net/browse/INGEST-1285