-
Notifications
You must be signed in to change notification settings - Fork 558
[API] Add InstrumentationScope attributes in MeterProvider::GetMeter() #2224
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
Merged
marcalff
merged 21 commits into
open-telemetry:main
from
marcalff:fix_breaking_getmeter_2033
Sep 30, 2023
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
fdbef73
Proof of concept.
marcalff 63fde43
Fixed instrumentation scope
marcalff b1b735f
Cleanup
marcalff d2a107a
Code simplification.
marcalff e287db5
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff a754d54
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff 51852cc
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff 88d31da
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff 3853b9d
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff b404d40
Added CI to test ABI VERSION 2
marcalff 7610dc9
cleanup
marcalff e3b5f07
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff 673af34
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff acad9e7
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff d4ec4af
Implemented support for key value iterable.
marcalff 2125acb
Fixed build break.
marcalff 8f9f1ec
Resolved overload issue.
marcalff 1ac42b6
Cleanup, changelog.
marcalff a53ff4e
Merge branch 'main' into fix_breaking_getmeter_2033
lalitb f812c9c
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff 9d0a39a
Merge branch 'main' into fix_breaking_getmeter_2033
marcalff 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 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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -105,10 +105,10 @@ struct AttributeConverter | |
| class AttributeMap : public std::unordered_map<std::string, OwnedAttributeValue> | ||
| { | ||
| public: | ||
| // Contruct empty attribute map | ||
| // Construct empty attribute map | ||
| AttributeMap() : std::unordered_map<std::string, OwnedAttributeValue>() {} | ||
|
|
||
| // Contruct attribute map and populate with attributes | ||
| // Construct attribute map and populate with attributes | ||
| AttributeMap(const opentelemetry::common::KeyValueIterable &attributes) : AttributeMap() | ||
| { | ||
| attributes.ForEachKeyValue( | ||
|
|
@@ -118,6 +118,19 @@ class AttributeMap : public std::unordered_map<std::string, OwnedAttributeValue> | |
| }); | ||
| } | ||
|
|
||
| // Construct attribute map and populate with optional attributes | ||
| AttributeMap(const opentelemetry::common::KeyValueIterable *attributes) : AttributeMap() | ||
| { | ||
| if (attributes != nullptr) | ||
| { | ||
| attributes->ForEachKeyValue( | ||
| [&](nostd::string_view key, opentelemetry::common::AttributeValue value) noexcept { | ||
| SetAttribute(key, value); | ||
| return true; | ||
|
Member
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. nit - some code duplication, which can be moved to a separate utils method. But don't see it really required to fix |
||
| }); | ||
| } | ||
| } | ||
|
|
||
| // Construct map from initializer list by applying `SetAttribute` transform for every attribute | ||
| AttributeMap( | ||
| std::initializer_list<std::pair<nostd::string_view, opentelemetry::common::AttributeValue>> | ||
|
|
||
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.