-
Notifications
You must be signed in to change notification settings - Fork 375
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
[core] add metrics testing #81
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d9e802e
[sampler] disable logger on tests
332a929
[core] set_metric enforces float values, recovering if the cast is no…
ef07ab5
[metrics] add integration tests for Span metrics
132a404
[core] rubocop cosmetics
132aa4f
[docs] set_metric is available in the Manual Instrumentation section
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,4 +69,41 @@ def test_span_set_parent_nil | |
assert_equal(child.parent_id, 0) | ||
assert_equal(child.service, 'defaultdb') | ||
end | ||
|
||
def test_get_valid_metric | ||
span = Datadog::Span.new(nil, 'test.span') | ||
span.set_metric('a', 10) | ||
assert_equal(10.0, span.get_metric('a')) | ||
end | ||
|
||
def test_set_valid_metrics | ||
# metrics must be converted to float values | ||
span = Datadog::Span.new(nil, 'test.span') | ||
span.set_metric('a', 0) | ||
span.set_metric('b', -12) | ||
span.set_metric('c', 12.134) | ||
span.set_metric('d', 1231543543265475686787869123) | ||
span.set_metric('e', '12.34') | ||
h = span.to_hash | ||
expected = { | ||
'a' => 0.0, | ||
'b' => -12.0, | ||
'c' => 12.134, | ||
'd' => 1231543543265475686787869123.0, | ||
'e' => 12.34, | ||
} | ||
assert_equal(expected, h[:metrics]) | ||
end | ||
|
||
def test_invalid_metrics | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
# invalid values must be discarded | ||
span = Datadog::Span.new(nil, 'test.span') | ||
span.set_metric('a', nil) | ||
span.set_metric('b', {}) | ||
span.set_metric('c', []) | ||
span.set_metric('d', span) | ||
span.set_metric('e', 'a_string') | ||
h = span.to_hash | ||
assert_equal({}, h[:metrics]) | ||
end | ||
end |
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.
Note that a cast will raise an
ArgumentError
.A cleaner way would be to check if
value.is_a?(Integer) || value.is_a?(Float)
.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.
if
nil
is passed it will be aTypeError
:The reason to use the
Float(value)
is that a string may be converted tofloat
, as we're doing in the Python implementation. I think it was already discussed before about why we should at least try to make it work.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.
Ok then.