-
Notifications
You must be signed in to change notification settings - Fork 872
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
feat(resource)!: Remove resource class export in favor of functions and types only to aid in cross-version compatibility #5421
feat(resource)!: Remove resource class export in favor of functions and types only to aid in cross-version compatibility #5421
Conversation
[Notes to self when understanding the API change.] The most comment usage of creating a resource to pass to an SDK: // old (showing the API from before #5350)
import { Resource } from '@opentelemetry/resources';
new Resource({'service.name': 'myservice'});
// new
import { resourceFromAttributes } from '@opentelemetry/resources';
resourceFromAttributes({'service.name': 'myservice'}); When creating the lower-level providers directly, typically one must merge with the default resource: // old
Resource.default().merge(new Resource({'service.name': 'myservice'});
// new
import { DEFAULT_RESOURCE, resourceFromAttributes } from '@opentelemetry/resources';
DEFAULT_RESOURCE.merge(resourceFromAttributes({'service.name': 'myservice'}); |
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 doesn't export resourceFromDetectedAttributes
, I notice. Will the detector implementations in opentelemetry-js-contrib.git need that? (I'm not confident on the differences between resourceFromDetectedAttributes
and resourceFromAttributes
.
Perhaps change the PR title to:
feat(resource)!: Remove resource class export in favor of functions and types only to aid in cross-version compatibility
I think there are still soem examples in README.md files that should be updated, in particular the README for the resources package itself.
README.md
85: resource: new Resource({
experimental/packages/opentelemetry-browser-detector/README.md
21: let resource= new Resource({
experimental/packages/exporter-logs-otlp-proto/README.md
34:const logProvider = new LoggerProvider({resource: new Resource({'service.name': 'testApp'})});
packages/opentelemetry-resources/README.md
22:const resource = new Resource({
26:const anotherResource = new Resource({
I asume you mean They're basically the same.
I'll make these changes |
Yes. My bad. |
Done |
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.
looks good, thank you for working on this.
just one q around the empty/default resource consts.
export const EMPTY_RESOURCE = resourceFromAttributes({}); | ||
export const DEFAULT_RESOURCE = resourceFromAttributes({ | ||
[ATTR_SERVICE_NAME]: defaultServiceName(), | ||
[ATTR_TELEMETRY_SDK_LANGUAGE]: SDK_INFO[ATTR_TELEMETRY_SDK_LANGUAGE], | ||
[ATTR_TELEMETRY_SDK_NAME]: SDK_INFO[ATTR_TELEMETRY_SDK_NAME], | ||
[ATTR_TELEMETRY_SDK_VERSION]: SDK_INFO[ATTR_TELEMETRY_SDK_VERSION], | ||
}); |
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.
I wonder if we'd want to make these two functions instead? 🤔
Today, there's no such thing, but if we ever have a function on a resource that modifies the state of the resource is some way, we may allow end-users to modify the empty resource. That would then get updated everywhere its used. Given that these are only used a few times on startup, I think the performance overhead of creating a new empty resource everytime it is called would be negligible.
Also people may use may start relying on the fact that you can check for reference equality, which is not given between different versions of @opentelemetry/resources
and may lead to trouble.
These are all very artificial examples, but I've seen people do some gnarly things. 😅
It would also nicely align them with the resourceFromAttributes()
function. 🙂
Anyway, my comment here is not blocking, but resolution of #5358 is a release blocker - I'll open another PR to suggest these changes 🙂 |
…nd types only to aid in cross-version compatibility (open-telemetry#5421) Co-authored-by: Marc Pichler <marc.pichler@dynatrace.com>
Fixes #5358
ResourceImpl
IResource
interface toResource
resourceFromAttributes
to create a resource from a set of attributes