-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add native/firstParty flag to cpp and dotnet instrumentation #4855
Add native/firstParty flag to cpp and dotnet instrumentation #4855
Conversation
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.
All of these components are non first party, as they are not created by the same organisation that has created the underlying instrumented library, so can you switch from "true" to "false" whenever the lib lives in an otel repo
@@ -13,3 +13,4 @@ authors: | |||
urls: | |||
repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/httpd | |||
createdAt: 2021-11-11 | |||
isFirstParty: true |
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.
isFirstParty: true | |
isFirstParty: false |
@@ -14,3 +14,4 @@ authors: | |||
urls: | |||
repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/nginx | |||
createdAt: 2021-11-11 | |||
isFirstParty: true |
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.
isFirstParty: true | |
isFirstParty: false |
Some of them have moved, and not been deleted, see this PR: #4822, I didn't merge this PR yet since I had limited availability last week, I will fix this now and then we can delete the ones remaining. Thank you once again |
1319dca
to
04c7fab
Compare
I have rebased my branch using upstream/main. I've also made the changes requested. Please review again when convenient. Thanks! |
To address open-telemetry#4795, this is a series of PRs that add native or first party flags to registries that lack them. This batch touches cpp and dotnet instrumentation registries.
04c7fab
to
5a9f5a4
Compare
To address #4795, this is a series of PRs that add native or first party flags to registries that lack them. This batch touches cpp and dotnet instrumentation registries.
Entries whose repo url returns 404 are deleted.
PR #4836 has more background.