opentelemetry-python icon indicating copy to clipboard operation
opentelemetry-python copied to clipboard

Add OTLP/HTTP metric exporter

Open codeboten opened this issue 3 years ago • 1 comments

As with the other signals, metrics should be available for export as OTLP over HTTP.

codeboten avatar Feb 07 '22 21:02 codeboten

For a use of this instead of gRPC, when running in a Lambda, the service is paused while not running. As gRPC keeps a persistent connection, this pause can make the connection be broken, and a reconnection would be needed when unpausing.

With an HTTP connection, only when flushing the connection is made, so this problem doesn't happen.

RangelReale avatar Aug 16 '22 20:08 RangelReale