We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From spec https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/bridge-api.md#get-a-logger:
Loggers are identified by name, version, and schema_url fields.
In code:
opentelemetry-go/log/internal/global/log.go
Lines 40 to 54 in bf06b80
We are missing SchemeURL in the key.
SchemeURL
Side note: There may be the same bug for other signals.
The text was updated successfully, but these errors were encountered:
It looks like the same issue is for Tracer and Meter:
Tracer
Meter
opentelemetry-go/internal/global/trace.go
Lines 104 to 107 in bf06b80
Sorry, something went wrong.
It looks like the same issue is for Tracer and Meter: opentelemetry-go/internal/global/trace.go Lines 104 to 107 in bf06b80 type il struct { name string version string }
Please open issues to track these needed changes.
Identify logger with schemaURL in global logger provider (#5375)
14441ae
Fix #5366
MrAlias
Successfully merging a pull request may close this issue.
From spec https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/bridge-api.md#get-a-logger:
In code:
opentelemetry-go/log/internal/global/log.go
Lines 40 to 54 in bf06b80
We are missing
SchemeURL
in the key.Side note: There may be the same bug for other signals.
The text was updated successfully, but these errors were encountered: