Releases: signalfx/splunk-otel-go
Releases · signalfx/splunk-otel-go
v0.3.0
The primary changes of this release is added support for sending data directly to Splunk Observability Cloud.
Added
- Add support for setting the Splunk's organization access token using the
SPLUNK_ACCESS_TOKEN
environmental variable ordistro.WithAccessToken
option. It allows exporters sending data directly to the Splunk Observability Cloud. To do so, theOTEL_EXPORTER_JAEGER_ENDPOINT
ordistro.WithEndpoint
must be set with Splunk back-end ingest endpoint URL:https://ingest.<REALM>.signalfx.com/v2/trace
.
Changed
- The default Jaeger exporter URL is now loaded by
go.opentelemetry.io/otel/exporters/trace/jaeger
module. - Applying
distro.WithEndpoint("")
results in no operation.
Removed
- Remove
SIGNALFX_ENDPOINT_URL
environmental variable, useOTEL_EXPORTER_JAEGER_ENDPOINT
instead.
v0.2.0
The primary change of this release is updating the dependency of go.opentelemetry.io/otel*
packages from v0.19.0
to v0.20.0
and similarly go.opentelemetry.io/contrib*
package from v0.19.0
to v0.20.0
. This includes a fix in the Jaeger exporter. This fix removes the duplicate batching that the exporter implemented. Now the BatchSpanProcessor
that the distro
package configures by default will not experience an impedance mismatch with this duplicate batching.