I’m running a streamlit app on a cloud server instance. It is running behind an nginx reverse proxy. When I try to connect to the app from my browser, the app gets stuck on loading and doesn’t proceed any further.
In order to understand what is going on, I need to inspect the Streamlit App’s server logs. That is, the logs that tell me what requests it is receiving, and what it is doing with them. There are NOT the log messages one would get from the use of the Python logging
module in the app’s code.
I’m not sure what server technology Streamlit uses (gunicorn
? uvicorn
?), but whatever it is, I need the logs from that.