From 6e55dbd3bd08affee104fc9299e1545712a1515e Mon Sep 17 00:00:00 2001 From: rochala Date: Thu, 9 Jul 2026 16:59:35 +0200 Subject: [PATCH] Use http for default OTLP endpoint The telemetry server has no TLS on the raw IP, so https connections fail. Point the default at plain http until TLS is set up. --- lib/resources/reference.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resources/reference.conf b/lib/resources/reference.conf index 64df1fc..39f1e62 100644 --- a/lib/resources/reference.conf +++ b/lib/resources/reference.conf @@ -36,6 +36,6 @@ profiling { otel { enabled = false enabled = ${?CELLAR_OTEL_ENABLED} - endpoint = "https://178.104.189.163:4318/v1/traces" + endpoint = "http://178.104.189.163:4318/v1/traces" endpoint = ${?CELLAR_OTEL_ENDPOINT} }