Golang Application Tracing in Instana

The approach for the cloud age

Zhimin Wen
6 min readOct 17, 2021
Image by Andrew Martin from Pixabay

The traditional monitoring solution that preciously treats each component individually is no longer being able to cope with the cloud-native world anymore, simply because the number of moving parts is too many in nowadays infrastructure and applications. Auto-discovery, auto-monitoring is kind of a must for cloud age monitoring.

Instana is such a tool that “Free your Dev+Ops teams from the burden of manual observability and application monitoring” by automating the discovery and monitoring for the infrastructure, services, and application.

For the infrastructure, such as the OS and Kubernetes platform, it’s intuitive to understand that once an agent is deployed on these standardized platforms, the auto-discovery and auto-monitoring can be performed. The same applies to those middlewares also.

But how about the applications? The answer will be something like the protocol, as long as the application conforms to some protocols that both sides mutually agree on, then the Instana is able to auto-discover and auto-monitor the application. Notice this is possible nowadays as the line between Dev/Ops is blurred.

Using the Golang application as an example, this paper examines these protocols for Instana to monitor a Golang HTTP handler…

--

--