You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using a simple app to test and get a feel of OpenTelemetry - and I was running into an issue with the HTTP Receiver. I wanted to use an HTTP Receiver to confirm whether my Sidecar deployment is correct - but I see this error
2023/09/17 04:51:18 traces export: Post "https://0.0.0.0:4318/v1/traces": http: server gave HTTP response to HTTPS client
I have a Go application and using this - (tried both WithInsecure() and without it
When the insecure() is not there - I get above error log
2023/09/17 04:51:18 traces export: Post "https://0.0.0.0:4318/v1/traces": http: server gave HTTP response to HTTPS client
When I add it - there are no logs at all.
If I just have a collector setup and an app in a sidecar , is there a way to confirm whether my image is sending traces to the colleector?
I do not see any logs in the otel-collector or my go app container for successful data being sent to the collector.
I tried adding insecure , insecureSkip , etc. to my collector yaml - but have not found the correct setting yet.
Would appreciate any pointers or recommendations - I am basically trying to setup something minimal where I can have collectors running as sidecars with my app deployments - send that data to a tempo backend , and visualize the traces - and approaching it piece by piece. Thank you!
This is my otel-collector-config.yaml. (have not configured the backend yet for tempo)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hey all!
I was using a simple app to test and get a feel of OpenTelemetry - and I was running into an issue with the HTTP Receiver. I wanted to use an HTTP Receiver to confirm whether my Sidecar deployment is correct - but I see this error
2023/09/17 04:51:18 traces export: Post "https://0.0.0.0:4318/v1/traces": http: server gave HTTP response to HTTPS client
I have a Go application and using this - (tried both WithInsecure() and without it
When the insecure() is not there - I get above error log
2023/09/17 04:51:18 traces export: Post "https://0.0.0.0:4318/v1/traces": http: server gave HTTP response to HTTPS client
When I add it - there are no logs at all.
If I just have a collector setup and an app in a sidecar , is there a way to confirm whether my image is sending traces to the colleector?
I do not see any logs in the otel-collector or my go app container for successful data being sent to the collector.
I tried adding insecure , insecureSkip , etc. to my collector yaml - but have not found the correct setting yet.
Would appreciate any pointers or recommendations - I am basically trying to setup something minimal where I can have collectors running as sidecars with my app deployments - send that data to a tempo backend , and visualize the traces - and approaching it piece by piece. Thank you!
This is my
otel-collector-config.yaml
. (have not configured the backend yet for tempo)This is my deployment with the sidecar
go-otel-dep.yaml
Beta Was this translation helpful? Give feedback.
All reactions