I am currently attempting to integrate the Baselime OTel SDK with my Django app. However, I have noticed that the HTTP headers span attributes report controlled by the OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST environment variable is not functioning.
After conducting some investigation, it appears that the Baselime OTel API does not accept attribute values of type list, despite it being allowed in both the OTel specification and OTel Python SDK.
Nevertheless, I have come across some dictionary flatten utilities in utils.py. Consequently, I am curious about what could be causing this issue.
I am currently attempting to integrate the Baselime OTel SDK with my Django app. However, I have noticed that the HTTP headers span attributes report controlled by the
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUESTenvironment variable is not functioning.After conducting some investigation, it appears that the Baselime OTel API does not accept attribute values of type
list, despite it being allowed in both the OTel specification and OTel Python SDK.Nevertheless, I have come across some dictionary flatten utilities in utils.py. Consequently, I am curious about what could be causing this issue.