Martin Mani
Martin Mani
I ran the docker for jaeger with following command as given in the post docker run --name jaeger -p 13133:13133 -p 16686:16686 -p 4317:55680 -d --restart=unless-stopped jaegertracing/opentelemetry-all-in-one and configure the...
I changed to the following and found working :) docker run -d --name jaeger -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 -p 5775:5775/udp -p 6831:6831/udp -p 6832:6832/udp -p 5778:5778 -p 16686:16686 -p 14268:14268 -p 14250:14250...
may be you can configure your logger based on the log level? Or you can have a customMethod to take more control.
thank you but this is directly logging the http request details. Not enriching the logger or log context. I was looking for enrich the SeriLog Context so that if any...