Update jaeger Endpoint
All checks were successful
Build And Test / build-and-push (push) Successful in 2m9s
All checks were successful
Build And Test / build-and-push (push) Successful in 2m9s
This commit is contained in:
@ -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
|
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 )
|
## 2025-09-28 RS256변경 적용 ( v0.0.13 )
|
||||||
* Docker Build base image 변경.
|
* Docker Build base image 변경.
|
||||||
* python:3.10-slim-buster > python:3.10-slim-bullseye
|
* python:3.10-slim-buster > python:3.10-slim-bullseye
|
||||||
|
|||||||
@ -33,7 +33,8 @@ if not settings.DEBUG:
|
|||||||
)
|
)
|
||||||
|
|
||||||
otlp_exporter = OTLPSpanExporter(
|
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,
|
insecure=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user