Update jaeger Endpoint
All checks were successful
Build And Test / build-and-push (push) Successful in 2m9s

This commit is contained in:
2025-09-29 23:23:28 +09:00
parent cf8466aaf6
commit ec39ba59be
3 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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,
)

View File

@ -1 +1 @@
v0.0.13_r1
v0.0.14