From 984952b55a76047b93cdff2cc6080101dca6c003 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 5 Mar 2026 07:21:22 -0800 Subject: [PATCH] fix default OTEL endpoint to localhost for native-first mode --- cli/planoai/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/planoai/consts.py b/cli/planoai/consts.py index 53cdd51c..13bf2d16 100644 --- a/cli/planoai/consts.py +++ b/cli/planoai/consts.py @@ -6,7 +6,7 @@ PLANO_COLOR = "#969FF4" SERVICE_NAME_ARCHGW = "plano" PLANO_DOCKER_NAME = "plano" PLANO_DOCKER_IMAGE = os.getenv("PLANO_DOCKER_IMAGE", "katanemo/plano:0.4.9") -DEFAULT_OTEL_TRACING_GRPC_ENDPOINT = "http://host.docker.internal:4317" +DEFAULT_OTEL_TRACING_GRPC_ENDPOINT = "http://localhost:4317" # Native mode constants PLANO_HOME = os.path.join(os.path.expanduser("~"), ".plano")