asgi-correlation-id icon indicating copy to clipboard operation
asgi-correlation-id copied to clipboard

Request ID propagation for ASGI apps

Results 4 asgi-correlation-id issues
Sort by recently updated
recently updated
newest added

Hello, Great lib! I have been using it for a while with FastAPI but I have changed to using Litestar now. It apparently works out of the box but would...

```python from asgi_correlation_id.middleware import is_valid_uuid4 # returns True but I expected it to return False since # '00000000000000000000000000000000' is not a valid version 4 UUID is_valid_uuid4(uuid.UUID(int=0).hex) ``` This is because...

I am trying to add the correlation id to uvicorn, but the uvicorn logging seems the same, without correlation-id. ``` def configure_logging(): dictConfig( { "version": 1, "disable_existing_loggers": False, "filters": {...

python version: 3.8.16 traceback: ``` Traceback (most recent call last): File "/usr/lib/python3.8/logging/config.py", line 698, in add_filters filterer.addFilter(self.config['filters'][f]) File "/usr/lib/python3.8/logging/config.py", line 324, in __getitem__ value = dict.__getitem__(self, key) KeyError: The above...