alonelaval commented on issue #5263:
URL: https://github.com/apache/skywalking/issues/5263#issuecomment-671378544
I used flask to test in the environment of gunicorn, it can run normally.
```
import requests
from skywalking import config, agent
config.service_name = 'consumer'
config.logging_level = 'DEBUG'
config.flask_collect_http_params = True
agent.start()
from flask import Flask, jsonify
app = Flask(__name__)
@app.route("/users", methods=["POST", "GET"])
def application():
requests.post("http://github.com")
return jsonify({"test": "hello world"})
```
command:`gunicorn -w 4 test_gunicorn:app`
when i use `uwsgi --http 127.0.0.1:8000 --buffer-size=65536 --processes=4
--module test_gunicorn:app ` still work well,but segment report slowed。

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]