Upgrading to 1.0 View Source
Backend configuration
The 1.0.0
release of Geometrics updates to 1.0.x
releases of
opentelemetry-erlang and
opentelemetry-js. These updates
do not seem to change the API for tracing, but they do change the configuration of
the collector endpoint. When updating Geometrics to use these new releases, the following
configuration change must be made:
Otel collector version / configuration
Rceivers of the OTEL data protocol changed the path by
which they receive data from /v1/trace
to /v1/traces
. While this is transparent
to the backend configuration of the :opentelemetry_exporter
, which does not include
the path, the path provided to JavaScript will need to be updated:
config :geometrics, :collector_endpoint, "http://localhost:55681/v1/traces"