-
Notifications
You must be signed in to change notification settings - Fork 0
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 support for 3.11 and 3.12 #315
Conversation
exporter = ZipkinExporter( | ||
endpoint=self._config.agent_config.reporting.endpoint | ||
) | ||
#exporter = ZipkinExporter( |
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.
will this give some form of npe? Maybe we can make this case point to noopexporter?
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.
no npe here. We assign exporter to None by default & then the caller of this func checks:
exporter = self._init_exporter(reporter_type)
if exporter is None:
logger.warning("Unable to initialize exporter")
return
Currently python otel zipkin has conflicting proto dependency as otlp http, for now I've commented out zipkin support(we still have otlp http & otlp grpc)