-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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(new_relic sink): Multiple fixes related to metrics #18151
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
05025b1
Convert tags into attributes.
asllop 4cdef4e
Merge branch 'vectordotdev:master' into master
asllop 087d4bf
Decompose metric into parts to reuse tags instead of cloning.
asllop 2dd2668
Remove unnecessary blocks.
asllop 6020efb
Set metric type.
asllop 9e7d57c
Fix field name typo.
asllop 567f236
Remove unnecessary brackets.
asllop c3b4784
Merge branch 'master' into master
asllop b755769
Cargo fmt.
asllop 67943c9
Merge branch 'master' of https://github.com/asllop/vector
asllop 48f16d8
Update src/sinks/new_relic/model.rs
asllop af14a7d
Update src/sinks/new_relic/model.rs
asllop 137943c
Fix typo.
asllop 2a2282c
Add tests for newly supported metrics.
asllop b72faed
Simplify metric type cases.
asllop 84a8d61
Merge branch 'vectordotdev:master' into master
asllop 41b41ab
Cargo fmt.
asllop f247c95
Merge remote-tracking branch 'origin/master' into asllop/master
jszwedko 62addd3
Update to handle new tag model
jszwedko 1f2bc83
PR feedback
jszwedko f256b33
refactor
dsmith3197 0ecfa81
add dropped event metrics
dsmith3197 c3769db
track unsupported metric types as well
dsmith3197 494b12e
merge master
dsmith3197 c11c958
feedback
dsmith3197 4e4943f
more feedback
dsmith3197 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
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.
Here and elsewhere, I'm not a fan of emitting these events within a
TryFrom
implementation but it made the most sense given the existing implementation. I'm happy to consider alternatives if others have strong opinions.