SUSE Observability OTLP APIs
SUSE Observability
Last updated
SUSE Observability
Last updated
SUSE Observability supports 2 versions of the OTLP protocol, the grpc
version (also referred to as OTLP) and http/protobuf
(also referred to as OTLP over HTTP). In the collector configuration you can choose which exporter to use, but make sure to configure the correcct URL for SUSE Observability. The grpc
version of the protocol is preferred, it allows for larger payloads and higher throughput. But in case of poor support for grpc
in your infrastructure you can switch to the HTTP version. See also
The endpoints for SUSE Cloud Observability are:
OTLP: https://otlp-<your-suse-observability>.app.stackstate
.com:443
OTLP over HTTP: https://otlp-http-<your-suse-observability>
.app.stackstate.com
For a self-hosted installation you need to enable one of the endpoints, or both, by configuring the ingress for SUSE Observability as .
When SUSE Observability is running in the same cluster as the collector you can also use it without ingress by using the service endpoints:
OTLP: http://suse-observability-otel-collector.<namespace>.svc.cluster.local:4317
OTLP over HTTP: http://suse-observability-otel-collector.<namespace>.svc.cluster.local:4318
Make sure to set insecure: true
in the collector configuration (see next section) to allow the usage of plain http endpoints instead of https.
The examples in the collector configuration use the OTLP protocol like this:
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
!
There is more configuration available to control the exact requirements and behavior of the exporter. For example it is also possible to use a custom CA root certificate or to enable client certificates. See the for the details.