SUBTRACE_TOKEN from the Subtrace dashboard
for free to set it as an environment variable.
localhost:8000 to see it in the Subtrace dashboard!Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Connect your Gunicorn backend to Chrome DevTools using Subtrace
# myapp.py
def app(environ, start_response):
data = b"Hello, World!\n"
start_response("200 OK", [
("Content-Type", "text/plain"),
("Content-Length", str(len(data)))
])
return iter([data])
curl -fsSL https://subtrace.dev/install.sh | sh
SUBTRACE_TOKEN from the Subtrace dashboard
for free to set it as an environment variable.
# get a tracer token for free at https://subtrace.dev/dashboard
export SUBTRACE_TOKEN=
subtrace run -- gunicorn -w 4 myapp:app
localhost:8000 to see it in the Subtrace dashboard!