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

Commit e91d2d8

Browse files
Update otlphttp-exporter.rst
Replaced the domain values with the placeholder <realm>.
1 parent c406bc7 commit e91d2d8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

gdi/opentelemetry/components/otlphttp-exporter.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The following settings are optional and can be added to the configuration for mo
4646

4747
* ``logs_endpoint``. The target URL to send log data to. For example, ``https://example.com:4318/v1/logs``.
4848

49-
* ``metrics_endpoint``. The target URL to send metric data to. For example, ``"https://ingest.us0.signalfx.com/v2/datapoint/otlp"`` to send metrics to Splunk Observability Cloud.
49+
* ``metrics_endpoint``. The target URL to send metric data to. For example, ``"https://ingest.<realm>.signalfx.com/v2/datapoint/otlp"`` to send metrics to Splunk Observability Cloud.
5050

5151
* ``tls``. See :ref:`TLS Configuration Settings <otlphttp-exporter-settings>` in this document for the full set of available options. Only applicable for sending data to a custom endpoint.
5252

@@ -67,7 +67,8 @@ To send traces and metrics to Splunk Observability Cloud using OTLP over HTTP, c
6767
otlphttp:
6868
# The target URL to send trace data to. By default it's set to ``https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace/otlp``.
6969
traces_endpoint: https://ingest.<realm>.signalfx.com/v2/trace/otlp
70-
metrics_endpoint: https://ingest.us0.signalfx.com/v2/datapoint/otlp
70+
# The target URL to send metrics data to. By default it's set to ``https://ingest.${SPLUNK_REALM}.signalfx.com/v2/datapoint/otlp``.
71+
metrics_endpoint: https://ingest.<realm>.signalfx.com/v2/datapoint/otlp
7172
# Set of HTTP headers added to every request.
7273
headers:
7374
# X-SF-Token is the authentication token provided by Splunk Observability Cloud.
@@ -93,8 +94,8 @@ This is a detailed configuration example:
9394
.. code-block:: yaml
9495
9596
endpoint: "https://1.2.3.4:1234"
96-
traces_endpoint: https://ingest.us0.signalfx.com/v2/trace/otlp
97-
metrics_endpoint: https://ingest.us0.signalfx.com/v2/datapoint/otlp
97+
traces_endpoint: https://ingest.<realm>.signalfx.com/v2/trace/otlp
98+
metrics_endpoint: https://ingest.<realm>.signalfx.com/v2/datapoint/otlp
9899
headers:
99100
X-SF-Token: <access_token>
100101
timeout: 10s
@@ -161,8 +162,8 @@ For example:
161162
162163
exporters:
163164
otlphttp:
164-
metrics_endpoint: https://ingest.lab0.signalfx.com/v2/datapoint/otlp
165-
traces_endpoint: https://ingest.lab0.signalfx.com/v2/trace/otlp
165+
metrics_endpoint: https://ingest.<realm>.signalfx.com/v2/datapoint/otlp
166+
traces_endpoint: https://ingest.<realm>.signalfx.com/v2/trace/otlp
166167
headers:
167168
"X-SF-Token": "mytoken"
168169
auth:

0 commit comments

Comments
 (0)