Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 7a81ede

Browse files
Sweep configs
1 parent 4be82bf commit 7a81ede

File tree

8 files changed

+23
-25
lines changed

8 files changed

+23
-25
lines changed

gdi/get-data-in/application/otel-dotnet/sfx/troubleshooting/common-dotnet-troubleshooting.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ Traces don't appear in Splunk Observability Cloud
6969
If traces from your instrumented application or service are not available in Splunk Observability Cloud, verify the OpenTelemetry Collector configuration:
7070

7171
* Make sure that the Splunk Distribution of OpenTelemetry Collector is running.
72-
* Make sure that a ``zipkin`` receiver and a ``sapm`` exporter are configured.
72+
* Make sure that a ``zipkin`` receiver and an ``otlp`` exporter are configured.
7373
* Make sure that the ``access_token`` and ``endpoint`` fields are configured.
74-
* Check that the traces pipeline is configured to use the ``zipkin`` receiver and ``sapm`` exporter.
74+
* Check that the traces pipeline is configured to use the ``zipkin`` receiver and ``otlp`` exporter.
7575

7676
Metrics don't appear in Splunk Observability Cloud
7777
==================================================================

gdi/opentelemetry/components/attributes-processor.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ You can then add the attributes processors to any compatible pipeline. For examp
8383
- memory_limiter
8484
- batch
8585
- resourcedetection
86-
exporters: [sapm, signalfx]
86+
exporters: [otlphttp, signalfx]
8787
metrics:
8888
receivers: [hostmetrics, otlp, signalfx]
8989
processors:

gdi/opentelemetry/components/logging-exporter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To activate the logging exporter, add it to any pipeline you want to diagnose. F
4545
- memory_limiter
4646
- batch
4747
- resourcedetection
48-
exporters: [sapm, signalfx, logging]
48+
exporters: [otlphttp, signalfx, logging]
4949
metrics:
5050
receivers: [hostmetrics, otlp, signalfx]
5151
processors: [memory_limiter, batch, resourcedetection]

gdi/opentelemetry/components/transform-processor.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You can then add the transform processor to any compatible pipeline. For example
7777
- memory_limiter
7878
- batch
7979
- resourcedetection
80-
exporters: [sapm, signalfx]
80+
exporters: [otlphttp, signalfx]
8181
metrics:
8282
receivers: [hostmetrics, otlp, signalfx]
8383
processors:

gdi/opentelemetry/deployment-modes.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ To set the Collector in data forwarding (gateway) mode to receiving data from an
263263
264264
exporters:
265265
# Traces (Agent)
266-
sapm:
266+
otlphttp:
267267
access_token: "${SPLUNK_ACCESS_TOKEN}"
268-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
268+
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace/otlp"
269269
# Metrics + Events (Agent)
270270
signalfx:
271271
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -285,7 +285,7 @@ To set the Collector in data forwarding (gateway) mode to receiving data from an
285285
processors:
286286
- memory_limiter
287287
- batch
288-
exporters: [sapm]
288+
exporters: [otlphttp]
289289
metrics:
290290
receivers: [otlp]
291291
processors: [memory_limiter, batch]
@@ -317,9 +317,9 @@ If you want to use the :ref:`signalfx-exporter` for metrics on both agent and ga
317317
318318
exporters:
319319
# Traces
320-
sapm:
320+
otlphttp:
321321
access_token: "${SPLUNK_ACCESS_TOKEN}"
322-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
322+
traces_endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace/otlp"
323323
# Metrics + Events (Agent)
324324
signalfx:
325325
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -340,7 +340,7 @@ If you want to use the :ref:`signalfx-exporter` for metrics on both agent and ga
340340
processors:
341341
- memory_limiter
342342
- batch
343-
exporters: [sapm]
343+
exporters: [otlphttp]
344344
metrics:
345345
receivers: [signalfx]
346346
processors: [memory_limiter, batch]

