Skip to content

Commit 5a95f82

Browse files
authored
Merge pull request #128 from rancher/fix-api-endpoints
Update api endpoints documentation
2 parents 4a69aa4 + 3ed1cf4 commit 5a95f82

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

docs/latest/modules/en/pages/setup/otel/getting-started/getting-started-k8s-operator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ spec:
158158
otlp/suse-observability:
159159
auth:
160160
authenticator: bearertokenauth
161-
# Put in your own otlp endpoint, for example suse-observability.my.company.com:443
161+
# Put in your own otlp endpoint, for example otlp-suse-observability.my.company.com:443
162162
endpoint: <otlp-suse-observability-endpoint:port>
163163
compression: snappy
164164
processors:

docs/latest/modules/en/pages/setup/otel/getting-started/getting-started-k8s.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ config:
9797
otlp/suse-observability:
9898
auth:
9999
authenticator: bearertokenauth
100-
# Put in your own otlp endpoint, for example suse-observability.my.company.com:443
100+
# Put in your own otlp endpoint, for example otlp-suse-observability.my.company.com:443
101101
endpoint: <otlp-suse-observability-endpoint:port>
102102
compression: snappy
103103
processors:

docs/latest/modules/en/pages/setup/otel/getting-started/getting-started-lambda.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ config:
8686
otlp:
8787
auth:
8888
authenticator: bearertokenauth
89-
# Put in your own otlp endpoint, for example suse-observability.my.company.com:443
89+
# Put in your own otlp endpoint, for example otlp-suse-observability.my.company.com:443
9090
endpoint: <otlp-suse-observability-endpoint:port>
9191
9292
service:

docs/latest/modules/en/pages/setup/otel/getting-started/getting-started-linux.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ exporters:
129129
compression: snappy
130130
auth:
131131
authenticator: bearertokenauth
132-
# Put in your own otlp endpoint, for example suse-observability.my.company.com:443
132+
# Put in your own otlp endpoint, for example otlp-suse-observability.my.company.com:443
133133
endpoint: <otlp-suse-observability-endpoint:port>
134134
processors:
135135
memory_limiter:

docs/latest/modules/en/pages/setup/otel/otlp-apis.adoc

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ SUSE Observability supports 2 versions of the OTLP protocol, the `grpc` version
99

1010
The endpoints for SUSE Cloud Observability are:
1111

12-
* OTLP: `+https://otlp-<your-suse-observability>.app.stackstate.io:443+`
13-
* OTLP over HTTP: `+https://otlp-http-<your-suse-observability>.app.stackstate.io+`
12+
* OTLP: `+otlp-<your-suse-observability>.app.stackstate.io:443+` (without the URL scheme)
13+
* OTLP over HTTP: `+https://otlp-http-<your-suse-observability>.app.stackstate.io+` (with the URL scheme: `https`)
1414

1515
== Self-hosted SUSE Observability
1616

@@ -26,6 +26,8 @@ The GRPC protocol does not support sending credentials over an insecure connecti
2626

2727
== Collector configuration
2828

29+
=== OTLP protocol
30+
2931
The examples in the collector configuration use the OTLP protocol like this:
3032

3133
----
@@ -37,14 +39,17 @@ exporters:
3739
otlp/suse-observability:
3840
auth:
3941
authenticator: bearertokenauth
42+
# Put in your own otlp endpoint, for example otlp-suse-observability.my.company.com:443
4043
endpoint: <otlp-suse-observability-endpoint>
4144
# Optional TLS configurations:
4245
#tls:
4346
# To disable certificate verification (but still use TLS):
4447
# insecure_skip_verify: true
4548
----
4649

47-
To use the OTLP over HTTP protocol instead use the `otlphttp` exporter instead. Don't forget to update the exporter references, `otlp/suse-observability`, in your pipelines to `otlphttp/suse-observability`!
50+
=== OTLP HTTP protocol
51+
52+
To use the OTLP over HTTP protocol instead use the `otlphttp` exporter instead. Also update all exporter references in your pipelines from `otlp/suse-observability` to `otlphttp/suse-observability`! Use a find/replace to make sure you change all occurrences.
4853

4954
----
5055
extensions:
@@ -55,6 +60,7 @@ exporters:
5560
otlphttp/stackstate:
5661
auth:
5762
authenticator: bearertokenauth
63+
# Put in your own otlp-http endpoint, for example https://otlp-http-suse-observability.my.company.com:443
5864
endpoint: <otlp-http-suse-observability-endpoint>
5965
# Optional TLS configurations:
6066
#tls:

0 commit comments

Comments
 (0)