-
Notifications
You must be signed in to change notification settings - Fork 508
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
opentelemetry-otlp how to name service: OTLPResourceNoAttributes #475
Comments
There isn't a service name concept in OTEL. So the convention here(and in opentelemetry-jaeger) is to use |
Hm, ok. Thank you. I should probably open a bug against Tempo in that case, as Btw, in golang the way I see this is done is by naming the tracer: |
Actually, that is the instrument library name, which will appear as a tag So I think Tempo does check the |
Usually, resources will be set when init the tracer provider. You can refer here to see how to do it |
Ahhh, it's a Resource. Thank you. Added:
and it worked. |
Good to know. Since this was defined in spec, we do have a const value for
|
Currently, all my traces show up as top level
OTLPResourceNoAttributes
:Is there a way to inject the service name with
opentelemetry-otlp
like in opentelemetry-jaeger?The text was updated successfully, but these errors were encountered: