flask-log-request-id icon indicating copy to clipboard operation
flask-log-request-id copied to clipboard

Flask extension to track and log Request-ID headers produced by PaaS like Heroku and load balancers like Amazon ELB

Results 17 flask-log-request-id issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, I have tried to use `enable_request_id_propagation` with celery but during debugging found this: I have a lot of things bound to my flask app (e.g. flask-sqlalchemy) so in celery,...

Hi folks, It's been more than 2 years from the last commit that landed here. Is this project still alive? I'm asking this because I'm using this library but having...

[This line](https://github.com/Workable/flask-log-request-id/blob/release/v0.10.1/flask_log_request_id/request_id.py#L84) appears to break the following common pattern: ``` def create_app(): """Bootstrap the app. Takes an instance of the Flask obj/app.""" app = Flask(__name__) request_id = RequestID() request_id.init_app(app) return...

Hi, I want to use threading.Thread to do some long run tasks. But failed to propagate request id to the threading. Could you help on this?

This is similar to https://github.com/dabapps/django-log-request-id/issues/10, with the difference that the django-log-request-id module uses threading.local to store the request id. Flask.g does not work in greenlets (see also: https://stackoverflow.com/questions/47384600/access-flask-g-inside-greenlet). It would...

Hello and thank you for the library. I'm currently using version `0.10.1` and I'm having an issue that the header `X-Request-Id` is only visible in the `werkzeug` logs if an...

Ok so here is my proposition: - keep only one branch: master - use tags when you want to do a release - always keep the version in sync with...

Current implementation is using Flask events to handle requests at the beggining and end of processing. The alternative solution is to make it a Flask extension that adds itself as...

discussion