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
Describe your environment Python 3.6.9 python-opentelemetry 0.16b1
Steps to reproduce Instrument your app using the batch exporter as a span processor:
trace.get_tracer_provider().add_span_processor( BatchExportSpanProcessor( jaeger.JaegerSpanExporter( service_name=app.config['DEPLOYMENT_NAME'] or 'other', agent_host_name=jaeger_agent_host, agent_port=jaeger_agent_port, ), max_export_batch_size=SPAN_BATCH_MAX_SIZE, ) )
Then, fork the process.
What is the expected behavior? Sending traces and spans from the children of a forked process would work.
What is the actual behavior? The child process can't send traces and spans.
The text was updated successfully, but these errors were encountered:
@jpmelos this is kind of limitation; You need to use fork hooks such as uWSGI uwsgidecorators.postfork, Gunicorn post_fork and os.register_at_fork.
uwsgidecorators.postfork
post_fork
os.register_at_fork
Sorry, something went wrong.
This issue was marked stale due to lack of activity. It will be closed in 30 days.
Closed as inactive. Feel free to reopen if this issue needs resolving.
No branches or pull requests
Describe your environment
Python 3.6.9
python-opentelemetry 0.16b1
Steps to reproduce
Instrument your app using the batch exporter as a span processor:
Then, fork the process.
What is the expected behavior?
Sending traces and spans from the children of a forked process would work.
What is the actual behavior?
The child process can't send traces and spans.
The text was updated successfully, but these errors were encountered: