This message was deleted.
s
This message was deleted.
p
cc @Vishal Sharma @Srikanth Chekuri
a
@Sibaprasad Tripathy The problem lies in your main, there is no way for gorrila mux router to know if you have initialised open trace in gin
if you start using the 'r' variable you initialised in main using otel, only then you will see the otel magic happening
Copy code
r.GET("/ping", func(c *gin.Context) {
		c.JSON(200, gin.H{
			"message": "pong",
		})
	})
🙏 1
s
Thanks @Apoorva.
1