No trace information on AKS #3209
Replies: 4 comments 1 reply
-
I had the same issue. It seems that you need to include .StartWithHost() as is shown in the asp.net example This is really not obvious and I'm not sure what the usecase is where I would not want it started with the host so that really seems like it should be the default. |
Beta Was this translation helpful? Give feedback.
-
Hello! I'm having this same issue, I can see Trace Logging on my app locally, but not when I deploy to aks. I tried @andhesky solution, but apparently, Does anyone know how to solve this issue? |
Beta Was this translation helpful? Give feedback.
-
Hi i have same issue i'm using 1.8.0 version traces are generated on localhost but when i depoy to aks no traces are generated bud logs and metrics are just fine.
|
Beta Was this translation helpful? Give feedback.
-
Hi all
|
Beta Was this translation helpful? Give feedback.
-
Hi ... I am completely lost as to what my issue can be so reaching out for help. I've added OpenTelemetry tracing to my .net core 6.0 application and in my local dev environment running in docker everything works as expected and traces are being exported. This is my tracing config:
`
public static IServiceCollection AddTracing(this IServiceCollection services, string appName, IConfiguration configuration)
{
`
So locally I can see my traces in Jaeger as well as in the console. But when I deploy this application to my AKS kubernetes cluster no traces seem to be exported. I've validated the connection between tempo & my service using netcat & tcpdump so connectivity should not be an issue. I've also exposed the jaeger port of tempo in my cluster and have sent traces from my local environment into tempo running in the cluster so tempo is accepting traces just fine. After I was certain network connectivity was not an issue I added the console exporter and to my surprise no traces are visible in the logs on AKS.
These are the OpenTelemetry packages I am using:
`
`
Beta Was this translation helpful? Give feedback.
All reactions