Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
asreehari-splunk committed Dec 17, 2024
1 parent 40dc427 commit d7308d6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .chloggen/deprecate_sapmexporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ subtext: |
```yaml
exporters:
otlphttp:
traces_endpoint: "${INGEST_URL}/v2/trace/otlp"
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
headers:
"X-SF-Token": "${ACCESS_TOKEN}"
"X-SF-Token": "${SPLUNK_ACCESS_TOKEN}"
```
# If your change doesn't affect end users or the exported elements of any package,
Expand Down
15 changes: 15 additions & 0 deletions exporter/sapmexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,21 @@
[contrib]: https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib
<!-- end autogenerated section -->

### Deprecated
> The SAPM protocol is based on the Jaeger protocol, which is no longer the preferred approach of the community, with the advent of the OTLP protocol. The Jaeger exporters have been removed from the collector already. Jaeger itself is migrating to use the OTel data format internally.
> As a result, the SAPM exporter is being deprecated in favor of the OTLPHTTP exporter. The following configuration can be used for the OTLPHTTP exporter
```yaml
exporters:
otlphttp:
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
headers:
"X-SF-Token": "${SPLUNK_ACCESS_TOKEN}"
```
The SAPM exporter builds on the Jaeger proto and adds additional batching on top. This allows
the collector to export traces from multiples nodes/services in a single batch. The SAPM proto
and some useful related utilities can be found [here](https://github.com/signalfx/sapm-proto/).
Expand Down

0 comments on commit d7308d6

Please sign in to comment.