I have installed signoz on kubernetes using the he...
# support
v
I have installed signoz on kubernetes using the helm chart provided in the documentation. How do I send traces over OTLP/HTTP to the signoz OTEL collector?
i
You will need to instrument your application: https://signoz.io/docs/instrumentation/ Then configure the
OTEL_EXPORTER_OTLP_ENDPOINT
with:
<http://my-release-signoz-otel-collector:4318>
(if using my-release prefix) •
<http://the-name-of-the-signoz-otel-collector-service:4318>
(if using a custom prefix name) You have to install the SigNoz Helm template in the same namespace as your applications. Otherwise, Kubernetes cannot resolve the domain name of the service.
👍 1