gdi/opentelemetry/exposed-endpoints.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ See the table for a complete list of exposed ports and endpoints:
3232
- OTLP receiver using gRPC and http
3333
* - ``http(s)://0.0.0.0:6060``
3434
- HTTP forwarder used to receive Smart Agent ``apiUrl`` data
35-
* - ``http(s)://0.0.0.0:7276``
36-
- SAPM trace receiver
3735
* - ``http://localhost:8888/metrics``
3836
- :new-page:`Internal Prometheus metrics <https://opentelemetry.io/docs/collector/internal-telemetry>`
3937
* - ``http(s)://localhost:8006``

gdi/opentelemetry/smart-agent/smart-agent-migration-monitors.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For each Smart Agent monitor you want to add to the Collector, add a ``smartagen
3636

3737
Instead of using ``discoveryRule``, use the Collector receiver creator and observer extensions. See :ref:`receiver-creator-receiver` for more information.
3838

39-
If you're using a SignalFx Forwarder monitor (deprecated), add it to both a ``traces`` and a ``metrics`` pipeline, and use a SAPM exporter and a SignalFx exporter, as each pipeline's exporter, respectively. See more on :ref:`exporters <collector-components-processors>`.
39+
If you're using a SignalFx Forwarder monitor (deprecated), add it to both a ``traces`` and a ``metrics`` pipeline, and use an OTLP exporter and a SignalFx exporter as each pipeline's exporter, respectively. See more on :ref:`exporters <collector-components-processors>`.
4040

4141
Configure the Smart Agent receiver
4242
------------------------------------------------------------
@@ -106,9 +106,9 @@ Configuration example
106106
signalfx:
107107
access_token: "${SIGNALFX_ACCESS_TOKEN}"
108108
realm: us1
109-
sapm:
109+
otlphttp:
110110
access_token: "${SIGNALFX_ACCESS_TOKEN}"
111-
endpoint: https://ingest.us1.signalfx.com/v2/trace
111+
traces_endpoint: https://ingest.us1.signalfx.com/v2/trace/otlp
112112
113113
service:
114114
pipelines:
@@ -134,6 +134,6 @@ Configuration example
134134
processors:
135135
- resourcedetection
136136
exporters:
137-
- sapm
137+
- otlphttp
138138
139139

metrics-and-metadata/relatedcontent-collector-apm.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Here are the relevant config snippets from each section:
9696
9797
exporters:
9898
# Traces
99-
sapm:
99+
otlphttp:
100100
access_token: "${SPLUNK_ACCESS_TOKEN}"
101101
endpoint: "${SPLUNK_TRACE_URL}"
102102
# Metrics + Events + APM correlation calls
@@ -113,7 +113,7 @@ Here are the relevant config snippets from each section:
113113
traces:
114114
receivers: [jaeger, zipkin]
115115
processors: [memory_limiter, batch, resourcedetection, resource/add_environment]
116-
exporters: [sapm, signalfx]
116+
exporters: [otlphttp, signalfx]
117117
metrics:
118118
receivers: [hostmetrics]
119119
processors: [memory_limiter, batch, resourcedetection]
@@ -257,9 +257,9 @@ Here are the relevant config snippets from each section:
257257
258258
exporters:
259259
# Traces
260-
sapm:
260+
otlphttp:
261261
access_token: "${SPLUNK_ACCESS_TOKEN}"
262-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
262+
traces_endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace/otlp"
263263
# Metrics + Events
264264
signalfx:
265265
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -273,7 +273,7 @@ Here are the relevant config snippets from each section:
273273
processors:
274274
- memory_limiter
275275
- batch
276-
exporters: [sapm]
276+
exporters: [otlphttp]
277277
metrics:
278278
receivers: [otlp]
279279
processors: [memory_limiter, batch]
@@ -293,9 +293,9 @@ Configure the agent in gateway mode as follows:
293293
294294
exporters:
295295
# Traces
296-
sapm:
296+
otlphttp:
297297
access_token: "${SPLUNK_ACCESS_TOKEN}"
298-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
298+
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace/otlp"
299299
# Metrics + Events
300300
signalfx:
301301
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -311,7 +311,7 @@ Configure the agent in gateway mode as follows:
311311
processors:
312312
- memory_limiter
313313
- batch
314-
exporters: [sapm]
314+
exporters: [otlphttp]
315315
metrics:
316316
receivers: [signalfx]
317317
processors: [memory_limiter, batch]

0 commit comments

Comments
 (0)