Closed
Description
Is your feature request related to a problem?
No
Describe the solution you'd like
I'd like to send json formatted http otlp events. It currently defaults to the form encoded request outlined in the requests docs. Can we set the request format via environment variables?
Additional context
The default requests post sends form encoded data. In order to support json the python http client would need the following change.
self.session.post("http://somewhere.org/endpoint", data=json.dumps(data))