Running Backend Server Using SeaLights Agent
uWSGI
uwsgi ... --enable-threads --single-interpreter --import python_agent.init[uwsgi]
...
enable-threads = true
single-interpreter = true
import = python_agent.initGunicorn WSGI
...
def post_fork(server, worker):
import python_agent.init
...Uvicorn ASGI
Other servers (Generic solution)
Containers: Runtime Integration Without Modifying the ENTRYPOINT
Using a sitecustomize.py file
sitecustomize.py fileSteps to set up
Last updated
Was this helpful?

