From ec39ba59be3b847b2279902d6518dcb7b0c7b201 Mon Sep 17 00:00:00 2001 From: icurfer Date: Mon, 29 Sep 2025 23:23:28 +0900 Subject: [PATCH] Update jaeger Endpoint --- README.md | 4 ++++ auth_prj/wsgi.py | 3 ++- version | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93192b9..ecc2eb4 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ python3 manage.py runserver 0.0.0.0:8000 gunicorn auth_prj.wsgi:application --bind 0.0.0.0:8000 --workers 3 ``` +## 2025-09-29 jaeger Endpoint 변경 ( v0.0.14 ) +* 변경전: endpoint="http://jaeger-collector.istio-system:4317", +* 변경후: endpoint="http://jaeger-collector.observability.svc.cluster.local:4317", + ## 2025-09-28 RS256변경 적용 ( v0.0.13 ) * Docker Build base image 변경. * python:3.10-slim-buster > python:3.10-slim-bullseye diff --git a/auth_prj/wsgi.py b/auth_prj/wsgi.py index 3bebdf9..d81d89a 100644 --- a/auth_prj/wsgi.py +++ b/auth_prj/wsgi.py @@ -33,7 +33,8 @@ if not settings.DEBUG: ) otlp_exporter = OTLPSpanExporter( - endpoint="http://jaeger-collector.istio-system:4317", + # endpoint="http://jaeger-collector.istio-system:4317", + endpoint="http://jaeger-collector.observability.svc.cluster.local:4317", insecure=True, ) diff --git a/version b/version index 42ed266..6778882 100644 --- a/version +++ b/version @@ -1 +1 @@ -v0.0.13_r1 \ No newline at end of file +v0.0.14 \ No newline at end of file